Skip to content

Commit

Permalink
Configure travis to test against multiple activerecord versions
Browse files Browse the repository at this point in the history
  • Loading branch information
phildionne committed Nov 8, 2013
1 parent 54f9361 commit e65e7ca
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ rvm:
- 2.0.0
- 1.9.3

gemfiles:
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile

matrix:
allow_failures:
- rvm: 2.1.0
5 changes: 5 additions & 0 deletions gemfiles/Gemfile.activerecord-3.2.x
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source 'https://rubygems.org'

gem 'activerecord', '~> 3.2.0'

gemspec path: '../'
5 changes: 5 additions & 0 deletions gemfiles/Gemfile.activerecord-4.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source 'https://rubygems.org'

gem 'activerecord', '~> 4.0.0'

gemspec path: '../'

0 comments on commit e65e7ca

Please sign in to comment.