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.
171 172 173 174 175 176 177 |
# File 'lib/active_record/migration/command_recorder.rb', line 171 def method_missing(method, *args, &block) if @delegate.respond_to?(method) @delegate.send(method, *args, &block) else super end end |