diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml index cb39c348..96692ad7 100644 --- a/.github/workflows/rspec.yml +++ b/.github/workflows/rspec.yml @@ -20,7 +20,7 @@ jobs: fail-fast: false matrix: ruby: ["3.1", "3.2", "3.3", "head"] - activesupport: ["7.0", "7.1", "main"] + activesupport: ["7.0", "7.1", "7.2", "main"] env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activesupport_${{ matrix.activesupport }}.gemfile diff --git a/CHANGELOG.md b/CHANGELOG.md index aab21d88..d5611ec1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## main -* Rails 7.1 +* Rails 7.1 and 7.2 * Ruby 3.3 * Drop Ruby 3.0 * Drop Rails 6.1 diff --git a/README.md b/README.md index aff3513f..f83cee72 100644 --- a/README.md +++ b/README.md @@ -53,9 +53,9 @@ gem install eve_online ## Supported rails versions -* 6.1 * 7.0 * 7.1 +* 7.2 * main ## Usage examples diff --git a/gemfiles/activesupport_7.2.gemfile b/gemfiles/activesupport_7.2.gemfile new file mode 100644 index 00000000..0b30e908 --- /dev/null +++ b/gemfiles/activesupport_7.2.gemfile @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +source "https://rubygems.org" + +gem "nokogiri" +gem "awesome_print", require: "ap" +gem "pry" +gem "standard", require: false +gem "fasterer", require: false +gem "activesupport", git: "https://github.com/rails/rails", require: "activesupport", branch: "7-2-stable" + +gemspec path: "../"