1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00
thoughtbot--shoulda-matchers/Appraisals

34 lines
727 B
Text
Raw Normal View History

if RUBY_VERSION < '2.0'
appraise '3.0' do
gem 'rails', '~> 3.0.17'
gem 'strong_parameters'
end
appraise '3.1' do
gem 'rails', '~> 3.1.8'
2013-08-18 13:17:19 -04:00
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'jquery-rails'
gem 'sass-rails'
gem 'strong_parameters'
end
end
2012-03-09 10:53:23 -05:00
appraise '3.2' do
gem 'rails', '~> 3.2.13'
2013-08-18 13:17:19 -04:00
gem 'bcrypt-ruby', '~> 3.0.0'
2012-03-09 10:53:23 -05:00
gem 'jquery-rails'
gem 'sass-rails'
gem 'strong_parameters'
end
appraise '4.0' do
gem 'rails', '4.0.0'
2013-08-18 13:17:19 -04:00
gem 'bcrypt-ruby', '~> 3.0.0' #FIXME: This should be ~> 3.1.0 for Rails 4.0
gem 'jquery-rails'
gem 'sass-rails', '~> 4.0.0'
gem 'activeresource', require: 'active_resource'
# Test suite makes heavy use of attr_accessible
gem 'protected_attributes'
2012-03-09 10:53:23 -05:00
end