Skip to content

Commit

Permalink
Merge pull request #44 from jwilsjustin/rails-7
Browse files Browse the repository at this point in the history
add rails 7.0 and 7.1 support
  • Loading branch information
iiwo authored Dec 12, 2023
2 parents 09de341 + 5e7d1da commit ec09066
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 2 deletions.
10 changes: 10 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,13 @@ appraise 'activerecord-6.1' do
gem 'activerecord', '~> 6.1.0'
gem 'activesupport', '~> 6.1.0'
end

appraise 'activerecord-7.0' do
gem 'activerecord', '~> 7.0.0'
gem 'activesupport', '~> 7.0.0'
end

appraise 'activerecord-7.1' do
gem 'activerecord', '~> 7.1.0'
gem 'activesupport', '~> 7.1.0'
end
4 changes: 2 additions & 2 deletions easy_tags.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = ['>= 2.5.0', '<= 4.0.0']

spec.add_runtime_dependency 'activerecord', '>= 5.0', '< 6.2'
spec.add_runtime_dependency 'activesupport', '>= 5.0', '< 6.2'
spec.add_runtime_dependency 'activerecord', '>= 5.0', '< 8'
spec.add_runtime_dependency 'activesupport', '>= 5.0', '< 8'
end
18 changes: 18 additions & 0 deletions gemfiles/activerecord_7.0.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 "appraisal"
gem "database_cleaner"
gem "db-query-matchers"
gem "rspec"
gem "rspec-rails"
gem "rubocop", require: false
gem "rubocop-rspec", require: false
gem "simplecov"
gem "simplecov-console"
gem "sqlite3"
gem "activerecord", "~> 7.0.0"
gem "activesupport", "~> 7.0.0"

gemspec path: "../"
18 changes: 18 additions & 0 deletions gemfiles/activerecord_7.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 "appraisal"
gem "database_cleaner"
gem "db-query-matchers"
gem "rspec"
gem "rspec-rails"
gem "rubocop", require: false
gem "rubocop-rspec", require: false
gem "simplecov"
gem "simplecov-console"
gem "sqlite3"
gem "activerecord", "~> 7.1.0"
gem "activesupport", "~> 7.1.0"

gemspec path: "../"

0 comments on commit ec09066

Please sign in to comment.