class ActiveAdmin::Application

def load!

To reload everything simply call `ActiveAdmin.unload!`
Loads all ruby files that are within the load_paths setting.
def load!
  unless loaded?
    ActiveAdmin::Event.dispatch BeforeLoadEvent, self # before_load hook
    files.each{ |file| load file }                    # load files
    namespace(default_namespace)                      # init AA resources
    ActiveAdmin::Event.dispatch AfterLoadEvent, self  # after_load hook
    @@loaded = true
  end
end