Skip to content

Instantly share code, notes, and snippets.

@apeiros
Created June 16, 2010 12:28
Show Gist options
  • Save apeiros/440598 to your computer and use it in GitHub Desktop.
Save apeiros/440598 to your computer and use it in GitHub Desktop.
# form_for @model, :builder => FormBuilderExtension do |f| ...
module FormBuilderExtension
def new(*a)
builder = ActionView::Base.default_form_builder.new(*a)
builder.extend(self)
builder
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment