Update Ruby to v3.3

This commit is contained in:
Wilson Silva 2024-03-14 19:46:15 +00:00
parent c8d633dbea
commit 0f83b8071a
No known key found for this signature in database
GPG Key ID: 65135F94E23F82C8
5 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ jobs:
strategy: strategy:
matrix: matrix:
ruby: ruby:
- '3.2.0' - '3.3.0'
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@ -5,7 +5,7 @@ require:
- rubocop-rspec - rubocop-rspec
AllCops: AllCops:
TargetRubyVersion: 3.2 TargetRubyVersion: 3.3
DisplayCopNames: true DisplayCopNames: true
NewCops: enable NewCops: enable

View File

@ -1,2 +1,2 @@
ruby 3.2.2 ruby 3.3.0
bun 1.0.11 bun 1.0.11

View File

@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.description = 'Client and relay implementation of the Nostr protocol.' spec.description = 'Client and relay implementation of the Nostr protocol.'
spec.homepage = 'https://nostr-ruby.com/' spec.homepage = 'https://nostr-ruby.com/'
spec.license = 'MIT' spec.license = 'MIT'
spec.required_ruby_version = '>= 3.2.0' spec.required_ruby_version = '>= 3.3.0'
spec.metadata['rubygems_mfa_required'] = 'true' spec.metadata['rubygems_mfa_required'] = 'true'
spec.metadata['homepage_uri'] = spec.homepage spec.metadata['homepage_uri'] = spec.homepage

View File

@ -2,6 +2,6 @@
RSpec.describe Nostr do RSpec.describe Nostr do
it 'has a version number' do it 'has a version number' do
expect(Nostr::VERSION).not_to be_nil expect(described_class::VERSION).not_to be_nil
end end
end end