级联/继承/共享Rails配置环境

时间:2013-08-12 18:21:47

标签: ruby-on-rails configuration

我的暂存和生产环境Rails配置是99%相同,只有一些设置不同(例如日志级别),我真的想消除两个环境文件之间的重复。

例如,我有这样的事情:

# config/environments/staging.rb
MyApp::Application.configure do
  config.cache_classes = true
  config.static_cache_control = "public, max-age=31536000"
  config.log_level = :debug
  # ...
end

# config/environments/production.rb
MyApp::Application.configure do
  config.cache_classes = true
  config.static_cache_control = "public, max-age=31536000"
  config.log_level = :info
  # ...
end

有关创建不会影响我的开发环境的共享配置的最佳方法的任何建议吗?

1 个答案:

答案 0 :(得分:34)

在我的项目中,我有3个类似生产的环境,所以我在config/environments下有一个名为shared_production.rb的文件,我在其中放置了常用配置

MyApp::Application.configure do
  config.cache_classes = true
  config.consider_all_requests_local = false
  #more shared configs
end

然后在每个环境特定的配置文件(production.rb,staging.rb,testing.rb)中我

require File.expand_path('../shared_production', __FILE__)
MyApp::Application.configure do
  config.log_level = :debug
  #more environment specific configs
end