1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00

CI against AR 7.0

This commit is contained in:
Akira Matsuda 2021-12-20 00:45:23 +09:00
parent d178b261f9
commit 8e1e2c45ce
3 changed files with 34 additions and 1 deletions

View file

@ -23,6 +23,7 @@ jobs:
- '2.5'
- 'jruby-9.2.17.0'
gemfile:
- gemfiles/active_record_70.gemfile
- gemfiles/active_record_61.gemfile
- gemfiles/active_record_60.gemfile
- gemfiles/active_record_52.gemfile
@ -48,8 +49,12 @@ jobs:
gemfile: gemfiles/active_record_50.gemfile
- ruby_version: '2.6'
gemfile: gemfiles/active_record_edge.gemfile
- ruby_version: '2.6'
gemfile: gemfiles/active_record_70.gemfile
- ruby_version: '2.5'
gemfile: gemfiles/active_record_edge.gemfile
- ruby_version: '2.5'
gemfile: gemfiles/active_record_70.gemfile
- ruby_version: 'jruby-9.2.17.0'
gemfile: gemfiles/active_record_edge.gemfile
include:

View file

@ -32,7 +32,7 @@ The pagination helper outputs the HTML5 `<nav>` tag by default. Plus, the helper
* Ruby 2.1.x, 2.2.x, 2.3.x, 2.4.x, 2.5.x, 2.6.x, 2.7.x, 3.0.x
* Rails 4.1, 4.2, 5.0, 5.1, 5.2, 6.0, 6.1
* Rails 4.1, 4.2, 5.0, 5.1, 5.2, 6.0, 6.1, 7.0, 7.1
* Sinatra 1.4, 2.0

View file

@ -0,0 +1,28 @@
source 'https://rubygems.org'
gem 'railties', '~> 7.0.0'
gem 'activerecord', '~> 7.0.0', require: 'active_record'
gem 'actionview', '~> 7.0.0', require: 'action_view'
gem 'selenium-webdriver'
platforms :ruby do
gem 'sqlite3', require: false
gem 'pg', require: false
gem 'mysql2', require: false
end
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.3.0'
gem 'activerecord-jdbcpostgresql-adapter', require: false
gem 'activerecord-jdbcmysql-adapter', require: false
end
if RUBY_ENGINE == 'rbx'
platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'racc'
gem 'minitest'
gem 'rubinius-developer_tools'
end
end
gemspec path: '../'