Skip to content

Commit bd91b03

Browse files
authored
Merge pull request #569 from lostapathy/bump_travis
Update ruby, rails version for travis builds
2 parents c034d2d + 5536a59 commit bd91b03

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.travis.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@ rvm:
55
- 1.9.3 # when removed, get rid of the before_script hack and also the one in application_generator.rb
66
- 2.0.0
77
- 2.1.10
8-
- 2.2.7
9-
- 2.3.4
10-
- 2.4.1
8+
- 2.2.10
9+
- 2.3.7
10+
- 2.4.4
11+
- 2.5.1
1112
- ruby-head
1213
env:
1314
- RAILS_VERSION="~> 4.2.0"
1415
- RAILS_VERSION="~> 5.0.0"
1516
- RAILS_VERSION="~> 5.1.0"
17+
- RAILS_VERSION="~> 5.2.0"
1618
matrix:
1719
exclude: # Rails 5 is incompatible with Ruby < 2.2.2
1820
- rvm: 1.9.3
@@ -27,6 +29,12 @@ matrix:
2729
env: RAILS_VERSION="~> 5.1.0"
2830
- rvm: 2.1.10
2931
env: RAILS_VERSION="~> 5.1.0"
32+
- rvm: 1.9.3
33+
env: RAILS_VERSION="~> 5.2.0"
34+
- rvm: 2.0.0
35+
env: RAILS_VERSION="~> 5.2.0"
36+
- rvm: 2.1.10
37+
env: RAILS_VERSION="~> 5.2.0"
3038
allow_failures:
3139
- rvm: ruby-head
3240
fast_finish: true

lib/spring/test/application_generator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def generate_files
4848

4949
@version = RailsVersion.new(`ruby -e 'puts Gem::Specification.find_by_name("rails", "#{version_constraint}").version'`.chomp)
5050

51-
skips = %w(--skip-bundle --skip-javascript --skip-sprockets --skip-spring)
51+
skips = %w(--skip-bundle --skip-javascript --skip-sprockets --skip-spring --skip-listen --skip-system-test)
5252

5353
system("rails _#{version}_ new #{application.root} #{skips.join(' ')}")
5454
raise "application generation failed" unless application.exists?

0 commit comments

Comments
 (0)