Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm in the process of trying to initialize different gems for different environments. I'm using initializer config files (for things like paperclip) and environment config files (for my dev, test, qa, prod environments).

For some context, I'm trying to get my prod and qa servers to use s3 storage for paperclip, but use local storage w/different directories for dev and test.I have no idea in what order these config files are loaded.

I was wondering if someone could shed some light on the load order so that I can make sure my I've got any dependencies or overrides correct. Also, I just like to know how these things work.

I'm particularly interested in the directories/files listed below

config/
    environments/
        develop.rb
        test.rb
        ...env-specific config files


    initializers/
        paperclip.rb
        ...gem-specific config files

    application.rb
    boot.rb
    deploy.rb
    environment.rb
    routes.rb

Thanks!

share|improve this question

1 Answer

up vote 7 down vote accepted

I stumbled across this blog post that has an awesome explanation of how this all works - click here

In short:

  1. config/preinitializer.rb
  2. config/environment.rb
  3. config/environments/#{RAILS_ENV}.rb
  4. plugin initialization
  5. gem initialization
  6. config/initializer/*.rb
  7. all after_initialize blocks, in the order they were defined in (so same order as above)
  8. any junk left below the Rails::Initializer.run call/block in environment.rb

You can also check this article out for some more information. click here

UPDATE: While these appear to be accurate for my purposes, the articles are dated 9/2009 and 11/2008 respectively. Thus, I'm not certain that they are 100% accurate for Rails3.

UPDATE: For some reason, none of my previous searches turned up this RailsGuides page on the Initialization Process which I found on accident while searching for something else. ::face-palm::

share|improve this answer
is this for rails 2? i don't think rails 3 has preinitializer.rb – Dty Feb 16 at 12:07
1  
also, you should add in the before_initialize callbacks which get run after the environment files, and before the initializers.. – Peter P. Mar 28 at 23:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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