Module: ActionView::Helpers::ActiveModelInstanceTag

Included in:
Tags::Base
Defined in:
lib/action_view/helpers/active_model_helper.rb

Instance Method Summary collapse

Instance Method Details

#content_tagObject



18
19
20
# File 'lib/action_view/helpers/active_model_helper.rb', line 18

def (*)
  error_wrapping(super)
end

#error_messageObject



34
35
36
# File 'lib/action_view/helpers/active_model_helper.rb', line 34

def error_message
  object.errors[@method_name]
end

#error_wrapping(html_tag) ⇒ Object



26
27
28
29
30
31
32
# File '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

#objectObject



11
12
13
14
15
16
# File '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) ⇒ Object



22
23
24
# File 'lib/action_view/helpers/active_model_helper.rb', line 22

def tag(type, options, *)
  tag_generate_errors?(options) ? error_wrapping(super) : super
end