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!
