Skip to content

Commit

Permalink
test rails 6
Browse files Browse the repository at this point in the history
  • Loading branch information
khiav223577 committed Sep 23, 2019
1 parent 88a378f commit d6d5dc7
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,20 @@ env:
language: ruby
rvm:
- 2.2
- 2.3
- 2.6
gemfile:
- gemfiles/3.2.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
- gemfiles/5.1.gemfile
- gemfiles/5.2.gemfile
- gemfiles/6.0.gemfile
matrix:
exclude:
- gemfile: gemfiles/3.2.gemfile
rvm: 2.6
- gemfile: gemfiles/6.0.gemfile
rvm: 2.2
before_install:
- gem i rubygems-update -v '<3' && update_rubygems
- gem install bundler -v 1.17.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ActiveModelCachers:

- Uses multiple levels of cache ([Multi-level Cache](#multi-level-cache))
- Does not pollute the original ActiveModel API
- Supports ActiveRecord 3, 4 and 5
- Supports ActiveRecord 3.2, 4.2, 5.2, 6.0.
- Has high test coverage

## Table of contents
Expand Down
11 changes: 11 additions & 0 deletions gemfiles/6.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
source 'https://rubygems.org'

gem 'activerecord', '~> 6.0.0'
gem 'request_store', '~> 1.4.1'

group :test do
gem 'simplecov'
gem 'sqlite3', '~> 1.4.1'
end

gemspec path: '../'

0 comments on commit d6d5dc7

Please sign in to comment.