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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c35cbb02b3e9bdcd193c09c248738a23acc50878
4
- data.tar.gz: 19be15bdcbf9dc8204353f852aa49c7f4d9748eb
3
+ metadata.gz: 905784a1cba9775195bba5751eac56a93e29c313
4
+ data.tar.gz: 7802bff9112dfe764bee3ef0a5620988e1f5c23e
5
5
  SHA512:
6
- metadata.gz: d0e87a6220258b47dca9057d3be3c127a1d9b3aca5e5cb15de66e87e5838d8d72c9d442be79159fb1e607a83087c575aebc3f9c10ef1cfb81f0215dc20bff0f3
7
- data.tar.gz: 7e79adf1409d6276be2ba4d8424e8c21181e8d8cd5c92998b2b4df41477827f3f8938ad9d133e3a53e65459ffbfebf3f0eefa664e052b82661167ab8bc6fcbd6
6
+ metadata.gz: a135cd5834f863538735ee0c971b26fb83141a9da7e74be98678c331b1cfba97c2cb22ec163b1eb85b95fae18055288c4e0c21e34d45780b264922db2f5415dd
7
+ data.tar.gz: 1218163c756609a25e0635d6e390d38c474035fcb7a1077ef748248d218fbb97b3373234d5006a018bb9a45fd458b40202029db9790ed887952e2ecef3072f77
@@ -2,7 +2,11 @@
2
2
 
3
3
  ## Master
4
4
 
5
- [Full Changelog](http://github.com/typhoeus/typhoeus/compare/v1.1.1...master)
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
 
@@ -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/redis_cache"
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/dalli_cache"
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/rails_cache"
32
+ require "typhoeus/cache/rails"
33
33
  end
34
34
 
35
35
  # If we are using Rails, then we will include the Typhoeus railtie.
@@ -1,5 +1,5 @@
1
1
  module Typhoeus
2
2
 
3
3
  # The current Typhoeus version.
4
- VERSION = '1.1.1'
4
+ VERSION = '1.1.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typhoeus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Balatero