Commit 6e7e01c779352606d9fb8b65b17bae8d097ba903
Exists in
master
and in
4 other branches
Merge pull request #78 from ariejan/fix_gemfile_shoulda
Moved shoulda to the :test group in Gemfile.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
Gemfile
... | ... | @@ -37,7 +37,6 @@ end |
37 | 37 | |
38 | 38 | group :development, :test do |
39 | 39 | gem 'rspec-rails' |
40 | - gem "shoulda", "~> 3.0.0.beta2" | |
41 | 40 | gem 'capybara' |
42 | 41 | gem 'autotest' |
43 | 42 | gem 'autotest-rails' |
... | ... | @@ -51,4 +50,5 @@ end |
51 | 50 | group :test do |
52 | 51 | gem 'turn', :require => false |
53 | 52 | gem 'simplecov', :require => false |
53 | + gem "shoulda", "~> 3.0.0.beta2" | |
54 | 54 | end | ... | ... |