Add an initializer to allow custom Resque configs
This commit is contained in:
parent
4ecf23d2ad
commit
bfed07ee20
8
config/initializers/resque.rb
Normal file
8
config/initializers/resque.rb
Normal 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
|
Loading…
Reference in a new issue