I generally understand the Gemfile options for bundler, but I'm not sure why rspec (in particular rspec-rails) should be in both the test and the development.
Here are my test groups:
group :development, :test do gem 'rspec-rails' gem 'faker' end group :test do gem "factory_girl_rails" gem "capybara" gem 'guard-rspec' gem 'rb-fsevent' gem 'growl' end
Does this look normal?
ruby-on-rails rspec
Nathan May 2 '12 at 12:14 2012-05-02 12:14
source share