Add an initializer to allow custom Resque configs

This commit is contained in:
Robert Speicher 2012-09-18 21:45:09 -04:00
parent 4ecf23d2ad
commit bfed07ee20

View file

@ -0,0 +1,8 @@
rails_root = ENV['RAILS_ROOT'] || File.dirname(__FILE__) + '/../..'
rails_env = ENV['RAILS_ENV'] || 'development'
config_file = File.join(rails_root, 'config', 'resque.yml')
if File.exists?(config_file)
resque_config = YAML.load_file(config_file)
Resque.redis = resque_config[rails_env]
end