Skip to content

Commit

Permalink
feat: drop ruby 2.7 support; add ruby 3.3 support (#55)
Browse files Browse the repository at this point in the history
* feat: drop ruby 2.7 support; add ruby 3.3 support

Signed-off-by: David Looi <[email protected]>

* feat: up rubocop support to 3.0

Signed-off-by: David Looi <[email protected]>

---------

Signed-off-by: David Looi <[email protected]>
  • Loading branch information
davelooi authored Jun 5, 2024
1 parent 32df1aa commit c6eced5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
ruby: [ '2.7', '3.1', '3.2' ]
ruby: [ '3.0', '3.1', '3.2', '3.3' ]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
NewCops: enable
SuggestExtensions: false

Expand Down
2 changes: 1 addition & 1 deletion bsb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.7.7'
spec.required_ruby_version = '>= 3.0.0'

spec.add_dependency 'activemodel'

Expand Down

0 comments on commit c6eced5

Please sign in to comment.