Method: RedisConnection#method_missing
- Defined in:
- lib/redis_connection.rb
#method_missing(m, *args, &block) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/redis_connection.rb', line 14 def method_missing(m, *args, &block) if @current_connection.respond_to?(m) @current_connection.send(m, *args) else super end end |