【发布时间】:2013-01-09 17:25:09
【问题描述】:
我正在使用this 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
【问题讨论】:
标签: sinatra yaml configuration-files