redis-namespace 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. data/lib/redis/namespace.rb +2 -2
  2. metadata +3 -3
@@ -178,9 +178,9 @@ class Redis
178
178
  handling = COMMANDS[command.to_s] ||
179
179
  COMMANDS[ALIASES[command.to_s]]
180
180
 
181
+ # redis-namespace does not know how to handle this command.
182
+ # Passing it to @redis as is.
181
183
  if handling.nil?
182
- warn("redis-namespace does not know how to handle '#{command}' command.
183
- Passing it to redis as is.")
184
184
  return @redis.send(command, *args, &block)
185
185
  end
186
186
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis-namespace
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 1
10
- version: 1.0.1
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Chris Wanstrath