Skip to content

Commit 80e3e1c

Browse files
committed
Test on rails 5.1 as well
1 parent e8a5c34 commit 80e3e1c

4 files changed

Lines changed: 18 additions & 3 deletions

File tree

Appraisals

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,8 @@ appraise "5.0" do
66
gem "rails", "~> 5.0"
77
gem "sinatra", git: "https://github.com/sinatra/sinatra"
88
end
9+
10+
appraise "5.1" do
11+
gem "rails", "~> 5.1"
12+
gem "sinatra", git: "https://github.com/sinatra/sinatra"
13+
end

gemfiles/4.2.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ gem "appraisal"
66
gem "codeclimate-test-reporter"
77
gem "rails", "~> 4.2"
88

9-
gemspec :path => "../"
9+
gemspec path: "../"

gemfiles/5.0.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ 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"
8+
gem "sinatra", git: "https://github.com/sinatra/sinatra"
99

10-
gemspec :path => "../"
10+
gemspec path: "../"

gemfiles/5.1.gemfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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.1"
8+
gem "sinatra", git: "https://github.com/sinatra/sinatra"
9+
10+
gemspec path: "../"

0 commit comments

Comments
 (0)