redis_failover 0.8.1 → 0.8.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.
data/Changes.md CHANGED
@@ -1,3 +1,7 @@
1
+ 0.8.2
2
+ -----------
3
+ - Fix method signature for RedisFailover::Client#respond_to_missing? (#12)
4
+
1
5
  0.8.1
2
6
  -----------
3
7
  - Added YARD documentation.
@@ -123,9 +123,11 @@ module RedisFailover
123
123
 
124
124
  # Determines whether or not an unknown method can be handled.
125
125
  #
126
+ # @param [Symbol] method the method to check
127
+ # @param [Boolean] include_private determines if private methods should be checked
126
128
  # @return [Boolean] indicates if the method can be handled
127
- def respond_to_missing?(method)
128
- redis_operation?(method)
129
+ def respond_to_missing?(method, include_private)
130
+ redis_operation?(method) || super
129
131
  end
130
132
 
131
133
  # @return [String] a string representation of the client
@@ -1,3 +1,3 @@
1
1
  module RedisFailover
2
- VERSION = "0.8.1"
2
+ VERSION = "0.8.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis_failover
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-07 00:00:00.000000000 Z
12
+ date: 2012-05-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: redis
@@ -177,7 +177,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
177
177
  version: '0'
178
178
  segments:
179
179
  - 0
180
- hash: -3105018591679682945
180
+ hash: -197947266055602859
181
181
  required_rubygems_version: !ruby/object:Gem::Requirement
182
182
  none: false
183
183
  requirements:
@@ -186,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
186
186
  version: '0'
187
187
  segments:
188
188
  - 0
189
- hash: -3105018591679682945
189
+ hash: -197947266055602859
190
190
  requirements: []
191
191
  rubyforge_project:
192
192
  rubygems_version: 1.8.23