Skip to content

Commit 6e426c0

Browse files
author
Abdur Rahman
authored
[GEM] Inheritance Integer Type - Ruby 3.3.8 Update (#23)
* Updated Ruby to v3.3.7 * update ruby version to 3.3.8 * added ruby 3.3 to the test matrix * Updated bundler * Update Gem Push workflow to set up Ruby 3.3 * add bundle exec appraisal install to dev test command * bumped gem version
1 parent 95f1121 commit 6e426c0

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- "3.0"
1919
- "3.1"
2020
- "3.2"
21+
- "3.3"
2122
steps:
2223
- uses: actions/checkout@v4
2324
- uses: ruby/setup-ruby@v1

.github/workflows/gem-push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v3
16-
- name: Set up Ruby 3.1
16+
- name: Set up Ruby 3.3
1717
uses: ruby/setup-ruby@v1
1818
with:
19-
ruby-version: 3.1
19+
ruby-version: 3.3
2020

2121
- name: Publish to RubyGems
2222
env:

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.4
1+
3.3.8

dev.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
version: "2.0"
33

44
setup:
5-
ruby: 3.1.4
6-
bundler: 2.4.21
5+
ruby: 3.3.8
6+
bundler: 2.6.9
77

88
commands:
99
test:
1010
summary: Run the project's specs
11-
command: bundle exec appraisal rspec spec/
11+
command: |
12+
bundle exec appraisal install
13+
bundle exec appraisal rspec spec/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module InheritanceIntegerType
2-
VERSION = "0.2.1"
2+
VERSION = "0.2.2"
33
end

0 commit comments

Comments
 (0)