Test on Ruby 2 && Rails 4

This commit is contained in:
Stefan Wrobel 2013-08-20 14:46:27 -07:00
parent e9f4417307
commit 707d2955e0
3 changed files with 21 additions and 2 deletions

View File

@ -2,10 +2,18 @@ rvm:
- 1.8.7 - 1.8.7
- 1.9.2 - 1.9.2
- 1.9.3 - 1.9.3
- 2.0.0
branches: branches:
only: only:
- master - master
gemfile: gemfile:
- gemfiles/rails30.gemfile - gemfiles/rails30.gemfile
- gemfiles/rails31.gemfile - gemfiles/rails31.gemfile
- gemfiles/rails32.gemfile - gemfiles/rails32.gemfile
- gemfiles/rails40.gemfile
matrix:
exclude:
- rvm: 1.8.7
gemfile: gemfiles/rails4.gemfile
- rvm: 1.9.2
gemfile: gemfiles/rails4.gemfile

View File

@ -8,4 +8,8 @@ end
appraise 'rails32' do appraise 'rails32' do
gem 'rails', '~> 3.2.0' gem 'rails', '~> 3.2.0'
end end
appraise 'rails40' do
gem 'rails', '~> 4.0.0'
end

7
gemfiles/rails40.gemfile Normal file
View File

@ -0,0 +1,7 @@
# This file was generated by Appraisal
source "http://rubygems.org"
gem "rails", "~> 4.0.0"
gemspec :path=>"../"