Skip to content

Commit

Permalink
try rails 6 with appraisal
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanto committed Jul 18, 2019
1 parent 2b934f9 commit 1570f4d
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.5.3
14 changes: 11 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ language: ruby
cache: bundler

rvm:
- 2.3.4
- 2.4.2
- 2.5.1
- 2.3.8
- 2.4.6
- 2.5.5

before_install:
- gem update --system
Expand All @@ -19,3 +19,11 @@ gemfile:
- gemfiles/rails_5.gemfile
- gemfiles/rails_5_1.gemfile
- gemfiles/rails_5_2.gemfile
- gemfiles/rails_6_rc1.gemfile

matrix:
exclude:
- gemfile: gemfiles/rails_6_rc1.gemfile
rvm: 2.3.8
- gemfile: gemfiles/rails_6_rc1.gemfile
rvm: 2.4.6
5 changes: 5 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@ end
appraise "rails-5-2" do
gem "rails", "5.2.0"
end

appraise "rails-6-rc1" do
gem "rails", "6.0.0.rc1"
gem "sqlite3", "~> 1.4"
end
8 changes: 8 additions & 0 deletions gemfiles/rails_6_rc1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", "6.0.0.rc1"
gem "sqlite3", "~> 1.4"

gemspec path: "../"

0 comments on commit 1570f4d

Please sign in to comment.