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
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
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.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:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.4
3.3.8
8 changes: 5 additions & 3 deletions dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
version: "2.0"

setup:
ruby: 3.1.4
bundler: 2.4.21
ruby: 3.3.8
bundler: 2.6.9

commands:
test:
summary: Run the project's specs
command: bundle exec appraisal rspec spec/
command: |
bundle exec appraisal install
bundle exec appraisal rspec spec/
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.1"
VERSION = "0.2.2"
end