typhoeus 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/typhoeus.rb +3 -3
- data/lib/typhoeus/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 905784a1cba9775195bba5751eac56a93e29c313
|
|
4
|
+
data.tar.gz: 7802bff9112dfe764bee3ef0a5620988e1f5c23e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a135cd5834f863538735ee0c971b26fb83141a9da7e74be98678c331b1cfba97c2cb22ec163b1eb85b95fae18055288c4e0c21e34d45780b264922db2f5415dd
|
|
7
|
+
data.tar.gz: 1218163c756609a25e0635d6e390d38c474035fcb7a1077ef748248d218fbb97b3373234d5006a018bb9a45fd458b40202029db9790ed887952e2ecef3072f77
|
data/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## Master
|
|
4
4
|
|
|
5
|
-
[Full Changelog](http://github.com/typhoeus/typhoeus/compare/v1.1.
|
|
5
|
+
[Full Changelog](http://github.com/typhoeus/typhoeus/compare/v1.1.2...master)
|
|
6
|
+
|
|
7
|
+
## 1.1.2
|
|
8
|
+
|
|
9
|
+
[Full Changelog](http://github.com/typhoeus/typhoeus/compare/v1.1.1...v1.1.2)
|
|
6
10
|
|
|
7
11
|
## 1.1.1
|
|
8
12
|
|
data/lib/typhoeus.rb
CHANGED
|
@@ -19,17 +19,17 @@ end
|
|
|
19
19
|
|
|
20
20
|
# If the Redis gem is available, load the redis cache adapter
|
|
21
21
|
if defined?(Redis)
|
|
22
|
-
require "typhoeus/
|
|
22
|
+
require "typhoeus/cache/redis"
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
# If the Dalli gem is available, load the Dalli cache adapter
|
|
26
26
|
if defined?(Dalli)
|
|
27
|
-
require "typhoeus/
|
|
27
|
+
require "typhoeus/cache/dalli"
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
# If we are using Rails, load the Rails cache adapter
|
|
31
31
|
if defined?(Rails)
|
|
32
|
-
require "typhoeus/
|
|
32
|
+
require "typhoeus/cache/rails"
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
# If we are using Rails, then we will include the Typhoeus railtie.
|
data/lib/typhoeus/version.rb
CHANGED