These modules don't need to be autoloaded

This commit is contained in:
Rafael Mendonça França 2013-01-02 14:02:41 -03:00
parent 2967fbbf85
commit beeac4daf9
3 changed files with 3 additions and 2 deletions

View File

@ -15,9 +15,7 @@ module SimpleForm
autoload :Components
autoload :ErrorNotification
autoload :FormBuilder
autoload :I18nCache
autoload :Inputs
autoload :MapType
end
def self.eager_load!

View File

@ -1,4 +1,5 @@
require 'active_support/core_ext/object/deep_dup'
require 'simple_form/map_type'
module SimpleForm
class FormBuilder < ActionView::Helpers::FormBuilder

View File

@ -1,3 +1,5 @@
require 'simple_form/i18n_cache'
module SimpleForm
module Inputs
class Base