Skip to content

Commit bcf226b

Browse files
committed
Test with Rails 5.1 and Ruby 2.4.1
1 parent 7c1bbf0 commit bcf226b

5 files changed

+38
-8
lines changed

.travis.yml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ rvm:
66
- 1.9.3
77
- 2.0.0
88
- 2.1
9-
- 2.2.4
10-
- 2.3.0
9+
- 2.2.7
10+
- 2.3.4
11+
- 2.4.1
1112

1213
gemfile:
1314
- Gemfile
@@ -16,9 +17,15 @@ gemfile:
1617
- gemfiles/Gemfile.rails-4.2.x
1718
- gemfiles/Gemfile.rails-5.0.x
1819
- gemfiles/Gemfile.rails-5.0.x.sprockets-4.x
20+
- gemfiles/Gemfile.rails-5.1.x
21+
- gemfiles/Gemfile.rails-5.1.x.sprockets-4.x
1922

2023
matrix:
2124
exclude:
25+
- gemfile: gemfiles/Gemfile.rails-4.0.x
26+
rvm: 2.4.1
27+
- gemfile: gemfiles/Gemfile.rails-4.1.x
28+
rvm: 2.4.1
2229
- gemfile: Gemfile
2330
rvm: 1.9.3
2431
- gemfile: Gemfile
@@ -37,6 +44,18 @@ matrix:
3744
rvm: 2.0.0
3845
- gemfile: gemfiles/Gemfile.rails-5.0.x.sprockets-4.x
3946
rvm: 2.1
47+
- gemfile: gemfiles/Gemfile.rails-5.1.x
48+
rvm: 1.9.3
49+
- gemfile: gemfiles/Gemfile.rails-5.1.x
50+
rvm: 2.0.0
51+
- gemfile: gemfiles/Gemfile.rails-5.1.x
52+
rvm: 2.1
53+
- gemfile: gemfiles/Gemfile.rails-5.1.x.sprockets-4.x
54+
rvm: 1.9.3
55+
- gemfile: gemfiles/Gemfile.rails-5.1.x.sprockets-4.x
56+
rvm: 2.0.0
57+
- gemfile: gemfiles/Gemfile.rails-5.1.x.sprockets-4.x
58+
rvm: 2.1
4059

4160
notifications:
4261
email: false

gemfiles/Gemfile.rails-5.0.x

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
source 'https://rubygems.org'
22
gemspec path: '..'
33

4-
gem 'actionpack', github: 'rails/rails', branch: 'master'
5-
gem 'railties', github: 'rails/rails', branch: 'master'
6-
gem 'rack', github: 'rack/rack', branch: 'master'
4+
gem 'actionpack', '~> 5.0.0'
5+
gem 'railties', '~> 5.0.0'
76
gem 'sprockets', github: 'rails/sprockets', branch: '3.x'
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
source 'https://rubygems.org'
22
gemspec path: '..'
33

4-
gem 'actionpack', github: 'rails/rails', branch: 'master'
5-
gem 'railties', github: 'rails/rails', branch: 'master'
6-
gem 'rack', github: 'rack/rack', branch: 'master'
4+
gem 'actionpack', '~> 5.0.0'
5+
gem 'railties', '~> 5.0.0'
76
gem 'sprockets', github: 'rails/sprockets', branch: 'master'

gemfiles/Gemfile.rails-5.1.x

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source 'https://rubygems.org'
2+
gemspec path: '..'
3+
4+
gem 'actionpack', github: 'rails/rails', branch: 'master'
5+
gem 'railties', github: 'rails/rails', branch: 'master'
6+
gem 'rack', github: 'rack/rack', branch: 'master'
7+
gem 'sprockets', github: 'rails/sprockets', branch: '3.x'
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
gemspec path: '..'
3+
4+
gem 'actionpack', '~> 5.1.0'
5+
gem 'railties', '~> 5.1.0'
6+
gem 'sprockets', github: 'rails/sprockets', branch: 'master'

0 commit comments

Comments
 (0)