Skip to content

Commit

Permalink
Added support for Ruby 3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed Feb 9, 2025
1 parent 9a2c893 commit 702dcb0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
- { ruby: "3.1" }
- { ruby: "3.2" }
- { ruby: "3.3" }
- { ruby: "3.4" }
- { ruby: ruby-head, ignore: true }
- { ruby: jruby-head, ignore: true }
name: test (ruby=${{ matrix.entry.ruby }}${{ matrix.entry.concurrency && ', concurrency=' }}${{ matrix.entry.concurrency }})
Expand Down
9 changes: 8 additions & 1 deletion .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2025-02-09 15:50:36 UTC using RuboCop version 1.26.1.
# on 2025-02-09 15:51:54 UTC using RuboCop version 1.26.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
Expand Down Expand Up @@ -178,6 +178,13 @@ Rake/Desc:
Exclude:
- 'lib/tasks/git.rake'

# Offense count: 1
# Configuration parameters: EnforcedStyle, AllowModifiersOnSymbols.
# SupportedStyles: inline, group
Style/AccessModifierDeclarations:
Exclude:
- 'lib/slack/real_time/client.rb'

# Offense count: 4
# Configuration parameters: MaxUnannotatedPlaceholdersAllowed, IgnoredMethods.
# SupportedStyles: annotated, template, unannotated
Expand Down

0 comments on commit 702dcb0

Please sign in to comment.