diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 546b55d..75eadb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: + # TODO: we should test only supported versions: https://endoflife.date/ruby ruby-version: [ '2.7', '3.0', '3.1', '3.2', '3.3', 'head' ] steps: diff --git a/Appraisals b/Appraisals index fafa614..4372820 100644 --- a/Appraisals +++ b/Appraisals @@ -23,18 +23,23 @@ end # Supported versions of Rails: # https://endoflife.date/rails # -appraise "rails-6.1" do - gem "activesupport", "~> 7.0.x" +if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new("3.0") + appraise "rails-6.1" do + gem "activesupport", "~> 6.1.x" + gem "sqlite3", "~> 1.4.0" + end end appraise "rails-7.0" do gem "activesupport", "~> 7.0.x" end -appraise "rails-7.1" do - gem "activesupport", "~> 7.1.x" -end +if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.1") + appraise "rails-7.1" do + gem "activesupport", "~> 7.1.x" + end -appraise "rails-7.2" do - gem "activesupport", "~> 7.2.x" + appraise "rails-7.2" do + gem "activesupport", "~> 7.2.x" + end end diff --git a/Gemfile b/Gemfile index 4bd98d1..53b0876 100644 --- a/Gemfile +++ b/Gemfile @@ -5,5 +5,9 @@ gemspec gem "gem-release" gem "simplecov_json_formatter" -gem "sqlite3" -gem "amazing_print" + +if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("3.1") + gem "activesupport", ">= 5.0", "< 7.1" + gem "activerecord", ">= 5.0", "< 7.1" + gem "sqlite3", "~> 1.4.0" +end diff --git a/caoutsearch.gemspec b/caoutsearch.gemspec index a45a541..1e694da 100644 --- a/caoutsearch.gemspec +++ b/caoutsearch.gemspec @@ -17,7 +17,7 @@ Gem::Specification.new do |s| s.files = Dir["lib/**/*"] + %w[LICENSE README.md] s.require_paths = ["lib"] - s.add_dependency "activesupport", ">= 5.0" + s.add_dependency "activesupport", ">= 6.1" s.add_dependency "elasticsearch", "~> 8.x" s.add_dependency "hashie", "~> 5.0" s.add_dependency "multi_json", "~> 1.15"