Sha256: 8d1f831bd8ada662084acc27f99a0f3542388a4d36350ef3640944c99c1b846c
Contents?: true
Size: 1.36 KB
Versions: 6
Compression:
Stored size: 1.36 KB
Contents
require "action_view/helpers" module Trestle class Form class Builder < ActionView::Helpers::FormBuilder # The #display method is defined on Kernel. Undefine it so that the # Builder instance will not respond_to?(:display) allowing the method to # be dispatched to the template helpers instead. undef_method :display cattr_accessor :fields self.fields = Lazy::Hash.new def errors(name) if object.respond_to?(:errors) && object.errors.respond_to?(:[]) object.errors[name].to_a else [] end end def self.register(name, field) rename_existing_helper_method(name) self.fields[name] = field end protected def respond_to_missing?(name, include_all=false) self.class.fields.key?(name) || super end def method_missing(name, *args, &block) if field = self.class.fields[name] field.new(self, @template, *args, &block).render else super end end def self.rename_existing_helper_method(name) # Check if a method exists with the given name return unless method_defined?(name) # Prevent a method from being aliased twice return if method_defined?(:"raw_#{name}") alias_method :"raw_#{name}", name undef_method name end end end end
Version data entries
6 entries across 6 versions & 1 rubygems