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
4 changes: 1 addition & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ jobs:
fail-fast: false
matrix:
ruby-version:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
- "3.4"
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gem-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Ruby 3.3
- name: Set up Ruby 3.4
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
ruby-version: 3.4

- name: Publish to RubyGems
env:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.8
3.4.9
5 changes: 0 additions & 5 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
appraise "activerecord-6.1" do
gem "activerecord", "~> 6.1.0"
gem "concurrent-ruby", "1.3.4"
end

appraise "activerecord-7.0" do
gem "activerecord", "~> 7.0.0"
gem "concurrent-ruby", "1.3.4"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The problem with this approach is that `type` is a string (and by default it is

## Installation

_Current versions of this gem (>= v0.2.0) only support Ruby 3+ and ActiveRecord >= v6.1. For Ruby <= v2.7 or ActiveRecord <= 6.0, use v0.1.3._
_Current versions of this gem (>= v0.2.3) only support Ruby 3+ and ActiveRecord >= 7.0. For ActiveRecord 6.1, use v0.2.2. For Ruby <= v2.7 or ActiveRecord <= 6.0, use v0.1.3._

Add this line to your application's Gemfile:

Expand Down
2 changes: 1 addition & 1 deletion dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: "2.0"

setup:
ruby: 3.3.8
ruby: infer
bundler: true
commands:
test:
Expand Down
2 changes: 1 addition & 1 deletion inheritance_integer_type.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "activerecord", ">= 5.2"
spec.add_development_dependency "activerecord", ">= 7.0"
spec.add_development_dependency "sqlite3", "~> 1.4"
spec.add_development_dependency "pry"
end
2 changes: 1 addition & 1 deletion lib/inheritance_integer_type/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module InheritanceIntegerType
VERSION = "0.2.2"
VERSION = "0.2.3"
end
Loading