File tree Expand file tree Collapse file tree 6 files changed +18
-57
lines changed Expand file tree Collapse file tree 6 files changed +18
-57
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ jobs:
1313 tests :
1414 env :
1515 TEST_ES_SERVER : http://localhost:9200
16- RAILS_VERSIONS : ' 5 .0,6 .0'
16+ RAILS_VERSIONS : ' 6 .0,7 .0'
1717 strategy :
1818 fail-fast : false
1919 matrix :
20- ruby : ['2.6', '2. 7', '3.0']
20+ ruby : ['2.7', '3.0']
2121 runs-on : ubuntu-latest
2222 steps :
2323 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -21,8 +21,7 @@ desc 'Run unit tests'
2121task default : 'test:all'
2222task test : 'test:all'
2323
24- gemfiles = [ '5.0.gemfile' , '6.0.gemfile' ]
25- gemfiles << '4.0.gemfile' if RUBY_VERSION < '2.7'
24+ gemfiles = [ '6.0.gemfile' , '7.0.gemfile' ]
2625GEMFILES = gemfiles . freeze
2726
2827namespace :bundle do
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ source 'https://rubygems.org'
2424
2525gemspec path: '../'
2626
27- gem 'activemodel', '6.0.0 '
28- gem 'activerecord', '6.0.0 '
27+ gem 'activemodel', '6.0'
28+ gem 'activerecord', '6.0'
2929gem 'sqlite3' unless defined?(JRUBY_VERSION)
3030# gem 'mongoid', '~> 6'
3131
Original file line number Diff line number Diff line change 1717
1818# Usage:
1919#
20- # $ BUNDLE_GEMFILE=./gemfiles/5 .0.gemfile bundle install
21- # $ BUNDLE_GEMFILE=./gemfiles/5 .0.gemfile bundle exec rake test:integration
20+ # $ BUNDLE_GEMFILE=./gemfiles/6 .0.gemfile bundle install
21+ # $ BUNDLE_GEMFILE=./gemfiles/6 .0.gemfile bundle exec rake test:integration
2222
2323source 'https://rubygems.org'
2424
2525gemspec path: '../'
2626
27- gem 'activemodel', '~> 5'
28- gem 'activerecord', '~> 5'
29- gem 'sqlite3', '> 1.3', '< 1.4' unless defined?(JRUBY_VERSION)
30- gem 'mongoid', '~> 6'
27+ gem 'activemodel', '7.0'
28+ gem 'activerecord', '7.0'
29+ gem 'sqlite3' unless defined?(JRUBY_VERSION)
3130
3231group :development, :testing do
33- gem 'rspec'
3432 gem 'pry-nav'
33+ gem 'rspec'
3534end
Original file line number Diff line number Diff line change 1717
1818# Usage:
1919#
20- # $ BUNDLE_GEMFILE=./gemfiles/3 .0.gemfile bundle install
21- # $ BUNDLE_GEMFILE=./gemfiles/3 .0.gemfile bundle exec rake test:integration
20+ # $ BUNDLE_GEMFILE=./gemfiles/6 .0.gemfile bundle install
21+ # $ BUNDLE_GEMFILE=./gemfiles/6 .0.gemfile bundle exec rake test:integration
2222
2323source 'https://rubygems.org'
2424
2525gemspec path: '../'
2626
27- gem 'activemodel', '>= 3.0'
28- gem 'activerecord', '~> 3.2'
29- gem 'mongoid', '>= 3.0'
30- gem 'sqlite3', '> 1.3', '< 1.4' unless defined?(JRUBY_VERSION)
27+ gem 'activemodel', '7.1'
28+ gem 'activerecord', '7.1'
29+ gem 'sqlite3' unless defined?(JRUBY_VERSION)
3130
3231group :development, :testing do
33- gem 'rspec'
3432 gem 'pry-nav'
35- end
33+ gem 'rspec'
34+ end
You can’t perform that action at this time.
0 commit comments