Flowdock
method

ensure_all_registered_plugins_are_loaded!

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: Rails::Plugin::Loader
ensure_all_registered_plugins_are_loaded!() protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/plugin/loader.rb, line 141
        def ensure_all_registered_plugins_are_loaded!
          if explicit_plugin_loading_order?
            if configuration.plugins.detect {|plugin| plugin != :all && !loaded?(plugin) }
              missing_plugins = configuration.plugins - (plugins + [:all])
              raise LoadError, "Could not locate the following plugins: #{missing_plugins.to_sentence}"
            end
          end
        end
Register or log in to add new notes.