v0.9.7
- Allow helpers and custom fields to be lazily declared using procs (or String constant names)
Trestle.configure do |config|
config.helper -> { CustomHelper }
config.form_field :custom, -> { CustomFormField }
end
Trestle.configure do |config|
config.helper -> { CustomHelper }
config.form_field :custom, -> { CustomFormField }
end