# File lib/action_view/helpers/active_model_helper.rb, line 55 def error_message object.errors[@method_name] end
# File lib/action_view/helpers/active_model_helper.rb, line 47 def error_wrapping(html_tag) if object_has_errors? Base.field_error_proc.call(html_tag, self) else html_tag end end
# File lib/action_view/helpers/active_model_helper.rb, line 32 def object @active_model_object ||= begin object = super object.respond_to?(:to_model) ? object.to_model : object end end
# File lib/action_view/helpers/active_model_helper.rb, line 43 def tag(type, options, *) tag_generate_errors?(options) ? error_wrapping(super) : super end