如果将这段代码写在 Gemfile 中,我们的意思是什么
例如,如果我在“Gemfile”中编写以下代码:
group :development do
gem 'xyz'
end
group:test do
gem 'xyz'
end
这意味着什么?
谢谢。
If I write the following code for example in 'Gemfile':
group :development do
gem 'xyz'
end
group:test do
gem 'xyz'
end
What does that mean?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以指定应在哪个环境中安装哪些 gem。例如,您可能想使用 SQLite 进行开发和测试,但使用 MySQL 进行生产。所以你会写:
运行
bundle install --withoutdevelopment:test
将安装 devise 和 mysql2 gems。You can specify which gems should be installed in which environment. For example, you might wanna use SQLite for development and testing, but MySQL on production. So you would write:
Running
bundle install --without development:test
will install devise and mysql2 gems.仅在开发和测试环境中安装
xyz
gem。也可以写成:
Only install the
xyz
gem in the development and test environments.It can also be written as:
这意味着块中的所有宝石将仅在该环境中加载(测试或开发)
It means that all those gems in blocks will be loaded only in this environmets (test or development)