File tree Expand file tree Collapse file tree 7 files changed +20
-60
lines changed
elasticsearch-rails/spec/instrumentation Expand file tree Collapse file tree 7 files changed +20
-60
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ jobs:
1111 tests :
1212 env :
1313 TEST_ES_SERVER : http://localhost:9200
14- RAILS_VERSIONS : ' 5 .0,6 .0'
14+ RAILS_VERSIONS : ' 6 .0,7 .0'
1515 strategy :
1616 fail-fast : false
1717 matrix :
18- ruby : ['2.6', '2. 7', '3.0']
18+ ruby : ['2.7', '3.0']
1919 runs-on : ubuntu-latest
2020 steps :
2121 - 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,10 +24,9 @@ source 'https://rubygems.org'
2424
2525gemspec path: '../'
2626
27- gem 'activemodel', '6.0.0'
28- gem 'activerecord', '6.0.0'
29- gem 'sqlite3' unless defined?(JRUBY_VERSION)
30- # gem 'mongoid', '~> 6'
27+ gem 'activemodel', '6.0'
28+ gem 'activerecord', '6.0'
29+ gem 'activesupport', '6.0'
3130
3231group :development, :testing do
3332 gem 'pry-nav'
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 'activesupport', '7.0'
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 'activesupport', '7.1'
3130
3231group :development, :testing do
33- gem 'rspec'
3432 gem 'pry-nav'
35- end
33+ gem 'rspec'
34+ end
Original file line number Diff line number Diff line change 5454 end
5555 end
5656 end
57- end
57+ end if version >= Gem :: Version . new ( '7.1' )
You can’t perform that action at this time.
0 commit comments