up vote 3 down vote favorite
share [g+] share [fb]

I have a plugin that must be loaded before resource_controller. The reason is that Resourcecontroller tries to load ApplicationController and it depends on the said plugin (and will fail to load if plugin's init.rb was not loaded yet).

The problem is that ResourceController comes from a gem and not a plugin.

Is there a way to load plugins before the gems (from environment.rb's "config.gem ...")?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

There's no present way to load plugins before gems if you depend exclusively on config.gem to load them, but that doesn't mean that you can't take the loading of the resource_controller gem into your own hands.

As a very brutal solution, you can remove the relevant config.gem line, and then explicitly 'require' it at the bottom of environment.rb.

link|improve this answer
feedback

For rails2.3x in environment.rb set your gem to lib => false and then require the gem in the after_initialize block

config.gem 'some_gem', :lib => false
config.after_initialize do
  require 'some_gem'
end

That'll do it.

link|improve this answer
feedback

a quick glance at the Initializer.rb code shows:

  load_gems
  load_plugins

  # pick up any gems that plugins depend on
  add_gem_load_paths
  load_gems
  check_gem_dependencies

If I understand it correctly, gems always comes before plugins... then some gems that the plugins require.

why not use resource_controller as a plugin, also? just don't use the "config.gem ..." and put it in the plugins directory.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.