Struct.new(:object, :method, :args)
# File lib/delayed/performable_method.rb, line 6 def initialize(object, method, args) raise NoMethodError, "undefined method `#{method}' for #{self.inspect}" unless object.respond_to?(method) self.object = dump(object) self.args = args.map { |a| dump(a) } self.method = method.to_sym end
Generated with the Darkfish Rdoc Generator 2.