Skip to content

Instantly share code, notes, and snippets.

@samuelkadolph
samuelkadolph / form_helper.rb
Created December 1, 2010 21:33
Simple example showing how to safely add a method to ActionView::Helpers::FormBuilder
module FormHelper
class CustomFormBuilder < ActionView::Helpers::FormBuilder
def autocomplete_field(method, url, options = {})
text_field(method, options.reverse_merge(:'data-autocomplete' => url)
end
end
%w(form_for fields_for).each do |method|
class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
def omega_#{method}(record_or_name_or_array, *args, &proc)