Skip to content

Commit

Permalink
Upgrade ruby version (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
dickdavis authored Jun 25, 2024
1 parent 51bb819 commit aaa0678
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.1.4']
ruby-version: ['3.2.4']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.1.4']
ruby-version: ['3.2.4']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.1.4', '3.2.2']
ruby-version: ['3.3.3', '3.2.4']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require:
- rubocop-rspec

AllCops:
TargetRubyVersion: 3.1
TargetRubyVersion: 3.2
NewCops: enable
Naming/RescuedExceptionsVariableName:
Enabled: false
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.1.4
ruby 3.2.4
7 changes: 4 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ GEM
kramdown (~> 2.0)
kwalify (0.7.2)
language_server-protocol (3.17.0.3)
mini_portile2 (2.8.6)
minitest (5.20.0)
mutex_m (0.2.0)
nokogiri (1.15.5-arm64-darwin)
racc (~> 1.4)
nokogiri (1.15.5-x86_64-linux)
nokogiri (1.15.5)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
overcommit (0.60.0)
childprocess (>= 0.6.3, < 5)
Expand Down Expand Up @@ -165,6 +165,7 @@ GEM

PLATFORMS
arm64-darwin-22
arm64-darwin-23
x86_64-linux

DEPENDENCIES
Expand Down
2 changes: 1 addition & 1 deletion anthropic-rb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
# guide at: https://bundler.io/guides/creating_gem.html
spec.metadata['rubygems_mfa_required'] = 'true'

spec.required_ruby_version = '>= 3.1'
spec.required_ruby_version = '>= 3.2.4'
spec.add_dependency 'httpx', '>= 1.1.5'
spec.add_dependency 'json-schema', '>= 4.1.1'
end

0 comments on commit aaa0678

Please sign in to comment.