Skip to content
This repository has been archived by the owner on Aug 17, 2017. It is now read-only.

Commit

Permalink
Update the travis.yml file to use gemfiles to test different rails
Browse files Browse the repository at this point in the history
versions
  • Loading branch information
Rafael Mendonça França committed Oct 27, 2012
1 parent 61e8789 commit dc18c66
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
@@ -1,11 +1,13 @@
language: ruby

rvm:
- 1.8.7
- 1.9.2
- 1.9.3

env:
- ACTIONPACK_VERSION=3.1.8
- ACTIONPACK_VERSION=3.2.8
gemfile:
- test/gemfiles/Gemfile.rails-3.1.x
- test/gemfiles/Gemfile.rails-3.2.x

notifications:
email: false
6 changes: 6 additions & 0 deletions test/gemfiles/Gemfile.rails-3.1.x
@@ -0,0 +1,6 @@
source :rubygems
gemspec :path => "./../.."

gem "actionpack", "~> 3.1.0"
gem "railties", "~> 3.1.0"
gem "activemodel", "~> 3.1.0"
6 changes: 6 additions & 0 deletions test/gemfiles/Gemfile.rails-3.2.x
@@ -0,0 +1,6 @@
source :rubygems
gemspec :path => "./../.."

gem "actionpack", "~> 3.2.0"
gem "railties", "~> 3.2.0"
gem "activemodel", "~> 3.2.0"

0 comments on commit dc18c66

Please sign in to comment.