ROR 3:使用环境和 gems/bundler 组
请有人解释一下如何在 gemfile 中使用不同的 gem 组。
我有这样的情况: 在我的生产环境中,我需要一些 gem:
group :production do
gem 'pg'
end
并且我不需要将此 gem 安装在我的开发计算机上。 但是当我在命令行中运行命令“rails g..”时,它会尝试检查 gemfile 并显示
无法找到 gem 'pg...
这种情况应该如何处理?
Please could some one explain me how to work with different groups of gems in gemfile.
I've got the situaltion:
In my production enviroment i need some gems:
group :production do
gem 'pg'
end
and I DON'T NEED this gems to be installed on my dev machine.
But when I run in command line come commandes "rails g.." it tries to check gemfile and says
Could not find gem 'pg...
How this situation should be handled?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 http://devcenter.heroku.com/articles/rails31_heroku_cedar
From http://devcenter.heroku.com/articles/rails31_heroku_cedar
好吧,运行“bundle install --without production”后似乎已修复!
Well, it seems to be fixed after run "bundle install --without production"!!!