Skip to content

Commit

Permalink
Bump dependencies and update RBI signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
olivier-thatch committed Aug 5, 2024
1 parent f003132 commit e37aa7f
Show file tree
Hide file tree
Showing 24 changed files with 4,537 additions and 2,052 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require:
AllCops:
NewCops: enable
SuggestExtensions: false
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1

Naming/ConstantName:
Enabled: false
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.3
3.3.4
44 changes: 22 additions & 22 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ GEM
thor (~> 1.0)
concurrent-ruby (1.3.3)
connection_pool (2.4.1)
docile (1.4.0)
docile (1.4.1)
drb (2.2.1)
dry-core (1.0.1)
concurrent-ruby (~> 1.0)
Expand All @@ -47,7 +47,7 @@ GEM
dry-logic (~> 1.4)
zeitwerk (~> 2.6)
erubi (1.13.0)
grape (2.1.2)
grape (2.1.3)
activesupport (>= 6)
dry-types (>= 1.1)
mustermann-grape (~> 1.1.0)
Expand All @@ -71,7 +71,7 @@ GEM
minitest (>= 5.0)
ruby-progressbar
multi_json (1.15.0)
mustermann (3.0.0)
mustermann (3.0.1)
ruby2_keywords (~> 0.0.1)
mustermann-grape (1.1.0)
mustermann (>= 1.0.0)
Expand All @@ -84,21 +84,21 @@ GEM
prism (0.30.0)
psych (5.1.2)
stringio
racc (1.8.0)
racc (1.8.1)
rack (3.1.7)
rainbow (3.1.1)
rake (13.2.1)
rbi (0.1.13)
rbi (0.1.14)
prism (>= 0.18.0, < 1.0.0)
sorbet-runtime (>= 0.5.9204)
rdoc (6.7.0)
psych (>= 4.0.0)
regexp_parser (2.9.2)
reline (0.5.9)
io-console (~> 0.5)
rexml (3.3.1)
rexml (3.3.4)
strscan
rubocop (1.65.0)
rubocop (1.65.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand All @@ -109,7 +109,7 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.3)
rubocop-ast (1.32.0)
parser (>= 3.3.1.0)
rubocop-minitest (0.35.1)
rubocop (>= 1.61, < 2.0)
Expand All @@ -121,8 +121,8 @@ GEM
rubocop (~> 1.0)
rubocop-shopify (2.15.1)
rubocop (~> 1.51)
rubocop-sorbet (0.8.3)
rubocop (>= 0.90.0)
rubocop-sorbet (0.8.5)
rubocop (>= 1)
ruby-progressbar (1.13.0)
ruby2_keywords (0.0.5)
simplecov (0.22.0)
Expand All @@ -131,16 +131,16 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
sorbet (0.5.11481)
sorbet-static (= 0.5.11481)
sorbet-runtime (0.5.11481)
sorbet-static (0.5.11481-aarch64-linux)
sorbet-static (0.5.11481-universal-darwin)
sorbet-static (0.5.11481-x86_64-linux)
sorbet-static-and-runtime (0.5.11481)
sorbet (= 0.5.11481)
sorbet-runtime (= 0.5.11481)
spoom (1.3.3)
sorbet (0.5.11506)
sorbet-static (= 0.5.11506)
sorbet-runtime (0.5.11506)
sorbet-static (0.5.11506-aarch64-linux)
sorbet-static (0.5.11506-universal-darwin)
sorbet-static (0.5.11506-x86_64-linux)
sorbet-static-and-runtime (0.5.11506)
sorbet (= 0.5.11506)
sorbet-runtime (= 0.5.11506)
spoom (1.4.2)
erubi (>= 1.10.0)
prism (>= 0.28.0)
sorbet-static-and-runtime (>= 0.5.10187)
Expand All @@ -164,7 +164,7 @@ GEM
yard-sorbet (0.9.0)
sorbet-runtime
yard
zeitwerk (2.6.16)
zeitwerk (2.6.17)

PLATFORMS
aarch64-linux
Expand All @@ -190,4 +190,4 @@ DEPENDENCIES
tapioca

BUNDLED WITH
2.5.15
2.5.17
6 changes: 5 additions & 1 deletion rbi/grape.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,13 @@ module Grape
message: T.any(String, T::Hash[Symbol, T.untyped]),
status: T.nilable(T.any(Integer, Symbol)),
additional_headers: T.nilable(T::Hash[String, String]),
backtrace: T.nilable(T::Array[String]),
original_exception: T.nilable(Exception),
).returns(T.noreturn)
end
def error!(message, status = nil, additional_headers = nil); end
def error!(message, status = T.unsafe(nil), additional_headers = T.unsafe(nil), backtrace = T.unsafe(nil),
original_exception = T.unsafe(nil))
end

sig { params(status: T.nilable(T.any(Integer, Symbol))).returns(Integer) }
def status(status = nil); end
Expand Down
Loading

0 comments on commit e37aa7f

Please sign in to comment.