ActionView::Helpers::ActiveModelInstanceTag Ruby on Rails 5.1.2 Module ActionView::Helpers::ActiveModelInstanceTag actionview/lib/action_view/helpers/active_model_helper.rb Methods C content_tag E error_message, error_wrapping O object T tag Instance Public methods content_tag(*) Link Source: show | on GitHub # File actionview/lib/action_view/helpers/active_model_helper.rb, line 18 def content_tag(*) error_wrapping(super) end error_message() Link Source: show | on GitHub # File actionview/lib/action_view/helpers/active_model_helper.rb, line 34 def error_message object.errors[@method_name] end error_wrapping(html_tag) Link Source: show | on GitHub # File actionview/lib/action_view/helpers/active_model_helper.rb, line 26 def error_wrapping(html_tag) if object_has_errors? Base.field_error_proc.call(html_tag, self) else html_tag end end object() Link Source: show | on GitHub # File actionview/lib/action_view/helpers/active_model_helper.rb, line 11 def object @active_model_object ||= begin object = super object.respond_to?(:to_model) ? object.to_model : object end end tag(type, options, *) Link Source: show | on GitHub # File actionview/lib/action_view/helpers/active_model_helper.rb, line 22 def tag(type, options, *) tag_generate_errors?(options) ? error_wrapping(super) : super end