我在 Heroku 上设置了用于生产和登台的遥控器。
在暂存时,我已将应用程序的环境设置为包括:
RACK_ENV=staging
RAILS_ENV=staging
我希望能够以我当前使用的相同方式staging
在 my 中指定一个组,或者:Gemfile
production
test
assets
group :staging do
gem "example", "~> 0.9"
end
我了解如何添加自定义组。从我的application.rb
:
groups = {
assets: %w(development test)
}
Bundler.require(:security, :model, :view, *Rails.groups(groups))
但是如何添加仅在暂存中加载的组?
我试过没有成功:
groups = {
assets: %w(development test),
staging: %(staging)
}
Bundler.require(:security, :model, :view, *Rails.groups(groups))