class SimpleFeed::Providers::Redis::Driver::MockRedis
Public Instance Methods
method_missing(name, *args, **_opts, &block)
click to toggle source
# File lib/simplefeed/providers/redis/driver.rb, line 129 def method_missing(name, *args, **_opts, &block) puts "calling redis.#{name}(#{args.to_s.gsub(/[\[\]]/, '')}) { #{block ? block.call : nil} }" end