Flowdock
method

method_missing

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: ActionView::Helpers::JavaScriptProxy
method_missing(method, *arguments, &block) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_view/helpers/prototype_helper.rb, line 661
        def method_missing(method, *arguments, &block)
          if method.to_s =~ /(.*)=$/
            assign($1, arguments.first)
          else
            call("#{method.to_s.camelize(:lower)}", *arguments, &block)
          end
        end
Register or log in to add new notes.