Skip to content

Commit

Permalink
Merge pull request #168 from davishmcclurg/ruby-3.3
Browse files Browse the repository at this point in the history
Add Ruby 3.3 to test matrix
  • Loading branch information
davishmcclurg authored Dec 31, 2023
2 parents da9c8f9 + 7ab6ded commit b8adf14
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
ruby: [2.5, 2.6, 2.7, 3.0, 3.1, 3.2, head, jruby, jruby-head, truffleruby, truffleruby-head]
ruby: [2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, head, jruby, jruby-head, truffleruby, truffleruby-head]
exclude:
- os: windows-latest
ruby: truffleruby
Expand Down
13 changes: 10 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,29 @@ PATH
remote: .
specs:
json_schemer (2.1.1)
base64
bigdecimal
hana (~> 1.3)
regexp_parser (~> 2.0)
simpleidn (~> 0.2)

GEM
remote: https://rubygems.org/
specs:
base64 (0.2.0)
bigdecimal (3.1.5)
bigdecimal (3.1.5-java)
concurrent-ruby (1.2.2)
csv (3.2.8)
docile (1.4.0)
hana (1.3.7)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
i18n-debug (1.2.0)
i18n (< 2)
minitest (5.15.0)
rake (13.0.6)
regexp_parser (2.8.2)
rake (13.1.0)
regexp_parser (2.8.3)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
Expand All @@ -38,6 +44,7 @@ PLATFORMS

DEPENDENCIES
bundler (~> 2.0)
csv
i18n
i18n-debug
json_schemer!
Expand All @@ -46,4 +53,4 @@ DEPENDENCIES
simplecov (~> 0.22)

BUNDLED WITH
2.3.25
2.3.27
3 changes: 3 additions & 0 deletions json_schemer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "simplecov", "~> 0.22"
spec.add_development_dependency "csv"
spec.add_development_dependency "i18n"
spec.add_development_dependency "i18n-debug"

spec.add_runtime_dependency "base64"
spec.add_runtime_dependency "bigdecimal"
spec.add_runtime_dependency "hana", "~> 1.3"
spec.add_runtime_dependency "regexp_parser", "~> 2.0"
spec.add_runtime_dependency "simpleidn", "~> 0.2"
Expand Down

0 comments on commit b8adf14

Please sign in to comment.