yard-sorbet 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +9 -0
  3. data/.gitignore +40 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +47 -0
  6. data/.travis.yml +7 -0
  7. data/CHANGELOG.md +10 -0
  8. data/Gemfile +14 -0
  9. data/LICENSE +201 -0
  10. data/README.md +17 -0
  11. data/Rakefile +11 -0
  12. data/lib/yard-sorbet.rb +12 -0
  13. data/lib/yard-sorbet/directives.rb +24 -0
  14. data/lib/yard-sorbet/sig_handler.rb +131 -0
  15. data/lib/yard-sorbet/sig_to_yard.rb +91 -0
  16. data/lib/yard-sorbet/struct_handler.rb +94 -0
  17. data/lib/yard-sorbet/version.rb +6 -0
  18. data/sorbet/config +2 -0
  19. data/sorbet/rbi/gems/ast.rbi +47 -0
  20. data/sorbet/rbi/gems/byebug.rbi +1039 -0
  21. data/sorbet/rbi/gems/codecov.rbi +19 -0
  22. data/sorbet/rbi/gems/coderay.rbi +91 -0
  23. data/sorbet/rbi/gems/docile.rbi +31 -0
  24. data/sorbet/rbi/gems/jaro_winkler.rbi +14 -0
  25. data/sorbet/rbi/gems/method_source.rbi +63 -0
  26. data/sorbet/rbi/gems/parallel.rbi +81 -0
  27. data/sorbet/rbi/gems/parser.rbi +920 -0
  28. data/sorbet/rbi/gems/pry-byebug.rbi +149 -0
  29. data/sorbet/rbi/gems/pry.rbi +1964 -0
  30. data/sorbet/rbi/gems/rainbow.rbi +117 -0
  31. data/sorbet/rbi/gems/rake.rbi +635 -0
  32. data/sorbet/rbi/gems/rspec-core.rbi +1686 -0
  33. data/sorbet/rbi/gems/rspec-expectations.rbi +387 -0
  34. data/sorbet/rbi/gems/rspec-mocks.rbi +819 -0
  35. data/sorbet/rbi/gems/rspec-support.rbi +270 -0
  36. data/sorbet/rbi/gems/rspec.rbi +14 -0
  37. data/sorbet/rbi/gems/rubocop-rspec.rbi +889 -0
  38. data/sorbet/rbi/gems/rubocop.rbi +7139 -0
  39. data/sorbet/rbi/gems/ruby-progressbar.rbi +304 -0
  40. data/sorbet/rbi/gems/simplecov-html.rbi +30 -0
  41. data/sorbet/rbi/gems/simplecov.rbi +225 -0
  42. data/sorbet/rbi/gems/site_ruby.rbi +114 -0
  43. data/sorbet/rbi/gems/unicode-display_width.rbi +16 -0
  44. data/sorbet/rbi/gems/yard.rbi +1181 -0
  45. data/sorbet/rbi/hidden-definitions/errors.txt +3045 -0
  46. data/sorbet/rbi/hidden-definitions/hidden.rbi +4469 -0
  47. data/sorbet/rbi/sorbet-typed/lib/bundler/all/bundler.rbi +8684 -0
  48. data/sorbet/rbi/sorbet-typed/lib/ruby/all/gem.rbi +4222 -0
  49. data/sorbet/rbi/sorbet-typed/lib/ruby/all/open3.rbi +111 -0
  50. data/sorbet/rbi/sorbet-typed/lib/ruby/all/resolv.rbi +543 -0
  51. data/spec/data/sig_handler.rb.txt +196 -0
  52. data/spec/data/struct_handler.rb.txt +25 -0
  53. data/spec/spec_helper.rb +111 -0
  54. data/spec/yard_sorbet/sig_handler_spec.rb +233 -0
  55. data/spec/yard_sorbet/struct_handler_spec.rb +48 -0
  56. data/yard-sorbet.gemspec +27 -0
  57. metadata +159 -6
@@ -0,0 +1,117 @@
1
+ # This file is autogenerated. Do not edit it by hand. Regenerate it with:
2
+ # srb rbi gems
3
+
4
+ # typed: strong
5
+ #
6
+ # If you would like to make changes to this file, great! Please create the gem's shim here:
7
+ #
8
+ # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rainbow/all/rainbow.rbi
9
+ #
10
+ # rainbow-3.0.0
11
+ module Rainbow
12
+ def self.enabled; end
13
+ def self.enabled=(value); end
14
+ def self.global; end
15
+ def self.new; end
16
+ def self.uncolor(string); end
17
+ end
18
+ class Rainbow::StringUtils
19
+ def self.uncolor(string); end
20
+ def self.wrap_with_sgr(string, codes); end
21
+ end
22
+ module Rainbow::X11ColorNames
23
+ end
24
+ class Rainbow::Color
25
+ def ground; end
26
+ def self.build(ground, values); end
27
+ def self.parse_hex_color(hex); end
28
+ end
29
+ class Rainbow::Color::Indexed < Rainbow::Color
30
+ def codes; end
31
+ def initialize(ground, num); end
32
+ def num; end
33
+ end
34
+ class Rainbow::Color::Named < Rainbow::Color::Indexed
35
+ def initialize(ground, name); end
36
+ def self.color_names; end
37
+ def self.valid_names; end
38
+ end
39
+ class Rainbow::Color::RGB < Rainbow::Color::Indexed
40
+ def b; end
41
+ def code_from_rgb; end
42
+ def codes; end
43
+ def g; end
44
+ def initialize(ground, *values); end
45
+ def r; end
46
+ def self.to_ansi_domain(value); end
47
+ end
48
+ class Rainbow::Color::X11Named < Rainbow::Color::RGB
49
+ def initialize(ground, name); end
50
+ def self.color_names; end
51
+ def self.valid_names; end
52
+ include Rainbow::X11ColorNames
53
+ end
54
+ class Rainbow::Presenter < String
55
+ def background(*values); end
56
+ def bg(*values); end
57
+ def black; end
58
+ def blink; end
59
+ def blue; end
60
+ def bold; end
61
+ def bright; end
62
+ def color(*values); end
63
+ def cyan; end
64
+ def dark; end
65
+ def faint; end
66
+ def fg(*values); end
67
+ def foreground(*values); end
68
+ def green; end
69
+ def hide; end
70
+ def inverse; end
71
+ def italic; end
72
+ def magenta; end
73
+ def method_missing(method_name, *args); end
74
+ def red; end
75
+ def reset; end
76
+ def respond_to_missing?(method_name, *args); end
77
+ def underline; end
78
+ def white; end
79
+ def wrap_with_sgr(codes); end
80
+ def yellow; end
81
+ end
82
+ class Rainbow::NullPresenter < String
83
+ def background(*_values); end
84
+ def bg(*_values); end
85
+ def black; end
86
+ def blink; end
87
+ def blue; end
88
+ def bold; end
89
+ def bright; end
90
+ def color(*_values); end
91
+ def cyan; end
92
+ def dark; end
93
+ def faint; end
94
+ def fg(*_values); end
95
+ def foreground(*_values); end
96
+ def green; end
97
+ def hide; end
98
+ def inverse; end
99
+ def italic; end
100
+ def magenta; end
101
+ def method_missing(method_name, *args); end
102
+ def red; end
103
+ def reset; end
104
+ def respond_to_missing?(method_name, *args); end
105
+ def underline; end
106
+ def white; end
107
+ def yellow; end
108
+ end
109
+ class Rainbow::Wrapper
110
+ def enabled; end
111
+ def enabled=(arg0); end
112
+ def initialize(enabled = nil); end
113
+ def wrap(string); end
114
+ end
115
+ class Object < BasicObject
116
+ def Rainbow(string); end
117
+ end
@@ -0,0 +1,635 @@
1
+ # This file is autogenerated. Do not edit it by hand. Regenerate it with:
2
+ # srb rbi gems
3
+
4
+ # typed: true
5
+ #
6
+ # If you would like to make changes to this file, great! Please create the gem's shim here:
7
+ #
8
+ # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rake/all/rake.rbi
9
+ #
10
+ # rake-13.0.1
11
+ module Rake
12
+ def self.add_rakelib(*files); end
13
+ def self.application; end
14
+ def self.application=(app); end
15
+ def self.each_dir_parent(dir); end
16
+ def self.from_pathname(path); end
17
+ def self.load_rakefile(path); end
18
+ def self.original_dir; end
19
+ def self.suggested_thread_count; end
20
+ def self.with_application(block_application = nil); end
21
+ extend Rake::FileUtilsExt
22
+ end
23
+ module Rake::Version
24
+ end
25
+ class Module
26
+ def rake_extension(method); end
27
+ end
28
+ class String
29
+ def ext(newext = nil); end
30
+ def pathmap(spec = nil, &block); end
31
+ def pathmap_explode; end
32
+ def pathmap_partial(n); end
33
+ def pathmap_replace(patterns, &block); end
34
+ end
35
+ module Rake::Win32
36
+ def self.normalize(path); end
37
+ def self.win32_system_dir; end
38
+ def self.windows?; end
39
+ end
40
+ class Rake::Win32::Win32HomeError < RuntimeError
41
+ end
42
+ class Rake::LinkedList
43
+ def ==(other); end
44
+ def conj(item); end
45
+ def each; end
46
+ def empty?; end
47
+ def head; end
48
+ def initialize(head, tail = nil); end
49
+ def inspect; end
50
+ def self.cons(head, tail); end
51
+ def self.empty; end
52
+ def self.make(*args); end
53
+ def tail; end
54
+ def to_s; end
55
+ include Enumerable
56
+ end
57
+ class Rake::LinkedList::EmptyLinkedList < Rake::LinkedList
58
+ def empty?; end
59
+ def initialize; end
60
+ def self.cons(head, tail); end
61
+ end
62
+ class Rake::CpuCounter
63
+ def count; end
64
+ def count_with_default(default = nil); end
65
+ def self.count; end
66
+ end
67
+ class Rake::Scope < Rake::LinkedList
68
+ def path; end
69
+ def path_with_task_name(task_name); end
70
+ def trim(n); end
71
+ end
72
+ class Rake::Scope::EmptyScope < Rake::LinkedList::EmptyLinkedList
73
+ def path; end
74
+ def path_with_task_name(task_name); end
75
+ end
76
+ class Rake::TaskArgumentError < ArgumentError
77
+ end
78
+ class Rake::RuleRecursionOverflowError < StandardError
79
+ def add_target(target); end
80
+ def initialize(*args); end
81
+ def message; end
82
+ end
83
+ module Rake::TaskManager
84
+ def [](task_name, scopes = nil); end
85
+ def add_location(task); end
86
+ def attempt_rule(task_name, task_pattern, args, extensions, block, level); end
87
+ def clear; end
88
+ def create_rule(*args, &block); end
89
+ def current_scope; end
90
+ def define_task(task_class, *args, &block); end
91
+ def enhance_with_matching_rule(task_name, level = nil); end
92
+ def find_location; end
93
+ def generate_did_you_mean_suggestions(task_name); end
94
+ def generate_message_for_undefined_task(task_name); end
95
+ def generate_name; end
96
+ def get_description(task); end
97
+ def in_namespace(name); end
98
+ def initialize; end
99
+ def intern(task_class, task_name); end
100
+ def last_description; end
101
+ def last_description=(arg0); end
102
+ def lookup(task_name, initial_scope = nil); end
103
+ def lookup_in_scope(name, scope); end
104
+ def make_sources(task_name, task_pattern, extensions); end
105
+ def resolve_args(args); end
106
+ def resolve_args_with_dependencies(args, hash); end
107
+ def resolve_args_without_dependencies(args); end
108
+ def self.record_task_metadata; end
109
+ def self.record_task_metadata=(arg0); end
110
+ def synthesize_file_task(task_name); end
111
+ def tasks; end
112
+ def tasks_in_scope(scope); end
113
+ def trace_rule(level, message); end
114
+ end
115
+ module Rake::Cloneable
116
+ def initialize_copy(source); end
117
+ end
118
+ module FileUtils
119
+ def create_shell_runner(cmd); end
120
+ def ruby(*args, **options, &block); end
121
+ def safe_ln(*args, **options); end
122
+ def set_verbose_option(options); end
123
+ def sh(*cmd, &block); end
124
+ def sh_show_command(cmd); end
125
+ def split_all(path); end
126
+ end
127
+ module Rake::FileUtilsExt
128
+ def cd(*args, **options, &block); end
129
+ def chdir(*args, **options, &block); end
130
+ def chmod(*args, **options, &block); end
131
+ def chmod_R(*args, **options, &block); end
132
+ def chown(*args, **options, &block); end
133
+ def chown_R(*args, **options, &block); end
134
+ def copy(*args, **options, &block); end
135
+ def cp(*args, **options, &block); end
136
+ def cp_r(*args, **options, &block); end
137
+ def install(*args, **options, &block); end
138
+ def link(*args, **options, &block); end
139
+ def ln(*args, **options, &block); end
140
+ def ln_s(*args, **options, &block); end
141
+ def ln_sf(*args, **options, &block); end
142
+ def makedirs(*args, **options, &block); end
143
+ def mkdir(*args, **options, &block); end
144
+ def mkdir_p(*args, **options, &block); end
145
+ def mkpath(*args, **options, &block); end
146
+ def move(*args, **options, &block); end
147
+ def mv(*args, **options, &block); end
148
+ def nowrite(value = nil); end
149
+ def rake_check_options(options, *optdecl); end
150
+ def rake_output_message(message); end
151
+ def remove(*args, **options, &block); end
152
+ def rm(*args, **options, &block); end
153
+ def rm_f(*args, **options, &block); end
154
+ def rm_r(*args, **options, &block); end
155
+ def rm_rf(*args, **options, &block); end
156
+ def rmdir(*args, **options, &block); end
157
+ def rmtree(*args, **options, &block); end
158
+ def safe_unlink(*args, **options, &block); end
159
+ def self.nowrite_flag; end
160
+ def self.nowrite_flag=(arg0); end
161
+ def self.verbose_flag; end
162
+ def self.verbose_flag=(arg0); end
163
+ def symlink(*args, **options, &block); end
164
+ def touch(*args, **options, &block); end
165
+ def verbose(value = nil); end
166
+ def when_writing(msg = nil); end
167
+ extend Rake::FileUtilsExt
168
+ include FileUtils
169
+ end
170
+ class Rake::FileList
171
+ def &(*args, &block); end
172
+ def *(other); end
173
+ def +(*args, &block); end
174
+ def -(*args, &block); end
175
+ def <<(obj); end
176
+ def <=>(*args, &block); end
177
+ def ==(array); end
178
+ def [](*args, &block); end
179
+ def []=(*args, &block); end
180
+ def add(*filenames); end
181
+ def add_matching(pattern); end
182
+ def all?(*args, &block); end
183
+ def any?(*args, &block); end
184
+ def append(*args, &block); end
185
+ def assoc(*args, &block); end
186
+ def at(*args, &block); end
187
+ def bsearch(*args, &block); end
188
+ def bsearch_index(*args, &block); end
189
+ def chunk(*args, &block); end
190
+ def chunk_while(*args, &block); end
191
+ def clear(*args, &block); end
192
+ def clear_exclude; end
193
+ def collect!(*args, &block); end
194
+ def collect(*args, &block); end
195
+ def collect_concat(*args, &block); end
196
+ def combination(*args, &block); end
197
+ def compact!(*args, &block); end
198
+ def compact(*args, &block); end
199
+ def concat(*args, &block); end
200
+ def count(*args, &block); end
201
+ def cycle(*args, &block); end
202
+ def delete(*args, &block); end
203
+ def delete_at(*args, &block); end
204
+ def delete_if(*args, &block); end
205
+ def detect(*args, &block); end
206
+ def dig(*args, &block); end
207
+ def drop(*args, &block); end
208
+ def drop_while(*args, &block); end
209
+ def each(*args, &block); end
210
+ def each_cons(*args, &block); end
211
+ def each_entry(*args, &block); end
212
+ def each_index(*args, &block); end
213
+ def each_slice(*args, &block); end
214
+ def each_with_index(*args, &block); end
215
+ def each_with_object(*args, &block); end
216
+ def egrep(pattern, *options); end
217
+ def empty?(*args, &block); end
218
+ def entries(*args, &block); end
219
+ def exclude(*patterns, &block); end
220
+ def excluded_from_list?(fn); end
221
+ def existing!; end
222
+ def existing; end
223
+ def ext(newext = nil); end
224
+ def fetch(*args, &block); end
225
+ def fill(*args, &block); end
226
+ def find(*args, &block); end
227
+ def find_all(*args, &block); end
228
+ def find_index(*args, &block); end
229
+ def first(*args, &block); end
230
+ def flat_map(*args, &block); end
231
+ def flatten!(*args, &block); end
232
+ def flatten(*args, &block); end
233
+ def grep(*args, &block); end
234
+ def grep_v(*args, &block); end
235
+ def group_by(*args, &block); end
236
+ def gsub!(pat, rep); end
237
+ def gsub(pat, rep); end
238
+ def import(array); end
239
+ def include(*filenames); end
240
+ def include?(*args, &block); end
241
+ def index(*args, &block); end
242
+ def initialize(*patterns); end
243
+ def inject(*args, &block); end
244
+ def insert(*args, &block); end
245
+ def inspect(*args, &block); end
246
+ def is_a?(klass); end
247
+ def join(*args, &block); end
248
+ def keep_if(*args, &block); end
249
+ def kind_of?(klass); end
250
+ def last(*args, &block); end
251
+ def lazy(*args, &block); end
252
+ def length(*args, &block); end
253
+ def map!(*args, &block); end
254
+ def map(*args, &block); end
255
+ def max(*args, &block); end
256
+ def max_by(*args, &block); end
257
+ def member?(*args, &block); end
258
+ def min(*args, &block); end
259
+ def min_by(*args, &block); end
260
+ def minmax(*args, &block); end
261
+ def minmax_by(*args, &block); end
262
+ def none?(*args, &block); end
263
+ def one?(*args, &block); end
264
+ def pack(*args, &block); end
265
+ def partition(&block); end
266
+ def pathmap(spec = nil, &block); end
267
+ def permutation(*args, &block); end
268
+ def pop(*args, &block); end
269
+ def prepend(*args, &block); end
270
+ def product(*args, &block); end
271
+ def push(*args, &block); end
272
+ def rassoc(*args, &block); end
273
+ def reduce(*args, &block); end
274
+ def reject!(*args, &block); end
275
+ def reject(*args, &block); end
276
+ def repeated_combination(*args, &block); end
277
+ def repeated_permutation(*args, &block); end
278
+ def replace(*args, &block); end
279
+ def resolve; end
280
+ def resolve_add(fn); end
281
+ def resolve_exclude; end
282
+ def reverse!(*args, &block); end
283
+ def reverse(*args, &block); end
284
+ def reverse_each(*args, &block); end
285
+ def rindex(*args, &block); end
286
+ def rotate!(*args, &block); end
287
+ def rotate(*args, &block); end
288
+ def sample(*args, &block); end
289
+ def select!(*args, &block); end
290
+ def select(*args, &block); end
291
+ def self.[](*args); end
292
+ def self.glob(pattern, *args); end
293
+ def shelljoin(*args, &block); end
294
+ def shift(*args, &block); end
295
+ def shuffle!(*args, &block); end
296
+ def shuffle(*args, &block); end
297
+ def size(*args, &block); end
298
+ def slice!(*args, &block); end
299
+ def slice(*args, &block); end
300
+ def slice_after(*args, &block); end
301
+ def slice_before(*args, &block); end
302
+ def slice_when(*args, &block); end
303
+ def sort!(*args, &block); end
304
+ def sort(*args, &block); end
305
+ def sort_by!(*args, &block); end
306
+ def sort_by(*args, &block); end
307
+ def sub!(pat, rep); end
308
+ def sub(pat, rep); end
309
+ def sum(*args, &block); end
310
+ def take(*args, &block); end
311
+ def take_while(*args, &block); end
312
+ def to_a; end
313
+ def to_ary; end
314
+ def to_h(*args, &block); end
315
+ def to_s; end
316
+ def to_set(*args, &block); end
317
+ def transpose(*args, &block); end
318
+ def uniq!(*args, &block); end
319
+ def uniq(*args, &block); end
320
+ def unshift(*args, &block); end
321
+ def values_at(*args, &block); end
322
+ def zip(*args, &block); end
323
+ def |(*args, &block); end
324
+ include Rake::Cloneable
325
+ end
326
+ class Rake::Promise
327
+ def chore; end
328
+ def complete?; end
329
+ def discard; end
330
+ def error?; end
331
+ def initialize(args, &block); end
332
+ def recorder; end
333
+ def recorder=(arg0); end
334
+ def result?; end
335
+ def stat(*args); end
336
+ def value; end
337
+ def work; end
338
+ end
339
+ class Rake::ThreadPool
340
+ def __queue__; end
341
+ def future(*args, &block); end
342
+ def gather_history; end
343
+ def history; end
344
+ def initialize(thread_count); end
345
+ def join; end
346
+ def process_queue_item; end
347
+ def safe_thread_count; end
348
+ def start_thread; end
349
+ def stat(event, data = nil); end
350
+ def statistics; end
351
+ end
352
+ module Rake::PrivateReader
353
+ def self.included(base); end
354
+ end
355
+ module Rake::PrivateReader::ClassMethods
356
+ def private_reader(*names); end
357
+ end
358
+ class Rake::ThreadHistoryDisplay
359
+ def initialize(stats); end
360
+ def items; end
361
+ def rename(hash, key, renames); end
362
+ def show; end
363
+ def stats; end
364
+ def threads; end
365
+ extend Rake::PrivateReader::ClassMethods
366
+ include Rake::PrivateReader
367
+ end
368
+ module Rake::TraceOutput
369
+ def trace_on(out, *strings); end
370
+ end
371
+ class Rake::CommandLineOptionError < StandardError
372
+ end
373
+ class Rake::Application
374
+ def add_import(fn); end
375
+ def add_loader(ext, loader); end
376
+ def collect_command_line_tasks(args); end
377
+ def default_task_name; end
378
+ def deprecate(old_usage, new_usage, call_site); end
379
+ def display_cause_details(ex); end
380
+ def display_error_message(ex); end
381
+ def display_exception_backtrace(ex); end
382
+ def display_exception_details(ex); end
383
+ def display_exception_details_seen; end
384
+ def display_exception_message_details(ex); end
385
+ def display_prerequisites; end
386
+ def display_tasks_and_comments; end
387
+ def dynamic_width; end
388
+ def dynamic_width_stty; end
389
+ def dynamic_width_tput; end
390
+ def exit_because_of_exception(ex); end
391
+ def find_rakefile_location; end
392
+ def glob(path, &block); end
393
+ def handle_options(argv); end
394
+ def has_cause?(ex); end
395
+ def has_chain?(exception); end
396
+ def have_rakefile; end
397
+ def init(app_name = nil, argv = nil); end
398
+ def initialize; end
399
+ def invoke_task(task_string); end
400
+ def load_imports; end
401
+ def load_rakefile; end
402
+ def name; end
403
+ def options; end
404
+ def original_dir; end
405
+ def parse_task_string(string); end
406
+ def print_rakefile_directory(location); end
407
+ def rake_require(file_name, paths = nil, loaded = nil); end
408
+ def rakefile; end
409
+ def rakefile_location(backtrace = nil); end
410
+ def raw_load_rakefile; end
411
+ def run(argv = nil); end
412
+ def run_with_threads; end
413
+ def select_tasks_to_show(options, show_tasks, value); end
414
+ def select_trace_output(options, trace_option, value); end
415
+ def set_default_options; end
416
+ def sort_options(options); end
417
+ def standard_exception_handling; end
418
+ def standard_rake_options; end
419
+ def standard_system_dir; end
420
+ def system_dir; end
421
+ def terminal_columns; end
422
+ def terminal_columns=(arg0); end
423
+ def terminal_width; end
424
+ def thread_pool; end
425
+ def top_level; end
426
+ def top_level_tasks; end
427
+ def trace(*strings); end
428
+ def truncate(string, width); end
429
+ def truncate_output?; end
430
+ def tty_output=(arg0); end
431
+ def tty_output?; end
432
+ def unix?; end
433
+ def windows?; end
434
+ include Rake::TaskManager
435
+ include Rake::TraceOutput
436
+ end
437
+ class Rake::PseudoStatus
438
+ def >>(n); end
439
+ def exited?; end
440
+ def exitstatus; end
441
+ def initialize(code = nil); end
442
+ def stopped?; end
443
+ def to_i; end
444
+ end
445
+ class Rake::TaskArguments
446
+ def [](index); end
447
+ def each(&block); end
448
+ def extras; end
449
+ def fetch(*args, &block); end
450
+ def has_key?(key); end
451
+ def initialize(names, values, parent = nil); end
452
+ def inspect; end
453
+ def key?(key); end
454
+ def lookup(name); end
455
+ def method_missing(sym, *args); end
456
+ def names; end
457
+ def new_scope(names); end
458
+ def to_a; end
459
+ def to_hash; end
460
+ def to_s; end
461
+ def values_at(*keys); end
462
+ def with_defaults(defaults); end
463
+ include Enumerable
464
+ end
465
+ class Rake::InvocationChain < Rake::LinkedList
466
+ def append(invocation); end
467
+ def member?(invocation); end
468
+ def prefix; end
469
+ def self.append(invocation, chain); end
470
+ def to_s; end
471
+ end
472
+ class Rake::InvocationChain::EmptyInvocationChain < Rake::LinkedList::EmptyLinkedList
473
+ def append(invocation); end
474
+ def member?(obj); end
475
+ def to_s; end
476
+ end
477
+ module Rake::InvocationExceptionMixin
478
+ def chain; end
479
+ def chain=(value); end
480
+ end
481
+ class Rake::Task
482
+ def actions; end
483
+ def add_chain_to(exception, new_chain); end
484
+ def add_comment(comment); end
485
+ def add_description(description); end
486
+ def all_prerequisite_tasks; end
487
+ def already_invoked; end
488
+ def application; end
489
+ def application=(arg0); end
490
+ def arg_description; end
491
+ def arg_names; end
492
+ def clear; end
493
+ def clear_actions; end
494
+ def clear_args; end
495
+ def clear_comments; end
496
+ def clear_prerequisites; end
497
+ def collect_prerequisites(seen); end
498
+ def comment; end
499
+ def comment=(comment); end
500
+ def enhance(deps = nil, &block); end
501
+ def execute(args = nil); end
502
+ def first_sentence(string); end
503
+ def format_trace_flags; end
504
+ def full_comment; end
505
+ def initialize(task_name, app); end
506
+ def inspect; end
507
+ def investigation; end
508
+ def invoke(*args); end
509
+ def invoke_prerequisites(task_args, invocation_chain); end
510
+ def invoke_prerequisites_concurrently(task_args, invocation_chain); end
511
+ def invoke_with_call_chain(task_args, invocation_chain); end
512
+ def locations; end
513
+ def lookup_prerequisite(prerequisite_name); end
514
+ def name; end
515
+ def name_with_args; end
516
+ def needed?; end
517
+ def order_only_prerequisites; end
518
+ def prereqs; end
519
+ def prerequisite_tasks; end
520
+ def prerequisites; end
521
+ def reenable; end
522
+ def scope; end
523
+ def self.[](task_name); end
524
+ def self.clear; end
525
+ def self.create_rule(*args, &block); end
526
+ def self.define_task(*args, &block); end
527
+ def self.format_deps(deps); end
528
+ def self.scope_name(scope, task_name); end
529
+ def self.task_defined?(task_name); end
530
+ def self.tasks; end
531
+ def set_arg_names(args); end
532
+ def source; end
533
+ def sources; end
534
+ def sources=(arg0); end
535
+ def timestamp; end
536
+ def to_s; end
537
+ def transform_comments(separator, &block); end
538
+ def |(deps); end
539
+ end
540
+ class Rake::EarlyTime
541
+ def <=>(other); end
542
+ def self.allocate; end
543
+ def self.instance; end
544
+ def self.new(*arg0); end
545
+ def to_s; end
546
+ extend Singleton::SingletonClassMethods
547
+ include Comparable
548
+ include Singleton
549
+ end
550
+ class Rake::FileTask < Rake::Task
551
+ def needed?; end
552
+ def out_of_date?(stamp); end
553
+ def self.scope_name(scope, task_name); end
554
+ def timestamp; end
555
+ end
556
+ class Rake::FileCreationTask < Rake::FileTask
557
+ def needed?; end
558
+ def timestamp; end
559
+ end
560
+ class Rake::MultiTask < Rake::Task
561
+ def invoke_prerequisites(task_args, invocation_chain); end
562
+ end
563
+ module Rake::DSL
564
+ def cd(*args, **options, &block); end
565
+ def chdir(*args, **options, &block); end
566
+ def chmod(*args, **options, &block); end
567
+ def chmod_R(*args, **options, &block); end
568
+ def chown(*args, **options, &block); end
569
+ def chown_R(*args, **options, &block); end
570
+ def copy(*args, **options, &block); end
571
+ def cp(*args, **options, &block); end
572
+ def cp_r(*args, **options, &block); end
573
+ def desc(description); end
574
+ def directory(*args, &block); end
575
+ def file(*args, &block); end
576
+ def file_create(*args, &block); end
577
+ def import(*fns); end
578
+ def install(*args, **options, &block); end
579
+ def link(*args, **options, &block); end
580
+ def ln(*args, **options, &block); end
581
+ def ln_s(*args, **options, &block); end
582
+ def ln_sf(*args, **options, &block); end
583
+ def makedirs(*args, **options, &block); end
584
+ def mkdir(*args, **options, &block); end
585
+ def mkdir_p(*args, **options, &block); end
586
+ def mkpath(*args, **options, &block); end
587
+ def move(*args, **options, &block); end
588
+ def multitask(*args, &block); end
589
+ def mv(*args, **options, &block); end
590
+ def namespace(name = nil, &block); end
591
+ def nowrite(value = nil); end
592
+ def rake_check_options(options, *optdecl); end
593
+ def rake_output_message(message); end
594
+ def remove(*args, **options, &block); end
595
+ def rm(*args, **options, &block); end
596
+ def rm_f(*args, **options, &block); end
597
+ def rm_r(*args, **options, &block); end
598
+ def rm_rf(*args, **options, &block); end
599
+ def rmdir(*args, **options, &block); end
600
+ def rmtree(*args, **options, &block); end
601
+ def ruby(*args, **options, &block); end
602
+ def rule(*args, &block); end
603
+ def safe_ln(*args, **options); end
604
+ def safe_unlink(*args, **options, &block); end
605
+ def sh(*cmd, &block); end
606
+ def split_all(path); end
607
+ def symlink(*args, **options, &block); end
608
+ def task(*args, &block); end
609
+ def touch(*args, **options, &block); end
610
+ def verbose(value = nil); end
611
+ def when_writing(msg = nil); end
612
+ include Rake::FileUtilsExt
613
+ end
614
+ class Rake::DefaultLoader
615
+ def load(fn); end
616
+ end
617
+ class Rake::LateTime
618
+ def <=>(other); end
619
+ def self.allocate; end
620
+ def self.instance; end
621
+ def self.new(*arg0); end
622
+ def to_s; end
623
+ extend Singleton::SingletonClassMethods
624
+ include Comparable
625
+ include Singleton
626
+ end
627
+ class Rake::NameSpace
628
+ def [](name); end
629
+ def initialize(task_manager, scope_list); end
630
+ def scope; end
631
+ def tasks; end
632
+ end
633
+ module Rake::Backtrace
634
+ def self.collapse(backtrace); end
635
+ end