Method: ActiveRecord::Migration::CommandRecorder#method_missing

Defined in:
lib/active_record/migration/command_recorder.rb

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

Forwards any missing method call to the \target.



231
232
233
234
235
236
237
# File 'lib/active_record/migration/command_recorder.rb', line 231

def method_missing(method, *args, &block)
  if delegate.respond_to?(method)
    delegate.public_send(method, *args, &block)
  else
    super
  end
end