Method: Fall::Record#method_missing

Defined in:
lib/fall/record.rb

#method_missing(method_name, *args, &block) ⇒ Object (private)



74
75
76
77
78
79
80
# File 'lib/fall/record.rb', line 74

def method_missing(method_name, *args, &block)
  if @value.respond_to?(method_name)
    @value.public_send(method_name, *args, &block)
  else
    super
  end
end