Skip to content

Commit 40a2d29

Browse files
committed
Add support for ruby 3.4
1 parent 9a2c893 commit 40a2d29

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
- { ruby: "3.1" }
1313
- { ruby: "3.2" }
1414
- { ruby: "3.3" }
15+
- { ruby: "3.4" }
1516
- { ruby: ruby-head, ignore: true }
1617
- { ruby: jruby-head, ignore: true }
1718
name: test (ruby=${{ matrix.entry.ruby }}${{ matrix.entry.concurrency && ', concurrency=' }}${{ matrix.entry.concurrency }})

.rubocop_todo.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2025-02-09 15:50:36 UTC using RuboCop version 1.26.1.
3+
# on 2025-02-09 15:51:54 UTC using RuboCop version 1.26.1.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
@@ -178,6 +178,13 @@ Rake/Desc:
178178
Exclude:
179179
- 'lib/tasks/git.rake'
180180

181+
# Offense count: 1
182+
# Configuration parameters: EnforcedStyle, AllowModifiersOnSymbols.
183+
# SupportedStyles: inline, group
184+
Style/AccessModifierDeclarations:
185+
Exclude:
186+
- 'lib/slack/real_time/client.rb'
187+
181188
# Offense count: 4
182189
# Configuration parameters: MaxUnannotatedPlaceholdersAllowed, IgnoredMethods.
183190
# SupportedStyles: annotated, template, unannotated

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
### 2.5.1 (Next)
22

3+
* [#542](https://github.com/slack-ruby/slack-ruby-client/pull/542): Add support for ruby 3.4 - [@dblock](https://github.com/dblock).
34
* Your contribution here.
45

56
### 2.5.0 (2025/02/09)

0 commit comments

Comments
 (0)