Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- 3.2
- 3.1
gemfile:
- gemfiles/activerecord_8.1.gemfile
- gemfiles/activerecord_8.0.gemfile
- gemfiles/activerecord_7.2.gemfile
- gemfiles/activerecord_7.1.gemfile
Expand All @@ -36,6 +37,8 @@ jobs:
db: postgresql
gemfile: gemfiles/activerecord_7.2.gemfile
exclude:
- ruby: 3.1
gemfile: gemfiles/activerecord_8.1.gemfile
- ruby: 3.1
gemfile: gemfiles/activerecord_8.0.gemfile

Expand Down
7 changes: 7 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,10 @@ appraise 'activerecord-8.0' do
gem 'sqlite3', '~> 2.2'
gem 'mysql2', '~> 0.5'
end

appraise 'activerecord-8.1' do
gem 'activerecord', '~> 8.1.0'
gem 'pg'
gem 'sqlite3', '~> 2.2'
gem 'mysql2', '~> 0.5'
end
2 changes: 1 addition & 1 deletion acts-as-taggable-on.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
gem.post_install_message = File.read('UPGRADING.md')
end

gem.add_runtime_dependency 'activerecord', '>= 7.1', '< 8.1'
gem.add_runtime_dependency 'activerecord', '>= 7.1', '< 8.2'
gem.add_runtime_dependency 'zeitwerk', '>= 2.4', '< 3.0'

gem.add_development_dependency 'rspec-rails'
Expand Down
18 changes: 18 additions & 0 deletions gemfiles/activerecord_8.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 8.1.0"
gem "pg"
gem "sqlite3", "~> 2.2"
gem "mysql2", "~> 0.5"

group :local_development do
gem "guard"
gem "guard-rspec"
gem "appraisal"
gem "rake"
gem "byebug", platforms: [:mri]
end

gemspec path: "../"