setting cucumber-rails require to false in Gemfile
this stops the warning about cucumber being double required from showing upbug/bundler_fix
parent
5477d5452e
commit
93cd53a800
2
Gemfile
2
Gemfile
|
@ -51,7 +51,7 @@ group :test do
|
||||||
# cucumber extension for testing command line applications, like msfconsole
|
# cucumber extension for testing command line applications, like msfconsole
|
||||||
gem 'aruba'
|
gem 'aruba'
|
||||||
# cucumber + automatic database cleaning with database_cleaner
|
# cucumber + automatic database cleaning with database_cleaner
|
||||||
gem 'cucumber-rails'
|
gem 'cucumber-rails', :require => false
|
||||||
gem 'shoulda-matchers'
|
gem 'shoulda-matchers'
|
||||||
# code coverage for tests
|
# code coverage for tests
|
||||||
# any version newer than 0.5.4 gives an Encoding error when trying to read the source files.
|
# any version newer than 0.5.4 gives an Encoding error when trying to read the source files.
|
||||||
|
|
Loading…
Reference in New Issue