Method: Rubis::Namespace#method_missing
- Defined in:
- lib/rubis/namespace.rb
#method_missing(method, *args, &block) ⇒ Object (private)
17 18 19 20 |
# File 'lib/rubis/namespace.rb', line 17 def method_missing(method, *args, &block) key = "#{redis_namespace}:#{args.shift}" redis.send(method, key, *args, &block) end |