Skip to content

Commit 68d214c

Browse files
lostapathyandrew
authored andcommitted
test rails 5.2, use released sinatra gem (#524)
1 parent 3523e1c commit 68d214c

File tree

5 files changed

+24
-4
lines changed

5 files changed

+24
-4
lines changed

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ gemfile:
1111
- gemfiles/4.2.gemfile
1212
- gemfiles/5.0.gemfile
1313
- gemfiles/5.1.gemfile
14+
- gemfiles/5.2.gemfile
15+
1416

1517
matrix:
1618
exclude:
@@ -30,6 +32,15 @@ matrix:
3032
gemfile: gemfiles/5.0.gemfile
3133
- rvm: 2.2.0
3234
gemfile: gemfiles/5.1.gemfile
35+
- rvm: 1.9.3
36+
gemfile: gemfiles/5.2.gemfile
37+
- rvm: 2.0
38+
gemfile: gemfiles/5.2.gemfile
39+
- rvm: 2.1
40+
gemfile: gemfiles/5.2.gemfile
41+
- rvm: 2.2.0
42+
gemfile: gemfiles/5.2.gemfile
43+
3344

3445
before_install:
3546
- gem update --system && gem install bundler

Appraisals

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ end
44

55
appraise "5.0" do
66
gem "rails", "~> 5.0"
7-
gem "sinatra", git: "https://github.com/sinatra/sinatra"
87
end
98

109
appraise "5.1" do
1110
gem "rails", "~> 5.1"
12-
gem "sinatra", git: "https://github.com/sinatra/sinatra"
11+
end
12+
13+
appraise "5.2" do
14+
gem "rails", "~> 5.2"
1315
end

gemfiles/5.0.gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@ source "https://rubygems.org"
55
gem "appraisal"
66
gem "codeclimate-test-reporter"
77
gem "rails", "~> 5.0"
8-
gem "sinatra", git: "https://github.com/sinatra/sinatra"
98

109
gemspec path: "../"

gemfiles/5.1.gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@ source "https://rubygems.org"
55
gem "appraisal"
66
gem "codeclimate-test-reporter"
77
gem "rails", "~> 5.1"
8-
gem "sinatra", git: "https://github.com/sinatra/sinatra"
98

109
gemspec path: "../"

gemfiles/5.2.gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal"
6+
gem "codeclimate-test-reporter"
7+
gem "rails", "~> 5.2"
8+
9+
gemspec path: "../"

0 commit comments

Comments
 (0)