Skip to content

Commit

Permalink
Test more recent ruby and rails versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnvz committed Jan 31, 2018
1 parent dfc16a7 commit 625ace7
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ cache: bundler
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
- ruby-head
- 2.1
- 2.2
- 2.3
- 2.4

env:
- "RAILS_VERSION=3.1.12"
- "RAILS_VERSION=3.2.22"
- "RAILS_VERSION=4.0.13"
- "RAILS_VERSION=4.1.14"
- "RAILS_VERSION=4.2.5"
- "RAILS_VERSION=master"
gemfile:
- gemfiles/rails-4-0.gemfile
- gemfiles/rails-4-1.gemfile
- gemfiles/rails-4-2.gemfile
- gemfiles/rails-5-0.gemfile
- gemfiles/rails-5-1.gemfile
- gemfiles/rails-master.gemfile

matrix:
fast_finish: true
allow_failures:
- env: "RAILS_VERSION=master"
- rvm: ruby-head
fast_finish: true
- gemfile: gemfiles/rails-master.gemfile

5 changes: 5 additions & 0 deletions gemfiles/rails-4-0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "rails", "~> 4.0.0"

gemspec :path => "../"
5 changes: 5 additions & 0 deletions gemfiles/rails-4-1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "rails", "~> 4.1.0"

gemspec :path => "../"
5 changes: 5 additions & 0 deletions gemfiles/rails-4-2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "rails", "~> 4.2.0"

gemspec :path => "../"
5 changes: 5 additions & 0 deletions gemfiles/rails-5-0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "rails", "~> 5.0.0"

gemspec :path => "../"
5 changes: 5 additions & 0 deletions gemfiles/rails-5-1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "rails", "~> 5.1.0"

gemspec :path => "../"
5 changes: 5 additions & 0 deletions gemfiles/rails-master.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "rails", github: "rails/rails", branch: "master"

gemspec :path => "../"

0 comments on commit 625ace7

Please sign in to comment.