sorbet-result 1.2.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +74 -51
- data/README.md +1 -1
- data/lib/typed/no_payload_on_failure_error.rb +8 -3
- data/lib/typed/result.rb +1 -1
- data/sorbet/rbi/gems/{ast@2.4.2.rbi → ast@2.4.3.rbi} +3 -3
- data/sorbet/rbi/gems/benchmark@0.4.1.rbi +619 -0
- data/sorbet/rbi/gems/date@3.4.1.rbi +75 -0
- data/sorbet/rbi/gems/erb@5.0.1.rbi +878 -0
- data/sorbet/rbi/gems/{erubi@1.13.0.rbi → erubi@1.13.1.rbi} +14 -9
- data/sorbet/rbi/gems/{json@2.7.5.rbi → json@2.12.2.rbi} +654 -232
- data/sorbet/rbi/gems/{language_server-protocol@3.17.0.3.rbi → language_server-protocol@3.17.0.5.rbi} +11 -5
- data/sorbet/rbi/gems/logger@1.7.0.rbi +963 -0
- data/sorbet/rbi/gems/{minitest@5.25.1.rbi → minitest@5.25.5.rbi} +227 -220
- data/sorbet/rbi/gems/{parser@3.3.5.1.rbi → parser@3.3.8.0.rbi} +215 -199
- data/sorbet/rbi/gems/pp@0.6.2.rbi +368 -0
- data/sorbet/rbi/gems/prettyprint@0.2.0.rbi +477 -0
- data/sorbet/rbi/gems/{prism@1.2.0.rbi → prism@1.4.0.rbi} +6569 -3922
- data/sorbet/rbi/gems/{psych@5.1.2.rbi → psych@5.2.6.rbi} +973 -236
- data/sorbet/rbi/gems/{rake@13.2.1.rbi → rake@13.3.0.rbi} +15 -12
- data/sorbet/rbi/gems/{rbi@0.2.1.rbi → rbi@0.3.6.rbi} +3340 -982
- data/sorbet/rbi/gems/rbs@3.9.4.rbi +6976 -0
- data/sorbet/rbi/gems/{regexp_parser@2.9.2.rbi → regexp_parser@2.10.0.rbi} +193 -170
- data/sorbet/rbi/gems/rexml@3.4.1.rbi +5243 -0
- data/sorbet/rbi/gems/{rubocop-ast@1.33.1.rbi → rubocop-ast@1.45.1.rbi} +1069 -826
- data/sorbet/rbi/gems/{rubocop@1.66.1.rbi → rubocop@1.75.8.rbi} +7880 -4054
- data/sorbet/rbi/gems/{spoom@1.5.0.rbi → spoom@1.6.3.rbi} +3013 -960
- data/sorbet/rbi/gems/{standard@1.41.1.rbi → standard@1.50.0.rbi} +68 -59
- data/sorbet/rbi/gems/{tapioca@0.16.3.rbi → tapioca@0.16.11.rbi} +273 -248
- data/sorbet/rbi/gems/unicode-display_width@3.1.4.rbi +132 -0
- data/sorbet/rbi/gems/unicode-emoji@4.0.4.rbi +251 -0
- metadata +38 -34
- data/.tool-versions +0 -1
- data/sorbet/rbi/gems/unicode-display_width@2.6.0.rbi +0 -66
- /data/sorbet/rbi/gems/{io-console@0.7.2.rbi → io-console@0.8.0.rbi} +0 -0
- /data/sorbet/rbi/gems/{parallel@1.26.3.rbi → parallel@1.27.0.rbi} +0 -0
- /data/sorbet/rbi/gems/{reline@0.5.10.rbi → reline@0.6.1.rbi} +0 -0
- /data/sorbet/rbi/gems/{rubocop-performance@1.22.1.rbi → rubocop-performance@1.25.0.rbi} +0 -0
- /data/sorbet/rbi/gems/{rubocop-sorbet@0.7.8.rbi → rubocop-sorbet@0.9.0.rbi} +0 -0
- /data/sorbet/rbi/gems/{standard-performance@1.5.0.rbi → standard-performance@1.8.0.rbi} +0 -0
- /data/sorbet/rbi/gems/{standard-sorbet@0.0.2.rbi → standard-sorbet@0.0.3.rbi} +0 -0
- /data/sorbet/rbi/gems/{stringio@3.1.1.rbi → stringio@3.1.7.rbi} +0 -0
@@ -9,7 +9,7 @@
|
|
9
9
|
#
|
10
10
|
# Some top level Constants.
|
11
11
|
#
|
12
|
-
# source://rake//lib/rake.rb#
|
12
|
+
# source://rake//lib/rake.rb#67
|
13
13
|
FileList = Rake::FileList
|
14
14
|
|
15
15
|
# --
|
@@ -196,7 +196,7 @@ class Rake::Application
|
|
196
196
|
|
197
197
|
# Add a file to the list of files to be imported.
|
198
198
|
#
|
199
|
-
# source://rake//lib/rake/application.rb#
|
199
|
+
# source://rake//lib/rake/application.rb#800
|
200
200
|
def add_import(fn); end
|
201
201
|
|
202
202
|
# Add a loader to handle imported files ending in the extension
|
@@ -214,13 +214,13 @@ class Rake::Application
|
|
214
214
|
# recognised command-line options, which OptionParser.parse will
|
215
215
|
# have taken care of already.
|
216
216
|
#
|
217
|
-
# source://rake//lib/rake/application.rb#
|
217
|
+
# source://rake//lib/rake/application.rb#781
|
218
218
|
def collect_command_line_tasks(args); end
|
219
219
|
|
220
220
|
# Default task name ("default").
|
221
221
|
# (May be overridden by subclasses)
|
222
222
|
#
|
223
|
-
# source://rake//lib/rake/application.rb#
|
223
|
+
# source://rake//lib/rake/application.rb#795
|
224
224
|
def default_task_name; end
|
225
225
|
|
226
226
|
# Warn about deprecated usage.
|
@@ -311,7 +311,7 @@ class Rake::Application
|
|
311
311
|
|
312
312
|
# Load the pending list of imported files.
|
313
313
|
#
|
314
|
-
# source://rake//lib/rake/application.rb#
|
314
|
+
# source://rake//lib/rake/application.rb#805
|
315
315
|
def load_imports; end
|
316
316
|
|
317
317
|
# Find the rakefile and then load it and any pending imports.
|
@@ -351,7 +351,7 @@ class Rake::Application
|
|
351
351
|
# source://rake//lib/rake/application.rb#30
|
352
352
|
def rakefile; end
|
353
353
|
|
354
|
-
# source://rake//lib/rake/application.rb#
|
354
|
+
# source://rake//lib/rake/application.rb#821
|
355
355
|
def rakefile_location(backtrace = T.unsafe(nil)); end
|
356
356
|
|
357
357
|
# source://rake//lib/rake/application.rb#725
|
@@ -376,7 +376,7 @@ class Rake::Application
|
|
376
376
|
# source://rake//lib/rake/application.rb#144
|
377
377
|
def run_with_threads; end
|
378
378
|
|
379
|
-
# source://rake//lib/rake/application.rb#
|
379
|
+
# source://rake//lib/rake/application.rb#830
|
380
380
|
def set_default_options; end
|
381
381
|
|
382
382
|
# Provide standard exception handling for the given block.
|
@@ -483,7 +483,7 @@ class Rake::Application
|
|
483
483
|
# source://rake//lib/rake/application.rb#423
|
484
484
|
def sort_options(options); end
|
485
485
|
|
486
|
-
# source://rake//lib/rake/application.rb#
|
486
|
+
# source://rake//lib/rake/application.rb#767
|
487
487
|
def standard_system_dir; end
|
488
488
|
end
|
489
489
|
|
@@ -834,7 +834,7 @@ end
|
|
834
834
|
# source://rake//lib/rake/early_time.rb#21
|
835
835
|
Rake::EARLY = T.let(T.unsafe(nil), Rake::EarlyTime)
|
836
836
|
|
837
|
-
# source://rake//lib/rake/task_arguments.rb#
|
837
|
+
# source://rake//lib/rake/task_arguments.rb#112
|
838
838
|
Rake::EMPTY_TASK_ARGS = T.let(T.unsafe(nil), Rake::TaskArguments)
|
839
839
|
|
840
840
|
# EarlyTime is a fake timestamp that occurs _before_ any other time value.
|
@@ -2573,6 +2573,9 @@ class Rake::TaskArguments
|
|
2573
2573
|
# source://rake//lib/rake/task_arguments.rb#44
|
2574
2574
|
def [](index); end
|
2575
2575
|
|
2576
|
+
# source://rake//lib/rake/task_arguments.rb#97
|
2577
|
+
def deconstruct_keys(keys); end
|
2578
|
+
|
2576
2579
|
# Enumerates the arguments and their values
|
2577
2580
|
#
|
2578
2581
|
# source://rake//lib/rake/task_arguments.rb#56
|
@@ -2646,7 +2649,7 @@ class Rake::TaskArguments
|
|
2646
2649
|
|
2647
2650
|
protected
|
2648
2651
|
|
2649
|
-
# source://rake//lib/rake/task_arguments.rb#
|
2652
|
+
# source://rake//lib/rake/task_arguments.rb#103
|
2650
2653
|
def lookup(name); end
|
2651
2654
|
end
|
2652
2655
|
|
@@ -2780,7 +2783,7 @@ module Rake::TaskManager
|
|
2780
2783
|
# Return the current description, clearing it in the process.
|
2781
2784
|
#
|
2782
2785
|
# source://rake//lib/rake/task_manager.rb#319
|
2783
|
-
def get_description
|
2786
|
+
def get_description; end
|
2784
2787
|
|
2785
2788
|
# Lookup the task name
|
2786
2789
|
#
|
@@ -3002,7 +3005,7 @@ end
|
|
3002
3005
|
# source://rake//lib/rake/win32.rb#11
|
3003
3006
|
class Rake::Win32::Win32HomeError < ::RuntimeError; end
|
3004
3007
|
|
3005
|
-
# source://rake//lib/rake.rb#
|
3008
|
+
# source://rake//lib/rake.rb#68
|
3006
3009
|
RakeFileUtils = Rake::FileUtilsExt
|
3007
3010
|
|
3008
3011
|
# source://rake//lib/rake/ext/string.rb#4
|