Methods
Instance Public methods
content_tag(type, options, *)
Source:
# File actionview/lib/action_view/helpers/active_model_helper.rb, line 20
def content_tag(type, options, *)
select_markup_helper?(type) ? super : error_wrapping(super)
end
error_message()
Source:
# File actionview/lib/action_view/helpers/active_model_helper.rb, line 36
def error_message
object.errors[@method_name]
end
error_wrapping(html_tag)
Source:
# File actionview/lib/action_view/helpers/active_model_helper.rb, line 28
def error_wrapping(html_tag)
if object_has_errors?
Base.field_error_proc.call(html_tag, self)
else
html_tag
end
end