Flowdock
method

value

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: Base
value(object) private

No documentation

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

Hide source
# File actionview/lib/action_view/helpers/tags/base.rb, line 36
          def value(object)
            if @allow_method_names_outside_object
              object.public_send @method_name if object && object.respond_to?(@method_name)
            else
              object.public_send @method_name if object
            end
          end
Register or log in to add new notes.