mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
cd61fb6085
* Add Ruby 2.0 support to the Appraisals * Update travis to test 2.0.0 with the 3.2 gemfile. Clean up the travis matrix to favor the include syntax over exclude. * Edit gemfile.locks to point to relative paths.
17 lines
272 B
Ruby
17 lines
272 B
Ruby
if RUBY_VERSION < '2.0'
|
|
appraise '3.0' do
|
|
gem 'rails', '~> 3.0.17'
|
|
end
|
|
|
|
appraise '3.1' do
|
|
gem 'rails', '~> 3.1.8'
|
|
gem 'jquery-rails'
|
|
gem 'sass-rails'
|
|
end
|
|
end
|
|
|
|
appraise '3.2' do
|
|
gem 'rails', '~> 3.2.13'
|
|
gem 'jquery-rails'
|
|
gem 'sass-rails'
|
|
end
|