class Resque::Reports::Extensions::Dummy

Class for dummy object that respond to any method and returns ‘nil’ on any method call

Public Instance Methods

method_missing(method, *arguments, &block) click to toggle source
# File lib/resque/reports/extensions.rb, line 19
def method_missing(method, *arguments, &block)
  nil
end
respond_to?(method, include_private = false) click to toggle source
# File lib/resque/reports/extensions.rb, line 23
def respond_to?(method, include_private = false)
  true
end