Groups in a Gemfile in Rails 3?

ⅰ亾dé卋堺 提交于 2019-12-09 07:34:21

问题


In my Gemfile in Rails I have these groups:

group :development, :test do
  gem "capybara"
  gem "database_cleaner"
  gem "spork"
  gem "launchy"
end

group :bdd do
  gem "cucumber-rails"
  gem "rspec-rails"
end

What does this mean?


回答1:


From http://yehudakatz.com/2010/05/09/the-how-and-why-of-bundler-groups/:

Specifying groups allows you to do two things. First, you can install the gems in your Gemfile, minus specific groups. For instance, Rails puts mysql and pg in a database group so that if you’re just working on ActionPack, you can bundle install --without db and run the ActionPack tests without having to worry about getting the gems installed.

Second, you can list specific groups to autorequire using Bundler.require. By default, Bundler.require requires all the gems in the default group (which is all the gems that have no explicit group). You can also say Bundler.require(:default, :another_group) to require specific groups.




回答2:


Grouping your dependencies allows you to perform operations on the entire group. See: http://gembundler.com/v1.3/groups.html




回答3:


Answer updated to Bundler 1.3 -> http://gembundler.com/v1.3/groups.html



来源:https://stackoverflow.com/questions/3645968/groups-in-a-gemfile-in-rails-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!