method
value
rails latest stable - Class:
ActionView::Helpers::Tags::Base
value()private
No documentation available.
# File actionview/lib/action_view/helpers/tags/base.rb, line 36
def value
return unless object
if @allow_method_names_outside_object
object.public_send @method_name if object.respond_to?(@method_name)
else
object.public_send @method_name
end
end