instance method
method_missing
Ruby on Rails 3.1.12
Since v3.0.20 Last seen in v3.2.22.5 PrivateSignature
method_missing(meth, *args, &block)
TODO: Remove once this is fully in place
Parameters
-
methreq -
argsrest -
blockblock
Source
# File railties/lib/rails/generators/rails/app/app_generator.rb, line 23
def method_missing(meth, *args, &block)
@generator.send(meth, *args, &block)
end
Defined in railties/lib/rails/generators/rails/app/app_generator.rb line 23
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::ActionMethods