Skip to content

Commit

Permalink
Update ruby and gem versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Issei Naruta committed Apr 20, 2019
1 parent 332a7db commit 4b9b9c9
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
*.gem
Gemfile.lock
gemfiles/*.lock
.bundle/
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
language: ruby
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-head
- 2.4
- 2.5
- 2.6
gemfile:
- gemfiles/ar_4.2.gemfile
- gemfiles/ar_5.0.gemfile
- gemfiles/ar_5.2.gemfile
- gemfiles/ar_6.0.gemfile
matrix:
fast_finish: true
before_install: gem install bundler -v 1.11.2
before_install: gem install bundler -v 2.0.1
script: bundle exec rake spec
8 changes: 6 additions & 2 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ appraise 'ar-4.2' do
gem 'activerecord', '~> 4.2.0'
end

appraise 'ar-5.0' do
gem 'activerecord', '~> 5.0.0'
appraise 'ar-5.2' do
gem 'activerecord', '~> 5.2.0'
end

appraise 'ar-6.0' do
gem 'activerecord', '~> 6.0.0.beta'
end
2 changes: 1 addition & 1 deletion gemfiles/ar_4.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ source "https://rubygems.org"

gem "activerecord", "~> 4.2.0"

gemspec :path => "../"
gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/ar_5.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ source "https://rubygems.org"

gem "activerecord", "~> 5.0.0"

gemspec :path => "../"
gemspec path: "../"
7 changes: 7 additions & 0 deletions gemfiles/ar_5.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 5.0.0"

gemspec path: "../"
7 changes: 7 additions & 0 deletions gemfiles/ar_5.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 5.0.0"

gemspec path: "../"
7 changes: 7 additions & 0 deletions gemfiles/ar_6.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 6.0.0.beta"

gemspec path: "../"

0 comments on commit 4b9b9c9

Please sign in to comment.