Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build(deps-dev): Bump steep from 1.8.3 to 1.9.3 #566

Merged
merged 2 commits into from
Dec 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ Bundler/GemVersion:

Layout/ExtraSpacing:
AllowBeforeTrailingComments: true
Layout/LeadingCommentSpace:
AllowRBSInlineAnnotation: true
Layout/LineLength:
AllowedPatterns:
- "'.{50,}'"
Expand Down Expand Up @@ -125,9 +127,9 @@ Style/DocumentationMethod:
Style/FrozenStringLiteralComment:
Exclude:
- "bin/*"
# Use inline comments like `array = [] #: Array[String]` for RBS/Steep.
Style/InlineComment:
Exclude:
- "**/*.md"
Enabled: false
# Forcing parentheses of all method calls isn’t readable.
# e.g., redirect_to, raise, create_table, t.string, RSpec’s expectations, assertions, and so on
Style/MethodCallWithArgsParentheses:
Expand Down
13 changes: 7 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ GEM
concurrent-ruby (1.3.4)
connection_pool (2.4.1)
crass (1.0.6)
csv (3.3.0)
csv (3.3.2)
date (3.4.1)
diff-lcs (1.5.1)
drb (2.2.1)
Expand All @@ -108,7 +108,7 @@ GEM
irb (1.14.3)
rdoc (>= 4.0.0)
reline (>= 0.4.2)
json (2.9.0)
json (2.9.1)
language_server-protocol (3.17.0.3)
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
Expand Down Expand Up @@ -198,7 +198,7 @@ GEM
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rbs (3.6.1)
rbs (3.8.1)
logger
rdoc (6.10.0)
psych (>= 4.0.0)
Expand Down Expand Up @@ -274,7 +274,7 @@ GEM
sqlite3 (2.4.0-arm64-darwin)
sqlite3 (2.4.0-x86_64-darwin)
sqlite3 (2.4.0-x86_64-linux-gnu)
steep (1.8.3)
steep (1.9.3)
activesupport (>= 5.1)
concurrent-ruby (>= 1.1.10)
csv (>= 3.0.9)
Expand All @@ -285,12 +285,13 @@ GEM
logger (>= 1.3.0)
parser (>= 3.1)
rainbow (>= 2.2.2, < 4.0)
rbs (~> 3.6.0)
rbs (~> 3.8)
securerandom (>= 0.1)
strscan (>= 1.0.0)
terminal-table (>= 2, < 4)
uri (>= 0.12.0)
stringio (3.1.2)
strscan (3.1.0)
strscan (3.1.2)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
thor (1.3.2)
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/check_all.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def executor
lambda do |taskname|
command = "bundle exec rake #{taskname}"

outputs = []
outputs = [] #: Array[String]
outputs << format(TITLE_TEMPLATE, command:)

# Use `PTY.spawn` to get colorized outputs of each command.
Expand Down
Loading