Module: Neuron::ShowFor::Helper

Defined in:
lib/neuron/show_for/helper.rb

Instance Method Summary collapse

Instance Method Details

#show_for(object, html_options = {}, &block) ⇒ Object

Creates a div around the object and yields a builder.

Examples:

show_for @user do |f|
  f.attribute :name
  f.attribute :email
end


14
15
16
17
18
19
20
21
22
23
24
# File 'lib/neuron/show_for/helper.rb', line 14

def show_for(object, html_options={}, &block)
  tag = html_options.delete(:show_for_tag) || ::ShowFor.show_for_tag

  html_options[:id]  ||= dom_id(object, :show_for)
  html_options[:class] = "show_for #{dom_class(object)} #{html_options[:class]}".strip

  builder = html_options.delete(:builder) || ::ShowFor::Builder
  content = capture(builder.new(object, self), &block)

  (tag, content, html_options)
end