Skip to content

Commit

Permalink
Rails 8.0 support (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
jprosevear authored Jan 18, 2025
1 parent b3a9263 commit 3ca744e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:
ruby-version: 3.2
- gemfile: gemfiles/rails_7.2.x.gemfile
ruby-version: 3.3
- gemfile: gemfiles/rails_8.0.x.gemfile
ruby-version: 3.3
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,12 @@ This can become repetitive, and as an alternative you can choose to prepend `not

## Requirements

Requires ActiveRecord >= 3.1.0, < 8. Depends on SQLite for testing purposes.
Requires ActiveRecord >= 3.1.0, < 8.1. Depends on SQLite for testing purposes.

## Running Tests

`bundle exec rspec`

## Authors

* Cameron C. Dutro: http://github.com/camertron
- Cameron C. Dutro: http://github.com/camertron
2 changes: 1 addition & 1 deletion arel-helpers.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|

s.platform = Gem::Platform::RUBY

s.add_dependency 'activerecord', '>= 3.1.0', '< 8'
s.add_dependency 'activerecord', '>= 3.1.0', '< 8.1'

s.add_development_dependency 'appraisal'
s.add_development_dependency 'combustion', '~> 1.3'
Expand Down
8 changes: 8 additions & 0 deletions gemfiles/rails_8.0.x.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 8.0.0"
gem "sqlite3", "~> 2.1"

gemspec path: "../"

0 comments on commit 3ca744e

Please sign in to comment.