Skip to content

Commit

Permalink
Add support for Ruby 3.3 and drop Ruby 3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
tristandunn committed Mar 5, 2024
1 parent fc56300 commit fcbcea5
Show file tree
Hide file tree
Showing 4 changed files with 8 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 @@ -9,9 +9,9 @@ jobs:
strategy:
matrix:
ruby:
- "3.0"
- "3.1"
- "3.2"
- "3.3"

name: Ruby ${{ matrix.ruby }}
steps:
Expand Down
5 changes: 4 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1

Gemspec/DevelopmentDependencies:
EnforcedStyle: gemspec
Expand Down Expand Up @@ -68,6 +68,9 @@ RSpec/SubjectStub:
Style/HashEachMethods:
Enabled: true

Style/HashSyntax:
EnforcedShorthandSyntax: never

Style/HashTransformKeys:
Enabled: true

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

* Add support for Ruby 3.3. (Tristan Dunn)
* Drop support for Ruby 3.0. (Tristan Dunn)
* Update development dependencies. (Tristan Dunn)

## 5.0.0 — March 27th, 2023
Expand Down
2 changes: 1 addition & 1 deletion pusher-fake.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
s.executables << "pusher-fake"
s.require_path = "lib"

s.required_ruby_version = ">= 3.0"
s.required_ruby_version = ">= 3.1"

s.add_dependency "em-http-request", "~> 1.1"
s.add_dependency "em-websocket", "~> 0.5"
Expand Down

0 comments on commit fcbcea5

Please sign in to comment.