Skip to content

Commit

Permalink
Add Rails 7.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
biow0lf committed Jun 13, 2024
1 parent 78612ec commit 45608ff
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ gem install eve_online

## Supported rails versions

* 6.1
* 7.0
* 7.1
* 7.2
* main

## Usage examples
Expand Down
12 changes: 12 additions & 0 deletions gemfiles/activesupport_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -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: "../"

0 comments on commit 45608ff

Please sign in to comment.