我正在使用这个gem,它适用于生产环境和开发,但不是暂存:
这是main.rb
set :environments, %w{development test production staging}
config_file 'config/config.yml'
和 config/config.yml
development: &development
sub1:
pay_to_email: test1@gmail.com
test:
<<: *development
staging:
<<: *development
production:
<<: *development