class Arbre::Rails::Forms::FieldsForProxy

Public Instance Methods

build(form_builder, *args, &block) click to toggle source
Calls superclass method
# File lib/arbre/rails/forms.rb, line 77
def build(form_builder, *args, &block)
  form_builder.fields_for(*args) do |f|
    @form_builder = f
  end

  super(&block)
end
to_s() click to toggle source
# File lib/arbre/rails/forms.rb, line 85
def to_s
  children.to_s
end