We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 698e75d + 176d99a commit a702d01Copy full SHA for a702d01
Gemfile
@@ -21,8 +21,11 @@ group :testing do
21
gem 'test-unit'
22
gem 'mocha', ">=0.13.0", :require => 'mocha/setup'
23
gem 'shoulda', ">=3.3.2"
24
- gem 'shoulda-matchers', '~>1.0'
25
-
+ if RUBY_VERSION >= '1.9.2'
+ gem 'shoulda-matchers', '~>2.0'
26
+ else
27
+ gem 'shoulda-matchers', '~>1.0'
28
+ end
29
gem 'sfl'
30
if RUBY_VERSION > '1.8.7' || RUBY_PLATFORM =~ /java/
31
gem 'coveralls', :require => false
0 commit comments