From 0198c4b98cc9f80f65a0d8e80ce3b92ed634ceb2 Mon Sep 17 00:00:00 2001 From: Abdur Rahman Date: Tue, 29 Apr 2025 10:45:36 -0400 Subject: [PATCH 1/7] Updated Ruby to v3.3.7 --- .ruby-version | 2 +- dev.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ruby-version b/.ruby-version index 0aec50e..86fb650 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.1.4 +3.3.7 diff --git a/dev.yml b/dev.yml index 60bfd8d..7a76e18 100644 --- a/dev.yml +++ b/dev.yml @@ -2,7 +2,7 @@ version: "2.0" setup: - ruby: 3.1.4 + ruby: 3.3.7 bundler: 2.4.21 commands: From 2eae32daa35310b611e269d2daf85d470d6e263b Mon Sep 17 00:00:00 2001 From: Abdur Rahman Date: Thu, 1 May 2025 14:01:20 -0400 Subject: [PATCH 2/7] update ruby version to 3.3.8 --- .ruby-version | 2 +- dev.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ruby-version b/.ruby-version index 86fb650..37d02a6 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.3.7 +3.3.8 diff --git a/dev.yml b/dev.yml index 7a76e18..3b02ffc 100644 --- a/dev.yml +++ b/dev.yml @@ -2,7 +2,7 @@ version: "2.0" setup: - ruby: 3.3.7 + ruby: 3.3.8 bundler: 2.4.21 commands: From 7b1ecf575e9bdf9d63cc9f523bfa1c3a84eeb964 Mon Sep 17 00:00:00 2001 From: Abdur Rahman Date: Wed, 4 Jun 2025 15:09:36 -0400 Subject: [PATCH 3/7] added ruby 3.3 to the test matrix --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 30bae1a..2ae0358 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,6 +18,7 @@ jobs: - "3.0" - "3.1" - "3.2" + - "3.3" steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 From 54d4f1bbe1d988280891e24d87a211143d38848e Mon Sep 17 00:00:00 2001 From: Abdur Rahman Date: Wed, 4 Jun 2025 15:13:40 -0400 Subject: [PATCH 4/7] Updated bundler --- dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev.yml b/dev.yml index 3b02ffc..a11783a 100644 --- a/dev.yml +++ b/dev.yml @@ -3,7 +3,7 @@ version: "2.0" setup: ruby: 3.3.8 - bundler: 2.4.21 + bundler: 2.6.9 commands: test: From 18345a1a9d393409c3305b39525050be7ab9d80d Mon Sep 17 00:00:00 2001 From: Abdur Rahman Date: Wed, 4 Jun 2025 15:21:11 -0400 Subject: [PATCH 5/7] Update Gem Push workflow to set up Ruby 3.3 --- .github/workflows/gem-push.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gem-push.yaml b/.github/workflows/gem-push.yaml index 5c8d227..5841769 100644 --- a/.github/workflows/gem-push.yaml +++ b/.github/workflows/gem-push.yaml @@ -13,10 +13,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Ruby 3.1 + - name: Set up Ruby 3.3 uses: ruby/setup-ruby@v1 with: - ruby-version: 3.1 + ruby-version: 3.3 - name: Publish to RubyGems env: From 89373ec25284a54b408a62002416cb580f8f0161 Mon Sep 17 00:00:00 2001 From: Abdur Rahman Date: Wed, 4 Jun 2025 15:35:26 -0400 Subject: [PATCH 6/7] add bundle exec appraisal install to dev test command --- dev.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev.yml b/dev.yml index a11783a..36f3c6d 100644 --- a/dev.yml +++ b/dev.yml @@ -8,4 +8,6 @@ setup: commands: test: summary: Run the project's specs - command: bundle exec appraisal rspec spec/ + command: | + bundle exec appraisal install + bundle exec appraisal rspec spec/ From e721bb75b199ded35e776d165122017f40c55e15 Mon Sep 17 00:00:00 2001 From: Abdur Rahman Date: Wed, 4 Jun 2025 15:38:52 -0400 Subject: [PATCH 7/7] bumped gem version --- lib/inheritance_integer_type/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/inheritance_integer_type/version.rb b/lib/inheritance_integer_type/version.rb index afb9255..b9d033f 100644 --- a/lib/inheritance_integer_type/version.rb +++ b/lib/inheritance_integer_type/version.rb @@ -1,3 +1,3 @@ module InheritanceIntegerType - VERSION = "0.2.1" + VERSION = "0.2.2" end