ech_config 0.0.1

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.
Files changed (55) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/ci.yml +34 -0
  3. data/.gitignore +16 -0
  4. data/.rubocop.yml +34 -0
  5. data/.ruby-version +1 -0
  6. data/Gemfile +17 -0
  7. data/Gemfile.lock +73 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +22 -0
  10. data/Rakefile +16 -0
  11. data/ech_config.gemspec +24 -0
  12. data/example/README.md +9 -0
  13. data/example/well_known_url_client.rb +29 -0
  14. data/lib/ech_config/ech_config_contents/extensions.rb +24 -0
  15. data/lib/ech_config/ech_config_contents/hpke_key_config/hpke_kem_id.rb +24 -0
  16. data/lib/ech_config/ech_config_contents/hpke_key_config/hpke_public_key.rb +22 -0
  17. data/lib/ech_config/ech_config_contents/hpke_key_config/hpke_symmetric_cipher_suite/hpke_aead_id.rb +24 -0
  18. data/lib/ech_config/ech_config_contents/hpke_key_config/hpke_symmetric_cipher_suite/hpke_kdf_id.rb +24 -0
  19. data/lib/ech_config/ech_config_contents/hpke_key_config/hpke_symmetric_cipher_suite.rb +41 -0
  20. data/lib/ech_config/ech_config_contents/hpke_key_config.rb +82 -0
  21. data/lib/ech_config/ech_config_contents.rb +78 -0
  22. data/lib/ech_config/error.rb +11 -0
  23. data/lib/ech_config/version.rb +6 -0
  24. data/lib/ech_config.rb +62 -0
  25. data/sorbet/config +3 -0
  26. data/sorbet/rbi/gems/ast.rbi +49 -0
  27. data/sorbet/rbi/gems/byebug.rbi +1041 -0
  28. data/sorbet/rbi/gems/ech_config.rbi +22 -0
  29. data/sorbet/rbi/gems/parallel.rbi +86 -0
  30. data/sorbet/rbi/gems/parser.rbi +1477 -0
  31. data/sorbet/rbi/gems/rainbow.rbi +122 -0
  32. data/sorbet/rbi/gems/rake.rbi +646 -0
  33. data/sorbet/rbi/gems/regexp_parser.rbi +984 -0
  34. data/sorbet/rbi/gems/rexml.rbi +599 -0
  35. data/sorbet/rbi/gems/rspec-core.rbi +1947 -0
  36. data/sorbet/rbi/gems/rspec-expectations.rbi +1178 -0
  37. data/sorbet/rbi/gems/rspec-mocks.rbi +1096 -0
  38. data/sorbet/rbi/gems/rspec-support.rbi +282 -0
  39. data/sorbet/rbi/gems/rspec.rbi +15 -0
  40. data/sorbet/rbi/gems/rubocop-ast.rbi +1399 -0
  41. data/sorbet/rbi/gems/rubocop-sorbet.rbi +218 -0
  42. data/sorbet/rbi/gems/rubocop.rbi +9351 -0
  43. data/sorbet/rbi/gems/ruby-progressbar.rbi +304 -0
  44. data/sorbet/rbi/gems/unicode-display_width.rbi +23 -0
  45. data/sorbet/rbi/gems/webrick.rbi +662 -0
  46. data/sorbet/rbi/hidden-definitions/errors.txt +22890 -0
  47. data/sorbet/rbi/hidden-definitions/hidden.rbi +12118 -0
  48. data/sorbet/rbi/sorbet-typed/lib/rainbow/all/rainbow.rbi +276 -0
  49. data/sorbet/rbi/sorbet-typed/lib/rake/all/rake.rbi +645 -0
  50. data/sorbet/rbi/sorbet-typed/lib/rspec-core/all/rspec-core.rbi +24 -0
  51. data/sorbet/rbi/sorbet-typed/lib/rubocop/>=1.8/rubocop.rbi +12 -0
  52. data/sorbet/rbi/todo.rbi +6 -0
  53. data/spec/hpke_key_config_spec.rb +32 -0
  54. data/spec/spec_helper.rb +6 -0
  55. metadata +126 -0
@@ -0,0 +1,1947 @@
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/rspec-core/all/rspec-core.rbi
9
+ #
10
+ # rspec-core-3.11.0
11
+
12
+ module RSpec
13
+ def self.clear_examples; end
14
+ def self.configuration; end
15
+ def self.configuration=(arg0); end
16
+ def self.configure; end
17
+ def self.const_missing(name); end
18
+ def self.context(*args, &example_group_block); end
19
+ def self.current_example; end
20
+ def self.current_example=(example); end
21
+ def self.current_scope; end
22
+ def self.current_scope=(scope); end
23
+ def self.describe(*args, &example_group_block); end
24
+ def self.example_group(*args, &example_group_block); end
25
+ def self.fcontext(*args, &example_group_block); end
26
+ def self.fdescribe(*args, &example_group_block); end
27
+ def self.reset; end
28
+ def self.shared_context(name, *args, &block); end
29
+ def self.shared_examples(name, *args, &block); end
30
+ def self.shared_examples_for(name, *args, &block); end
31
+ def self.world; end
32
+ def self.world=(arg0); end
33
+ def self.xcontext(*args, &example_group_block); end
34
+ def self.xdescribe(*args, &example_group_block); end
35
+ extend RSpec::Core::Warnings
36
+ end
37
+ module RSpec::Core
38
+ def self.path_to_executable; end
39
+ end
40
+ module RSpec::Core::Version
41
+ end
42
+ module RSpec::Core::Warnings
43
+ def deprecate(deprecated, data = nil); end
44
+ def warn_deprecation(message, opts = nil); end
45
+ def warn_with(message, options = nil); end
46
+ end
47
+ class RSpec::Core::Set
48
+ def <<(key); end
49
+ def clear; end
50
+ def delete(key); end
51
+ def each(&block); end
52
+ def empty?; end
53
+ def include?(key); end
54
+ def initialize(array = nil); end
55
+ def merge(values); end
56
+ include Enumerable
57
+ end
58
+ module RSpec::Core::FlatMap
59
+ def flat_map(array, &block); end
60
+ def self.flat_map(array, &block); end
61
+ end
62
+ class RSpec::Core::FilterManager
63
+ def add_ids(rerun_path, scoped_ids); end
64
+ def add_location(file_path, line_numbers); end
65
+ def add_path_to_arrays_filter(filter_key, path, values); end
66
+ def empty?; end
67
+ def exclude(*args); end
68
+ def exclude_only(*args); end
69
+ def exclude_with_low_priority(*args); end
70
+ def exclusions; end
71
+ def file_scoped_include?(ex_metadata, ids, locations); end
72
+ def include(*args); end
73
+ def include_only(*args); end
74
+ def include_with_low_priority(*args); end
75
+ def inclusions; end
76
+ def initialize; end
77
+ def prune(examples); end
78
+ def prune_conditionally_filtered_examples(examples); end
79
+ end
80
+ class RSpec::Core::FilterRules
81
+ def [](key); end
82
+ def add(updated); end
83
+ def add_with_low_priority(updated); end
84
+ def clear; end
85
+ def delete(key); end
86
+ def description; end
87
+ def each_pair(&block); end
88
+ def empty?; end
89
+ def fetch(*args, &block); end
90
+ def include_example?(example); end
91
+ def initialize(rules = nil); end
92
+ def opposite; end
93
+ def opposite=(arg0); end
94
+ def rules; end
95
+ def self.build; end
96
+ def use_only(updated); end
97
+ end
98
+ class RSpec::Core::InclusionRules < RSpec::Core::FilterRules
99
+ def add(*args); end
100
+ def add_with_low_priority(*args); end
101
+ def apply_standalone_filter(updated); end
102
+ def include_example?(example); end
103
+ def is_standalone_filter?(rules); end
104
+ def replace_filters(new_rules); end
105
+ def split_file_scoped_rules; end
106
+ def standalone?; end
107
+ end
108
+ module RSpec::Core::DSL
109
+ def self.change_global_dsl(&changes); end
110
+ def self.example_group_aliases; end
111
+ def self.expose_example_group_alias(name); end
112
+ def self.expose_example_group_alias_globally(method_name); end
113
+ def self.expose_globally!; end
114
+ def self.exposed_globally?; end
115
+ def self.remove_globally!; end
116
+ def self.top_level; end
117
+ def self.top_level=(arg0); end
118
+ end
119
+ module RSpec::Core::Formatters
120
+ def self.register(formatter_class, *notifications); end
121
+ end
122
+ module RSpec::Core::Formatters::ConsoleCodes
123
+ def config_colors_to_methods; end
124
+ def console_code_for(code_or_symbol); end
125
+ def self.config_colors_to_methods; end
126
+ def self.console_code_for(code_or_symbol); end
127
+ def self.wrap(text, code_or_symbol); end
128
+ def wrap(text, code_or_symbol); end
129
+ end
130
+ class RSpec::Core::Formatters::SnippetExtractor
131
+ def beginning_line_number; end
132
+ def expression_lines; end
133
+ def expression_node; end
134
+ def expression_outmost_node?(node); end
135
+ def initialize(source, beginning_line_number, max_line_count = nil); end
136
+ def line_range_of_expression; end
137
+ def line_range_of_location_nodes_in_expression; end
138
+ def location_nodes_at_beginning_line; end
139
+ def max_line_count; end
140
+ def self.extract_expression_lines_at(file_path, beginning_line_number, max_line_count = nil); end
141
+ def self.extract_line_at(file_path, line_number); end
142
+ def self.least_indentation_from(lines); end
143
+ def self.source_from_file(path); end
144
+ def source; end
145
+ def unclosed_tokens_in_line_range(line_range); end
146
+ end
147
+ class RSpec::Core::Formatters::SnippetExtractor::NoSuchFileError < StandardError
148
+ end
149
+ class RSpec::Core::Formatters::SnippetExtractor::NoSuchLineError < StandardError
150
+ end
151
+ class RSpec::Core::Formatters::SnippetExtractor::NoExpressionAtLineError < StandardError
152
+ end
153
+ class RSpec::Core::Formatters::SyntaxHighlighter
154
+ def color_enabled_implementation; end
155
+ def highlight(lines); end
156
+ def implementation; end
157
+ def initialize(configuration); end
158
+ def self.attempt_to_add_rspec_terms_to_coderay_keywords; end
159
+ end
160
+ module RSpec::Core::Formatters::SyntaxHighlighter::CodeRayImplementation
161
+ def self.highlight_syntax(lines); end
162
+ end
163
+ module RSpec::Core::Formatters::SyntaxHighlighter::NoSyntaxHighlightingImplementation
164
+ def self.highlight_syntax(lines); end
165
+ end
166
+ class RSpec::Core::Formatters::ExceptionPresenter
167
+ def add_shared_group_lines(lines, colorizer); end
168
+ def backtrace_formatter; end
169
+ def colorized_formatted_backtrace(colorizer = nil); end
170
+ def colorized_message_lines(colorizer = nil); end
171
+ def description; end
172
+ def detail_formatter; end
173
+ def encoded_description(description); end
174
+ def encoded_string(string); end
175
+ def encoding_of(string); end
176
+ def example; end
177
+ def exception; end
178
+ def exception_backtrace; end
179
+ def exception_class_name(exception = nil); end
180
+ def exception_lines; end
181
+ def exception_message_string(exception); end
182
+ def extra_detail_formatter; end
183
+ def extra_failure_lines; end
184
+ def failure_lines; end
185
+ def failure_slash_error_lines; end
186
+ def final_exception(exception, previous = nil); end
187
+ def find_failed_line; end
188
+ def formatted_backtrace(exception = nil); end
189
+ def formatted_cause(exception); end
190
+ def formatted_message_and_backtrace(colorizer); end
191
+ def fully_formatted(failure_number, colorizer = nil); end
192
+ def fully_formatted_lines(failure_number, colorizer); end
193
+ def indent_lines(lines, failure_number); end
194
+ def initialize(exception, example, options = nil); end
195
+ def message_color; end
196
+ def message_lines; end
197
+ def read_failed_lines; end
198
+ end
199
+ class RSpec::Core::Formatters::ExceptionPresenter::Factory
200
+ def build; end
201
+ def initialize(example); end
202
+ def multiple_exception_summarizer(exception, prior_detail_formatter, color); end
203
+ def multiple_exceptions_error?(exception); end
204
+ def options; end
205
+ def pending_options; end
206
+ def sub_failure_list_formatter(exception, message_color); end
207
+ def with_multiple_error_options_as_needed(exception, options); end
208
+ end
209
+ module RSpec::Core::Formatters::ExceptionPresenter::Factory::EmptyBacktraceFormatter
210
+ def self.format_backtrace(*arg0); end
211
+ end
212
+ class RSpec::Core::Formatters::ExceptionPresenter::Factory::CommonBacktraceTruncater
213
+ def initialize(parent); end
214
+ def with_truncated_backtrace(child); end
215
+ end
216
+ class RSpec::Core::MultipleExceptionError < StandardError
217
+ def aggregation_block_label; end
218
+ def aggregation_metadata; end
219
+ def all_exceptions; end
220
+ def exception_count_description; end
221
+ def failures; end
222
+ def initialize(*exceptions); end
223
+ def message; end
224
+ def other_errors; end
225
+ def summary; end
226
+ include RSpec::Core::MultipleExceptionError::InterfaceTag
227
+ end
228
+ module RSpec::Core::MultipleExceptionError::InterfaceTag
229
+ def add(exception); end
230
+ def self.for(ex); end
231
+ end
232
+ module RSpec::Core::ShellEscape
233
+ def conditionally_quote(id); end
234
+ def escape(shell_command); end
235
+ def quote(argument); end
236
+ def self.conditionally_quote(id); end
237
+ def self.escape(shell_command); end
238
+ def self.quote(argument); end
239
+ def self.shell_allows_unquoted_ids?; end
240
+ def shell_allows_unquoted_ids?; end
241
+ end
242
+ module RSpec::Core::Formatters::Helpers
243
+ def self.format_duration(duration); end
244
+ def self.format_seconds(float, precision = nil); end
245
+ def self.organize_ids(ids); end
246
+ def self.pluralize(count, string); end
247
+ def self.strip_trailing_zeroes(string); end
248
+ end
249
+ module RSpec::Core::Notifications
250
+ end
251
+ module RSpec::Core::Notifications::NullColorizer
252
+ def self.wrap(line, _code_or_symbol); end
253
+ def wrap(line, _code_or_symbol); end
254
+ end
255
+ class RSpec::Core::Notifications::StartNotification < Struct
256
+ def count; end
257
+ def count=(_); end
258
+ def load_time; end
259
+ def load_time=(_); end
260
+ def self.[](*arg0); end
261
+ def self.inspect; end
262
+ def self.keyword_init?; end
263
+ def self.members; end
264
+ def self.new(*arg0); end
265
+ end
266
+ class RSpec::Core::Notifications::ExampleNotification < Struct
267
+ def example; end
268
+ def example=(_); end
269
+ def self.[](*arg0); end
270
+ def self.for(example); end
271
+ def self.inspect; end
272
+ def self.keyword_init?; end
273
+ def self.members; end
274
+ def self.new(*arg0); end
275
+ end
276
+ class RSpec::Core::Notifications::ExamplesNotification
277
+ def examples; end
278
+ def failed_examples; end
279
+ def failure_notifications; end
280
+ def format_examples(examples); end
281
+ def fully_formatted_failed_examples(colorizer = nil); end
282
+ def fully_formatted_pending_examples(colorizer = nil); end
283
+ def initialize(reporter); end
284
+ def notifications; end
285
+ def pending_examples; end
286
+ def pending_notifications; end
287
+ end
288
+ class RSpec::Core::Notifications::FailedExampleNotification < RSpec::Core::Notifications::ExampleNotification
289
+ def colorized_formatted_backtrace(colorizer = nil); end
290
+ def colorized_message_lines(colorizer = nil); end
291
+ def description; end
292
+ def exception; end
293
+ def formatted_backtrace; end
294
+ def fully_formatted(failure_number, colorizer = nil); end
295
+ def fully_formatted_lines(failure_number, colorizer = nil); end
296
+ def initialize(example, exception_presenter = nil); end
297
+ def message_lines; end
298
+ def self.new(*arg0); end
299
+ end
300
+ class RSpec::Core::Notifications::PendingExampleFixedNotification < RSpec::Core::Notifications::FailedExampleNotification
301
+ end
302
+ class RSpec::Core::Notifications::PendingExampleFailedAsExpectedNotification < RSpec::Core::Notifications::FailedExampleNotification
303
+ end
304
+ class RSpec::Core::Notifications::SkippedExampleNotification < RSpec::Core::Notifications::ExampleNotification
305
+ def fully_formatted(pending_number, colorizer = nil); end
306
+ def self.new(*arg0); end
307
+ end
308
+ class RSpec::Core::Notifications::GroupNotification < Struct
309
+ def group; end
310
+ def group=(_); end
311
+ def self.[](*arg0); end
312
+ def self.inspect; end
313
+ def self.keyword_init?; end
314
+ def self.members; end
315
+ def self.new(*arg0); end
316
+ end
317
+ class RSpec::Core::Notifications::MessageNotification < Struct
318
+ def message; end
319
+ def message=(_); end
320
+ def self.[](*arg0); end
321
+ def self.inspect; end
322
+ def self.keyword_init?; end
323
+ def self.members; end
324
+ def self.new(*arg0); end
325
+ end
326
+ class RSpec::Core::Notifications::SeedNotification < Struct
327
+ def fully_formatted; end
328
+ def seed; end
329
+ def seed=(_); end
330
+ def seed_used?; end
331
+ def self.[](*arg0); end
332
+ def self.inspect; end
333
+ def self.keyword_init?; end
334
+ def self.members; end
335
+ def self.new(*arg0); end
336
+ def used; end
337
+ def used=(_); end
338
+ end
339
+ class RSpec::Core::Notifications::SummaryNotification < Struct
340
+ def colorized_rerun_commands(colorizer = nil); end
341
+ def colorized_totals_line(colorizer = nil); end
342
+ def duplicate_rerun_locations; end
343
+ def duration; end
344
+ def duration=(_); end
345
+ def errors_outside_of_examples_count; end
346
+ def errors_outside_of_examples_count=(_); end
347
+ def example_count; end
348
+ def examples; end
349
+ def examples=(_); end
350
+ def failed_examples; end
351
+ def failed_examples=(_); end
352
+ def failure_count; end
353
+ def formatted_duration; end
354
+ def formatted_load_time; end
355
+ def fully_formatted(colorizer = nil); end
356
+ def load_time; end
357
+ def load_time=(_); end
358
+ def pending_count; end
359
+ def pending_examples; end
360
+ def pending_examples=(_); end
361
+ def rerun_argument_for(example); end
362
+ def self.[](*arg0); end
363
+ def self.inspect; end
364
+ def self.keyword_init?; end
365
+ def self.members; end
366
+ def self.new(*arg0); end
367
+ def totals_line; end
368
+ include RSpec::Core::ShellEscape
369
+ end
370
+ class RSpec::Core::Notifications::ProfileNotification
371
+ def calculate_slowest_groups; end
372
+ def duration; end
373
+ def examples; end
374
+ def initialize(duration, examples, number_of_examples, example_groups); end
375
+ def number_of_examples; end
376
+ def percentage; end
377
+ def slow_duration; end
378
+ def slowest_examples; end
379
+ def slowest_groups; end
380
+ end
381
+ class RSpec::Core::Notifications::DeprecationNotification < Struct
382
+ def call_site; end
383
+ def call_site=(_); end
384
+ def deprecated; end
385
+ def deprecated=(_); end
386
+ def message; end
387
+ def message=(_); end
388
+ def replacement; end
389
+ def replacement=(_); end
390
+ def self.[](*arg0); end
391
+ def self.from_hash(data); end
392
+ def self.inspect; end
393
+ def self.keyword_init?; end
394
+ def self.members; end
395
+ def self.new(*arg0); end
396
+ end
397
+ class RSpec::Core::Notifications::NullNotification
398
+ end
399
+ class RSpec::Core::Notifications::CustomNotification < Struct
400
+ def self.for(options = nil); end
401
+ end
402
+ class RSpec::Core::Reporter
403
+ def abort_with(msg, exit_status); end
404
+ def close; end
405
+ def close_after; end
406
+ def deprecation(hash); end
407
+ def ensure_listeners_ready; end
408
+ def example_failed(example); end
409
+ def example_finished(example); end
410
+ def example_group_finished(group); end
411
+ def example_group_started(group); end
412
+ def example_passed(example); end
413
+ def example_pending(example); end
414
+ def example_started(example); end
415
+ def examples; end
416
+ def exit_early(exit_code); end
417
+ def fail_fast_limit_met?; end
418
+ def failed_examples; end
419
+ def finish; end
420
+ def initialize(configuration); end
421
+ def message(message); end
422
+ def mute_profile_output?; end
423
+ def notify(event, notification); end
424
+ def notify_non_example_exception(exception, context_description); end
425
+ def pending_examples; end
426
+ def prepare_default(loader, output_stream, deprecation_stream); end
427
+ def publish(event, options = nil); end
428
+ def register_listener(listener, *notifications); end
429
+ def registered_listeners(notification); end
430
+ def report(expected_example_count); end
431
+ def seed_used?; end
432
+ def start(expected_example_count, time = nil); end
433
+ def stop; end
434
+ end
435
+ class RSpec::Core::NullReporter
436
+ def self.method_missing(*arg0); end
437
+ end
438
+ module RSpec::Core::Hooks
439
+ def after(*args, &block); end
440
+ def append_after(*args, &block); end
441
+ def append_before(*args, &block); end
442
+ def around(*args, &block); end
443
+ def before(*args, &block); end
444
+ def hooks; end
445
+ def prepend_after(*args, &block); end
446
+ def prepend_before(*args, &block); end
447
+ end
448
+ class RSpec::Core::Hooks::Hook < Struct
449
+ def block; end
450
+ def block=(_); end
451
+ def options; end
452
+ def options=(_); end
453
+ def self.[](*arg0); end
454
+ def self.inspect; end
455
+ def self.keyword_init?; end
456
+ def self.members; end
457
+ def self.new(*arg0); end
458
+ end
459
+ class RSpec::Core::Hooks::BeforeHook < RSpec::Core::Hooks::Hook
460
+ def run(example); end
461
+ end
462
+ class RSpec::Core::Hooks::AfterHook < RSpec::Core::Hooks::Hook
463
+ def run(example); end
464
+ end
465
+ class RSpec::Core::Hooks::AfterContextHook < RSpec::Core::Hooks::Hook
466
+ def run(example); end
467
+ end
468
+ class RSpec::Core::Hooks::AroundHook < RSpec::Core::Hooks::Hook
469
+ def execute_with(example, procsy); end
470
+ def hook_description; end
471
+ end
472
+ class RSpec::Core::Hooks::HookCollections
473
+ def all_hooks_for(position, scope); end
474
+ def ensure_hooks_initialized_for(position, scope); end
475
+ def extract_scope_from(args); end
476
+ def hooks_for(position, scope); end
477
+ def initialize(owner, filterable_item_repo_class); end
478
+ def known_scope?(scope); end
479
+ def matching_hooks_for(position, scope, example_or_group); end
480
+ def normalized_scope_for(scope); end
481
+ def owner_parent_groups; end
482
+ def process(host, parent_groups, globals, position, scope); end
483
+ def processable_hooks_for(position, scope, host); end
484
+ def register(prepend_or_append, position, *args, &block); end
485
+ def register_global_singleton_context_hooks(example, globals); end
486
+ def register_globals(host, globals); end
487
+ def run(position, scope, example_or_group); end
488
+ def run_around_example_hooks_for(example); end
489
+ def run_example_hooks_for(example, position, each_method); end
490
+ def run_owned_hooks_for(position, scope, example_or_group); end
491
+ def scope_and_options_from(*args); end
492
+ end
493
+ module RSpec::Core::MemoizedHelpers
494
+ def __init_memoized; end
495
+ def __memoized; end
496
+ def enforce_value_expectation(matcher, method_name); end
497
+ def initialize(*arg0); end
498
+ def is_expected; end
499
+ def matcher_supports_value_expectations?(matcher); end
500
+ def self.define_helpers_on(example_group); end
501
+ def self.get_constant_or_yield(example_group, name); end
502
+ def self.module_for(example_group); end
503
+ def should(matcher = nil, message = nil); end
504
+ def should_not(matcher = nil, message = nil); end
505
+ def subject; end
506
+ end
507
+ class RSpec::Core::MemoizedHelpers::ThreadsafeMemoized
508
+ def fetch_or_store(key); end
509
+ def initialize; end
510
+ end
511
+ class RSpec::Core::MemoizedHelpers::NonThreadSafeMemoized
512
+ def fetch_or_store(key); end
513
+ def initialize; end
514
+ end
515
+ class RSpec::Core::MemoizedHelpers::ContextHookMemoized
516
+ def self.fetch_or_store(key, &_block); end
517
+ def self.isolate_for_context_hook(example_group_instance); end
518
+ end
519
+ class RSpec::Core::MemoizedHelpers::ContextHookMemoized::Before < RSpec::Core::MemoizedHelpers::ContextHookMemoized
520
+ def self.article; end
521
+ def self.hook_expression; end
522
+ def self.hook_intention; end
523
+ end
524
+ class RSpec::Core::MemoizedHelpers::ContextHookMemoized::After < RSpec::Core::MemoizedHelpers::ContextHookMemoized
525
+ def self.article; end
526
+ def self.hook_expression; end
527
+ def self.hook_intention; end
528
+ end
529
+ module RSpec::Core::MemoizedHelpers::ClassMethods
530
+ def let!(name, &block); end
531
+ def let(name, &block); end
532
+ def subject!(name = nil, &block); end
533
+ def subject(name = nil, &block); end
534
+ end
535
+ module RSpec::Core::Metadata
536
+ def self.ascend(metadata); end
537
+ def self.ascending(metadata); end
538
+ def self.build_hash_from(args, warn_about_example_group_filtering = nil); end
539
+ def self.deep_hash_dup(object); end
540
+ def self.id_from(metadata); end
541
+ def self.location_tuple_from(metadata); end
542
+ def self.relative_path(line); end
543
+ def self.relative_path_regex; end
544
+ end
545
+ class RSpec::Core::Metadata::HashPopulator
546
+ def block; end
547
+ def build_description_from(parent_description = nil, my_description = nil); end
548
+ def build_scoped_id_for(file_path); end
549
+ def description_args; end
550
+ def description_separator(parent_part, child_part); end
551
+ def ensure_valid_user_keys; end
552
+ def file_path_and_line_number_from(backtrace); end
553
+ def initialize(metadata, user_metadata, index_provider, description_args, block); end
554
+ def metadata; end
555
+ def populate; end
556
+ def populate_location_attributes; end
557
+ def user_metadata; end
558
+ end
559
+ class RSpec::Core::Metadata::ExampleHash < RSpec::Core::Metadata::HashPopulator
560
+ def described_class; end
561
+ def full_description; end
562
+ def self.create(group_metadata, user_metadata, index_provider, description, block); end
563
+ end
564
+ class RSpec::Core::Metadata::ExampleGroupHash < RSpec::Core::Metadata::HashPopulator
565
+ def described_class; end
566
+ def full_description; end
567
+ def self.backwards_compatibility_default_proc(&example_group_selector); end
568
+ def self.create(parent_group_metadata, user_metadata, example_group_index, *args, &block); end
569
+ def self.hash_with_backwards_compatibility_default_proc; end
570
+ end
571
+ module RSpec::Core::HashImitatable
572
+ def <(*args, &block); end
573
+ def <=(*args, &block); end
574
+ def >(*args, &block); end
575
+ def >=(*args, &block); end
576
+ def [](key); end
577
+ def []=(key, value); end
578
+ def all?(*args, &block); end
579
+ def any?(*args, &block); end
580
+ def assoc(*args, &block); end
581
+ def chain(*args, &block); end
582
+ def chunk(*args, &block); end
583
+ def chunk_while(*args, &block); end
584
+ def clear(*args, &block); end
585
+ def collect(*args, &block); end
586
+ def collect_concat(*args, &block); end
587
+ def compact!(*args, &block); end
588
+ def compact(*args, &block); end
589
+ def compare_by_identity(*args, &block); end
590
+ def compare_by_identity?(*args, &block); end
591
+ def count(*args, &block); end
592
+ def cycle(*args, &block); end
593
+ def deconstruct_keys(*args, &block); end
594
+ def default(*args, &block); end
595
+ def default=(*args, &block); end
596
+ def default_proc(*args, &block); end
597
+ def default_proc=(*args, &block); end
598
+ def delete(*args, &block); end
599
+ def delete_if(*args, &block); end
600
+ def detect(*args, &block); end
601
+ def dig(*args, &block); end
602
+ def directly_supports_attribute?(name); end
603
+ def drop(*args, &block); end
604
+ def drop_while(*args, &block); end
605
+ def each(*args, &block); end
606
+ def each_cons(*args, &block); end
607
+ def each_entry(*args, &block); end
608
+ def each_key(*args, &block); end
609
+ def each_pair(*args, &block); end
610
+ def each_slice(*args, &block); end
611
+ def each_value(*args, &block); end
612
+ def each_with_index(*args, &block); end
613
+ def each_with_object(*args, &block); end
614
+ def empty?(*args, &block); end
615
+ def entries(*args, &block); end
616
+ def except(*args, &block); end
617
+ def extra_hash_attributes; end
618
+ def fetch(*args, &block); end
619
+ def fetch_values(*args, &block); end
620
+ def filter!(*args, &block); end
621
+ def filter(*args, &block); end
622
+ def filter_map(*args, &block); end
623
+ def find(*args, &block); end
624
+ def find_all(*args, &block); end
625
+ def find_index(*args, &block); end
626
+ def first(*args, &block); end
627
+ def flat_map(*args, &block); end
628
+ def flatten(*args, &block); end
629
+ def get_value(name); end
630
+ def grep(*args, &block); end
631
+ def grep_v(*args, &block); end
632
+ def group_by(*args, &block); end
633
+ def has_key?(*args, &block); end
634
+ def has_value?(*args, &block); end
635
+ def hash_for_delegation; end
636
+ def include?(*args, &block); end
637
+ def inject(*args, &block); end
638
+ def invert(*args, &block); end
639
+ def issue_deprecation(_method_name, *_args); end
640
+ def keep_if(*args, &block); end
641
+ def key(*args, &block); end
642
+ def key?(*args, &block); end
643
+ def keys(*args, &block); end
644
+ def lazy(*args, &block); end
645
+ def length(*args, &block); end
646
+ def map(*args, &block); end
647
+ def max(*args, &block); end
648
+ def max_by(*args, &block); end
649
+ def member?(*args, &block); end
650
+ def merge!(*args, &block); end
651
+ def merge(*args, &block); end
652
+ def min(*args, &block); end
653
+ def min_by(*args, &block); end
654
+ def minmax(*args, &block); end
655
+ def minmax_by(*args, &block); end
656
+ def none?(*args, &block); end
657
+ def one?(*args, &block); end
658
+ def partition(*args, &block); end
659
+ def rassoc(*args, &block); end
660
+ def reduce(*args, &block); end
661
+ def rehash(*args, &block); end
662
+ def reject!(*args, &block); end
663
+ def reject(*args, &block); end
664
+ def replace(*args, &block); end
665
+ def reverse_each(*args, &block); end
666
+ def select!(*args, &block); end
667
+ def select(*args, &block); end
668
+ def self.included(klass); end
669
+ def set_value(name, value); end
670
+ def shift(*args, &block); end
671
+ def size(*args, &block); end
672
+ def slice(*args, &block); end
673
+ def slice_after(*args, &block); end
674
+ def slice_before(*args, &block); end
675
+ def slice_when(*args, &block); end
676
+ def sort(*args, &block); end
677
+ def sort_by(*args, &block); end
678
+ def store(*args, &block); end
679
+ def sum(*args, &block); end
680
+ def take(*args, &block); end
681
+ def take_while(*args, &block); end
682
+ def tally(*args, &block); end
683
+ def to_a(*args, &block); end
684
+ def to_h; end
685
+ def to_hash(*args, &block); end
686
+ def to_proc(*args, &block); end
687
+ def to_set(*args, &block); end
688
+ def transform_keys!(*args, &block); end
689
+ def transform_keys(*args, &block); end
690
+ def transform_values!(*args, &block); end
691
+ def transform_values(*args, &block); end
692
+ def uniq(*args, &block); end
693
+ def update(*args, &block); end
694
+ def value?(*args, &block); end
695
+ def values(*args, &block); end
696
+ def values_at(*args, &block); end
697
+ def zip(*args, &block); end
698
+ end
699
+ module RSpec::Core::HashImitatable::ClassMethods
700
+ def attr_accessor(*names); end
701
+ def hash_attribute_names; end
702
+ end
703
+ class RSpec::Core::LegacyExampleGroupHash
704
+ def directly_supports_attribute?(name); end
705
+ def get_value(name); end
706
+ def initialize(metadata); end
707
+ def set_value(name, value); end
708
+ def to_h; end
709
+ extend RSpec::Core::HashImitatable::ClassMethods
710
+ include RSpec::Core::HashImitatable
711
+ end
712
+ module RSpec::Core::MetadataFilter
713
+ def self.apply?(predicate, filters, metadata); end
714
+ def self.filter_applies?(key, filter_value, metadata); end
715
+ def self.filter_applies_to_any_value?(key, value, metadata); end
716
+ def self.filters_apply?(key, value, metadata); end
717
+ def self.id_filter_applies?(rerun_paths_to_scoped_ids, metadata); end
718
+ def self.location_filter_applies?(locations, metadata); end
719
+ def self.proc_filter_applies?(key, proc, metadata); end
720
+ def self.silence_metadata_example_group_deprecations; end
721
+ end
722
+ module RSpec::Core::FilterableItemRepository
723
+ end
724
+ class RSpec::Core::FilterableItemRepository::UpdateOptimized
725
+ def append(item, metadata); end
726
+ def delete(item, metadata); end
727
+ def initialize(applies_predicate); end
728
+ def items_and_filters; end
729
+ def items_for(request_meta); end
730
+ def prepend(item, metadata); end
731
+ end
732
+ class RSpec::Core::FilterableItemRepository::QueryOptimized < RSpec::Core::FilterableItemRepository::UpdateOptimized
733
+ def append(item, metadata); end
734
+ def applicable_metadata_from(metadata); end
735
+ def delete(item, metadata); end
736
+ def find_items_for(request_meta); end
737
+ def handle_mutation(metadata); end
738
+ def initialize(applies_predicate); end
739
+ def items_for(metadata); end
740
+ def prepend(item, metadata); end
741
+ def proc_keys_from(metadata); end
742
+ def reconstruct_caches; end
743
+ end
744
+ module RSpec::Core::Pending
745
+ def pending(message = nil); end
746
+ def self.mark_fixed!(example); end
747
+ def self.mark_pending!(example, message_or_bool); end
748
+ def self.mark_skipped!(example, message_or_bool); end
749
+ def skip(message = nil); end
750
+ end
751
+ class RSpec::Core::Pending::SkipDeclaredInExample < StandardError
752
+ def argument; end
753
+ def initialize(argument); end
754
+ end
755
+ class RSpec::Core::Pending::PendingExampleFixedError < StandardError
756
+ end
757
+ class RSpec::Core::Formatters::Loader
758
+ def add(formatter_to_use, *paths); end
759
+ def built_in_formatter(key); end
760
+ def custom_formatter(formatter_ref); end
761
+ def default_formatter; end
762
+ def default_formatter=(arg0); end
763
+ def duplicate_formatter_exists?(new_formatter); end
764
+ def existing_formatter_implements?(notification); end
765
+ def find_formatter(formatter_to_use); end
766
+ def formatters; end
767
+ def has_matching_output?(formatter, new_formatter); end
768
+ def initialize(reporter); end
769
+ def notifications_for(formatter_class); end
770
+ def open_stream(path_or_wrapper); end
771
+ def path_for(const_ref); end
772
+ def prepare_default(output_stream, deprecation_stream); end
773
+ def register(formatter, notifications); end
774
+ def reporter; end
775
+ def self.formatters; end
776
+ def setup_default(output_stream, deprecation_stream); end
777
+ def string_const?(str); end
778
+ def underscore(camel_cased_word); end
779
+ def underscore_with_fix_for_non_standard_rspec_naming(string); end
780
+ end
781
+ module RSpec::Core::Ordering
782
+ end
783
+ class RSpec::Core::Ordering::Identity
784
+ def order(items); end
785
+ end
786
+ class RSpec::Core::Ordering::Random
787
+ def initialize(configuration); end
788
+ def jenkins_hash_digest(string); end
789
+ def order(items); end
790
+ def used?; end
791
+ end
792
+ class RSpec::Core::Ordering::RecentlyModified
793
+ def order(list); end
794
+ end
795
+ class RSpec::Core::Ordering::Custom
796
+ def initialize(callable); end
797
+ def order(list); end
798
+ end
799
+ class RSpec::Core::Ordering::Registry
800
+ def fetch(name, &fallback); end
801
+ def initialize(configuration); end
802
+ def register(sym, strategy); end
803
+ def used_random_seed?; end
804
+ end
805
+ class RSpec::Core::Ordering::ConfigurationManager
806
+ def force(hash); end
807
+ def initialize; end
808
+ def order=(type); end
809
+ def ordering_registry; end
810
+ def register_ordering(name, strategy = nil); end
811
+ def seed; end
812
+ def seed=(seed); end
813
+ def seed_used?; end
814
+ end
815
+ class RSpec::Core::World
816
+ def all_example_groups; end
817
+ def all_examples; end
818
+ def announce_exclusion_filter(announcements); end
819
+ def announce_filters; end
820
+ def announce_inclusion_filter(announcements); end
821
+ def descending_declaration_line_numbers_by_file; end
822
+ def everything_filtered_message; end
823
+ def example_count(groups = nil); end
824
+ def example_group_counts_by_spec_file; end
825
+ def example_groups; end
826
+ def exclusion_filter; end
827
+ def fail_if_config_and_cli_options_invalid; end
828
+ def filter_manager; end
829
+ def filtered_examples; end
830
+ def inclusion_filter; end
831
+ def initialize(configuration = nil); end
832
+ def non_example_failure; end
833
+ def non_example_failure=(arg0); end
834
+ def num_example_groups_defined_in(file); end
835
+ def ordered_example_groups; end
836
+ def preceding_declaration_line(absolute_file_name, filter_line); end
837
+ def prepare_example_filtering; end
838
+ def record(example_group); end
839
+ def registered_example_group_files; end
840
+ def report_filter_message(message); end
841
+ def reporter; end
842
+ def reset; end
843
+ def rspec_is_quitting; end
844
+ def rspec_is_quitting=(arg0); end
845
+ def shared_example_group_registry; end
846
+ def source_from_file(path); end
847
+ def syntax_highlighter; end
848
+ def traverse_example_group_trees_until(&block); end
849
+ def wants_to_quit; end
850
+ def wants_to_quit=(arg0); end
851
+ end
852
+ module RSpec::Core::World::Null
853
+ def self.all_example_groups; end
854
+ def self.example_groups; end
855
+ def self.non_example_failure; end
856
+ def self.non_example_failure=(_); end
857
+ def self.registered_example_group_files; end
858
+ def self.traverse_example_group_trees_until; end
859
+ end
860
+ class RSpec::Core::BacktraceFormatter
861
+ def backtrace_line(line); end
862
+ def exclude?(line); end
863
+ def exclusion_patterns; end
864
+ def exclusion_patterns=(arg0); end
865
+ def filter_gem(gem_name); end
866
+ def format_backtrace(backtrace, options = nil); end
867
+ def full_backtrace=(arg0); end
868
+ def full_backtrace?; end
869
+ def inclusion_patterns; end
870
+ def inclusion_patterns=(arg0); end
871
+ def initialize; end
872
+ def matches?(patterns, line); end
873
+ end
874
+ module RSpec::Core::RubyProject
875
+ def add_dir_to_load_path(dir); end
876
+ def add_to_load_path(*dirs); end
877
+ def ascend_until; end
878
+ def determine_root; end
879
+ def find_first_parent_containing(dir); end
880
+ def root; end
881
+ def self.add_dir_to_load_path(dir); end
882
+ def self.add_to_load_path(*dirs); end
883
+ def self.ascend_until; end
884
+ def self.determine_root; end
885
+ def self.find_first_parent_containing(dir); end
886
+ def self.root; end
887
+ end
888
+ class RSpec::Core::Formatters::DeprecationFormatter
889
+ def count; end
890
+ def deprecation(notification); end
891
+ def deprecation_message_for(data); end
892
+ def deprecation_stream; end
893
+ def deprecation_summary(_notification); end
894
+ def initialize(deprecation_stream, summary_stream); end
895
+ def output; end
896
+ def printer; end
897
+ def summary_stream; end
898
+ end
899
+ class RSpec::Core::Formatters::DeprecationFormatter::SpecifiedDeprecationMessage < Struct
900
+ def deprecation_type_for(data); end
901
+ def initialize(data); end
902
+ def output_formatted(str); end
903
+ def self.[](*arg0); end
904
+ def self.inspect; end
905
+ def self.keyword_init?; end
906
+ def self.members; end
907
+ def self.new(*arg0); end
908
+ def to_s; end
909
+ def too_many_warnings_message; end
910
+ def type; end
911
+ def type=(_); end
912
+ end
913
+ class RSpec::Core::Formatters::DeprecationFormatter::GeneratedDeprecationMessage < Struct
914
+ def initialize(data); end
915
+ def self.[](*arg0); end
916
+ def self.inspect; end
917
+ def self.keyword_init?; end
918
+ def self.members; end
919
+ def self.new(*arg0); end
920
+ def to_s; end
921
+ def too_many_warnings_message; end
922
+ def type; end
923
+ def type=(_); end
924
+ end
925
+ class RSpec::Core::Formatters::DeprecationFormatter::ImmediatePrinter
926
+ def deprecation_formatter; end
927
+ def deprecation_stream; end
928
+ def deprecation_summary; end
929
+ def initialize(deprecation_stream, summary_stream, deprecation_formatter); end
930
+ def print_deprecation_message(data); end
931
+ def summary_stream; end
932
+ end
933
+ class RSpec::Core::Formatters::DeprecationFormatter::DelayedPrinter
934
+ def deprecation_formatter; end
935
+ def deprecation_stream; end
936
+ def deprecation_summary; end
937
+ def initialize(deprecation_stream, summary_stream, deprecation_formatter); end
938
+ def print_deferred_deprecation_warnings; end
939
+ def print_deprecation_message(data); end
940
+ def stash_deprecation_message(deprecation_message); end
941
+ def summary_stream; end
942
+ end
943
+ class RSpec::Core::Formatters::DeprecationFormatter::RaiseErrorStream
944
+ def puts(message); end
945
+ def summarize(summary_stream, deprecation_count); end
946
+ end
947
+ class RSpec::Core::Formatters::DeprecationFormatter::FileStream
948
+ def initialize(file); end
949
+ def puts(*args); end
950
+ def summarize(summary_stream, deprecation_count); end
951
+ end
952
+ class RSpec::Core::DeprecationError < StandardError
953
+ end
954
+ class RSpec::Core::OutputWrapper
955
+ def <<(*args, &block); end
956
+ def advise(*args, &block); end
957
+ def autoclose=(*args, &block); end
958
+ def autoclose?(*args, &block); end
959
+ def beep(*args, &block); end
960
+ def binmode(*args, &block); end
961
+ def binmode?(*args, &block); end
962
+ def check_winsize_changed(*args, &block); end
963
+ def clear_screen(*args, &block); end
964
+ def close(*args, &block); end
965
+ def close_on_exec=(*args, &block); end
966
+ def close_on_exec?(*args, &block); end
967
+ def close_read(*args, &block); end
968
+ def close_write(*args, &block); end
969
+ def closed?(*args, &block); end
970
+ def console_mode(*args, &block); end
971
+ def console_mode=(*args, &block); end
972
+ def cooked!(*args, &block); end
973
+ def cooked(*args, &block); end
974
+ def cursor(*args, &block); end
975
+ def cursor=(*args, &block); end
976
+ def cursor_down(*args, &block); end
977
+ def cursor_left(*args, &block); end
978
+ def cursor_right(*args, &block); end
979
+ def cursor_up(*args, &block); end
980
+ def each(*args, &block); end
981
+ def each_byte(*args, &block); end
982
+ def each_char(*args, &block); end
983
+ def each_codepoint(*args, &block); end
984
+ def each_line(*args, &block); end
985
+ def echo=(*args, &block); end
986
+ def echo?(*args, &block); end
987
+ def eof(*args, &block); end
988
+ def eof?(*args, &block); end
989
+ def erase_line(*args, &block); end
990
+ def erase_screen(*args, &block); end
991
+ def external_encoding(*args, &block); end
992
+ def fcntl(*args, &block); end
993
+ def fdatasync(*args, &block); end
994
+ def fileno(*args, &block); end
995
+ def flush(*args, &block); end
996
+ def fsync(*args, &block); end
997
+ def getbyte(*args, &block); end
998
+ def getc(*args, &block); end
999
+ def getch(*args, &block); end
1000
+ def getpass(*args, &block); end
1001
+ def gets(*args, &block); end
1002
+ def goto(*args, &block); end
1003
+ def goto_column(*args, &block); end
1004
+ def iflush(*args, &block); end
1005
+ def initialize(output); end
1006
+ def inspect(*args, &block); end
1007
+ def internal_encoding(*args, &block); end
1008
+ def ioctl(*args, &block); end
1009
+ def ioflush(*args, &block); end
1010
+ def isatty(*args, &block); end
1011
+ def lineno(*args, &block); end
1012
+ def lineno=(*args, &block); end
1013
+ def method_missing(name, *args, &block); end
1014
+ def noecho(*args, &block); end
1015
+ def nread(*args, &block); end
1016
+ def oflush(*args, &block); end
1017
+ def output; end
1018
+ def output=(arg0); end
1019
+ def pathconf(*args, &block); end
1020
+ def pid(*args, &block); end
1021
+ def pos(*args, &block); end
1022
+ def pos=(*args, &block); end
1023
+ def pread(*args, &block); end
1024
+ def pressed?(*args, &block); end
1025
+ def print(*args, &block); end
1026
+ def printf(*args, &block); end
1027
+ def putc(*args, &block); end
1028
+ def puts(*args, &block); end
1029
+ def pwrite(*args, &block); end
1030
+ def raw!(*args, &block); end
1031
+ def raw(*args, &block); end
1032
+ def read(*args, &block); end
1033
+ def read_nonblock(*args, &block); end
1034
+ def readbyte(*args, &block); end
1035
+ def readchar(*args, &block); end
1036
+ def readline(*args, &block); end
1037
+ def readlines(*args, &block); end
1038
+ def readpartial(*args, &block); end
1039
+ def ready?(*args, &block); end
1040
+ def reopen(*args, &block); end
1041
+ def respond_to?(name, priv = nil); end
1042
+ def rewind(*args, &block); end
1043
+ def scroll_backward(*args, &block); end
1044
+ def scroll_forward(*args, &block); end
1045
+ def seek(*args, &block); end
1046
+ def set_encoding(*args, &block); end
1047
+ def set_encoding_by_bom(*args, &block); end
1048
+ def stat(*args, &block); end
1049
+ def sync(*args, &block); end
1050
+ def sync=(*args, &block); end
1051
+ def sysread(*args, &block); end
1052
+ def sysseek(*args, &block); end
1053
+ def syswrite(*args, &block); end
1054
+ def tell(*args, &block); end
1055
+ def to_i(*args, &block); end
1056
+ def to_io(*args, &block); end
1057
+ def tty?(*args, &block); end
1058
+ def ungetbyte(*args, &block); end
1059
+ def ungetc(*args, &block); end
1060
+ def wait(*args, &block); end
1061
+ def wait_priority(*args, &block); end
1062
+ def wait_readable(*args, &block); end
1063
+ def wait_writable(*args, &block); end
1064
+ def winsize(*args, &block); end
1065
+ def winsize=(*args, &block); end
1066
+ def write(*args, &block); end
1067
+ def write_nonblock(*args, &block); end
1068
+ end
1069
+ class RSpec::Core::Configuration
1070
+ def absolute_pattern?(pattern); end
1071
+ def add_formatter(formatter, output = nil); end
1072
+ def add_hook_to_existing_matching_groups(meta, scope, &block); end
1073
+ def add_setting(name, opts = nil); end
1074
+ def after(scope = nil, *meta, &block); end
1075
+ def alias_example_group_to(new_name, *args); end
1076
+ def alias_example_to(name, *args); end
1077
+ def alias_it_behaves_like_to(new_name, report_label = nil); end
1078
+ def alias_it_should_behave_like_to(new_name, report_label = nil); end
1079
+ def append_after(scope = nil, *meta, &block); end
1080
+ def append_before(scope = nil, *meta, &block); end
1081
+ def apply_derived_metadata_to(metadata); end
1082
+ def around(scope = nil, *meta, &block); end
1083
+ def assert_no_example_groups_defined(config_option); end
1084
+ def backtrace_exclusion_patterns; end
1085
+ def backtrace_exclusion_patterns=(patterns); end
1086
+ def backtrace_formatter; end
1087
+ def backtrace_inclusion_patterns; end
1088
+ def backtrace_inclusion_patterns=(patterns); end
1089
+ def before(scope = nil, *meta, &block); end
1090
+ def bisect_runner; end
1091
+ def bisect_runner=(value); end
1092
+ def bisect_runner_class; end
1093
+ def clear_values_derived_from_example_status_persistence_file_path; end
1094
+ def color; end
1095
+ def color=(arg0); end
1096
+ def color_enabled?(output = nil); end
1097
+ def color_mode; end
1098
+ def color_mode=(arg0); end
1099
+ def command; end
1100
+ def conditionally_disable_expectations_monkey_patching; end
1101
+ def conditionally_disable_mocks_monkey_patching; end
1102
+ def configure_example(example, example_hooks); end
1103
+ def configure_expectation_framework; end
1104
+ def configure_group(group); end
1105
+ def configure_group_with(group, module_list, application_method); end
1106
+ def configure_mock_framework; end
1107
+ def default_color; end
1108
+ def default_color=(arg0); end
1109
+ def default_color?; end
1110
+ def default_formatter; end
1111
+ def default_formatter=(value); end
1112
+ def default_path; end
1113
+ def default_path=(path); end
1114
+ def default_path?; end
1115
+ def define_built_in_hooks; end
1116
+ def define_derived_metadata(*filters, &block); end
1117
+ def define_mixed_in_module(mod, filters, mod_list, config_method, &block); end
1118
+ def deprecation_stream; end
1119
+ def deprecation_stream=(value); end
1120
+ def detail_color; end
1121
+ def detail_color=(arg0); end
1122
+ def detail_color?; end
1123
+ def disable_monkey_patching!; end
1124
+ def disable_monkey_patching; end
1125
+ def disable_monkey_patching=(arg0); end
1126
+ def drb; end
1127
+ def drb=(arg0); end
1128
+ def drb?; end
1129
+ def drb_port; end
1130
+ def drb_port=(arg0); end
1131
+ def drb_port?; end
1132
+ def dry_run; end
1133
+ def dry_run=(arg0); end
1134
+ def dry_run?; end
1135
+ def error_exit_code; end
1136
+ def error_exit_code=(arg0); end
1137
+ def error_exit_code?; end
1138
+ def error_stream; end
1139
+ def error_stream=(arg0); end
1140
+ def error_stream?; end
1141
+ def example_status_persistence_file_path; end
1142
+ def example_status_persistence_file_path=(value); end
1143
+ def exclude_pattern; end
1144
+ def exclude_pattern=(value); end
1145
+ def exclusion_filter; end
1146
+ def exclusion_filter=(filter); end
1147
+ def expect_with(*frameworks); end
1148
+ def expectation_framework=(framework); end
1149
+ def expectation_frameworks; end
1150
+ def expose_current_running_example_as(method_name); end
1151
+ def expose_dsl_globally=(value); end
1152
+ def expose_dsl_globally?; end
1153
+ def extend(mod, *filters); end
1154
+ def extract_location(path); end
1155
+ def fail_fast; end
1156
+ def fail_fast=(value); end
1157
+ def fail_if_no_examples; end
1158
+ def fail_if_no_examples=(arg0); end
1159
+ def fail_if_no_examples?; end
1160
+ def failure_color; end
1161
+ def failure_color=(arg0); end
1162
+ def failure_color?; end
1163
+ def failure_exit_code; end
1164
+ def failure_exit_code=(arg0); end
1165
+ def failure_exit_code?; end
1166
+ def file_glob_from(path, pattern); end
1167
+ def files_or_directories_to_run=(*files); end
1168
+ def files_to_run; end
1169
+ def files_to_run=(arg0); end
1170
+ def filter; end
1171
+ def filter=(filter); end
1172
+ def filter_gems_from_backtrace(*gem_names); end
1173
+ def filter_manager; end
1174
+ def filter_manager=(arg0); end
1175
+ def filter_run(*args); end
1176
+ def filter_run_excluding(*args); end
1177
+ def filter_run_including(*args); end
1178
+ def filter_run_when_matching(*args); end
1179
+ def fixed_color; end
1180
+ def fixed_color=(arg0); end
1181
+ def fixed_color?; end
1182
+ def force(hash); end
1183
+ def format_docstrings(&block); end
1184
+ def format_docstrings_block; end
1185
+ def formatter=(formatter, output = nil); end
1186
+ def formatter_loader; end
1187
+ def formatters; end
1188
+ def full_backtrace=(true_or_false); end
1189
+ def full_backtrace?; end
1190
+ def full_description; end
1191
+ def full_description=(description); end
1192
+ def gather_directories(path); end
1193
+ def get_files_to_run(paths); end
1194
+ def get_matching_files(path, pattern); end
1195
+ def handle_suite_hook(scope, meta); end
1196
+ def hooks; end
1197
+ def in_project_source_dir_regex; end
1198
+ def include(mod, *filters); end
1199
+ def include_context(shared_group_name, *filters); end
1200
+ def inclusion_filter; end
1201
+ def inclusion_filter=(filter); end
1202
+ def initialize; end
1203
+ def last_run_statuses; end
1204
+ def libs; end
1205
+ def libs=(libs); end
1206
+ def load_file_handling_errors(method, file); end
1207
+ def load_spec_files; end
1208
+ def loaded_spec_files; end
1209
+ def max_displayed_failure_line_count; end
1210
+ def max_displayed_failure_line_count=(arg0); end
1211
+ def max_displayed_failure_line_count?; end
1212
+ def metadata_applies_to_group?(meta, group); end
1213
+ def mock_framework; end
1214
+ def mock_framework=(framework); end
1215
+ def mock_with(framework); end
1216
+ def on_example_group_definition(&block); end
1217
+ def on_example_group_definition_callbacks; end
1218
+ def on_existing_matching_groups(meta); end
1219
+ def only_failures; end
1220
+ def only_failures?; end
1221
+ def only_failures_but_not_configured?; end
1222
+ def order=(*args, &block); end
1223
+ def ordering_manager; end
1224
+ def ordering_registry(*args, &block); end
1225
+ def output_stream; end
1226
+ def output_stream=(value); end
1227
+ def output_to_tty?(output = nil); end
1228
+ def output_wrapper; end
1229
+ def paths_to_check(paths); end
1230
+ def pattern; end
1231
+ def pattern=(value); end
1232
+ def pattern_might_load_specs_from_vendored_dirs?; end
1233
+ def pending_color; end
1234
+ def pending_color=(arg0); end
1235
+ def pending_color?; end
1236
+ def prepend(mod, *filters); end
1237
+ def prepend_after(scope = nil, *meta, &block); end
1238
+ def prepend_before(scope = nil, *meta, &block); end
1239
+ def profile_examples; end
1240
+ def profile_examples=(arg0); end
1241
+ def profile_examples?; end
1242
+ def project_source_dirs; end
1243
+ def project_source_dirs=(arg0); end
1244
+ def project_source_dirs?; end
1245
+ def raise_errors_for_deprecations!; end
1246
+ def raise_on_warning=(value); end
1247
+ def register_ordering(*args, &block); end
1248
+ def reporter; end
1249
+ def requires; end
1250
+ def requires=(paths); end
1251
+ def reset; end
1252
+ def reset_filters; end
1253
+ def reset_reporter; end
1254
+ def rspec_expectations_loaded?; end
1255
+ def rspec_mocks_loaded?; end
1256
+ def run_all_when_everything_filtered; end
1257
+ def run_all_when_everything_filtered=(arg0); end
1258
+ def run_all_when_everything_filtered?; end
1259
+ def run_suite_hooks(hook_description, hooks); end
1260
+ def safe_extend(mod, host); end
1261
+ def safe_include(mod, host); end
1262
+ def safe_prepend(mod, host); end
1263
+ def seed(*args, &block); end
1264
+ def seed=(*args, &block); end
1265
+ def seed_used?(*args, &block); end
1266
+ def self.add_read_only_setting(name, opts = nil); end
1267
+ def self.add_setting(name, opts = nil); end
1268
+ def self.define_alias(name, alias_name); end
1269
+ def self.define_predicate(name); end
1270
+ def self.define_reader(name); end
1271
+ def self.delegate_to_ordering_manager(*methods); end
1272
+ def shared_context_metadata_behavior; end
1273
+ def shared_context_metadata_behavior=(value); end
1274
+ def silence_filter_announcements; end
1275
+ def silence_filter_announcements=(arg0); end
1276
+ def silence_filter_announcements?; end
1277
+ def spec_files_with_failures; end
1278
+ def start_time; end
1279
+ def start_time=(arg0); end
1280
+ def start_time?; end
1281
+ def static_config_filter_manager; end
1282
+ def static_config_filter_manager=(arg0); end
1283
+ def success_color; end
1284
+ def success_color=(arg0); end
1285
+ def success_color?; end
1286
+ def threadsafe; end
1287
+ def threadsafe=(arg0); end
1288
+ def threadsafe?; end
1289
+ def treat_symbols_as_metadata_keys_with_true_values=(_value); end
1290
+ def tty; end
1291
+ def tty=(arg0); end
1292
+ def tty?; end
1293
+ def update_pattern_attr(name, value); end
1294
+ def value_for(key); end
1295
+ def warnings=(value); end
1296
+ def warnings?; end
1297
+ def when_first_matching_example_defined(*filters); end
1298
+ def with_suite_hooks; end
1299
+ def world; end
1300
+ def world=(arg0); end
1301
+ include RSpec::Core::Configuration::Readers
1302
+ include RSpec::Core::Hooks
1303
+ end
1304
+ module RSpec::Core::Configuration::Readers
1305
+ def default_color; end
1306
+ def default_path; end
1307
+ def deprecation_stream; end
1308
+ def detail_color; end
1309
+ def drb; end
1310
+ def drb_port; end
1311
+ def dry_run; end
1312
+ def error_exit_code; end
1313
+ def error_stream; end
1314
+ def example_status_persistence_file_path; end
1315
+ def exclude_pattern; end
1316
+ def fail_fast; end
1317
+ def fail_if_no_examples; end
1318
+ def failure_color; end
1319
+ def failure_exit_code; end
1320
+ def fixed_color; end
1321
+ def libs; end
1322
+ def max_displayed_failure_line_count; end
1323
+ def only_failures; end
1324
+ def output_stream; end
1325
+ def pattern; end
1326
+ def pending_color; end
1327
+ def project_source_dirs; end
1328
+ def requires; end
1329
+ def run_all_when_everything_filtered; end
1330
+ def shared_context_metadata_behavior; end
1331
+ def silence_filter_announcements; end
1332
+ def start_time; end
1333
+ def success_color; end
1334
+ def threadsafe; end
1335
+ def tty; end
1336
+ end
1337
+ class RSpec::Core::Configuration::MustBeConfiguredBeforeExampleGroupsError < StandardError
1338
+ end
1339
+ class RSpec::Core::Configuration::DeprecationReporterBuffer
1340
+ def deprecation(*args); end
1341
+ def initialize; end
1342
+ def play_onto(reporter); end
1343
+ end
1344
+ module RSpec::Core::Configuration::ExposeCurrentExample
1345
+ end
1346
+ class RSpec::Core::Parser
1347
+ def add_tag_filter(options, filter_type, tag_name, value = nil); end
1348
+ def configure_only_failures(options); end
1349
+ def initialize(original_args); end
1350
+ def original_args; end
1351
+ def parse(source = nil); end
1352
+ def parser(options); end
1353
+ def self.parse(args, source = nil); end
1354
+ def set_fail_fast(options, value); end
1355
+ end
1356
+ class RSpec::Core::ConfigurationOptions
1357
+ def args; end
1358
+ def args_from_options_file(path); end
1359
+ def command_line_options; end
1360
+ def configure(config); end
1361
+ def configure_filter_manager(filter_manager); end
1362
+ def custom_options; end
1363
+ def custom_options_file; end
1364
+ def env_options; end
1365
+ def file_options; end
1366
+ def force?(key); end
1367
+ def global_options; end
1368
+ def global_options_file; end
1369
+ def home_options_file_path; end
1370
+ def initialize(args); end
1371
+ def load_formatters_into(config); end
1372
+ def local_options; end
1373
+ def local_options_file; end
1374
+ def options; end
1375
+ def options_file_as_erb_string(path); end
1376
+ def options_from(path); end
1377
+ def order(keys); end
1378
+ def organize_options; end
1379
+ def parse_args_ignoring_files_or_dirs_to_run(args, source); end
1380
+ def process_options_into(config); end
1381
+ def project_options; end
1382
+ def project_options_file; end
1383
+ def resolve_xdg_config_home; end
1384
+ def xdg_options_file_if_exists; end
1385
+ def xdg_options_file_path; end
1386
+ end
1387
+ class RSpec::Core::Runner
1388
+ def configuration; end
1389
+ def configure(err, out); end
1390
+ def exit_code(examples_passed = nil); end
1391
+ def initialize(options, configuration = nil, world = nil); end
1392
+ def options; end
1393
+ def persist_example_statuses; end
1394
+ def run(err, out); end
1395
+ def run_specs(example_groups); end
1396
+ def self.autorun; end
1397
+ def self.autorun_disabled?; end
1398
+ def self.disable_autorun!; end
1399
+ def self.handle_interrupt; end
1400
+ def self.installed_at_exit?; end
1401
+ def self.invoke; end
1402
+ def self.perform_at_exit; end
1403
+ def self.run(args, err = nil, out = nil); end
1404
+ def self.running_in_drb?; end
1405
+ def self.trap_interrupt; end
1406
+ def setup(err, out); end
1407
+ def world; end
1408
+ end
1409
+ module RSpec::Core::Invocations
1410
+ end
1411
+ class RSpec::Core::Invocations::InitializeProject
1412
+ def call(*_args); end
1413
+ end
1414
+ class RSpec::Core::Invocations::DRbWithFallback
1415
+ def call(options, err, out); end
1416
+ end
1417
+ class RSpec::Core::Invocations::Bisect
1418
+ def bisect_formatter_klass_for(argument); end
1419
+ def call(options, err, out); end
1420
+ end
1421
+ class RSpec::Core::Invocations::PrintVersion
1422
+ def call(_options, _err, out); end
1423
+ end
1424
+ class RSpec::Core::Invocations::PrintHelp < Struct
1425
+ def call(_options, _err, out); end
1426
+ def hidden_options; end
1427
+ def hidden_options=(_); end
1428
+ def parser; end
1429
+ def parser=(_); end
1430
+ def self.[](*arg0); end
1431
+ def self.inspect; end
1432
+ def self.keyword_init?; end
1433
+ def self.members; end
1434
+ def self.new(*arg0); end
1435
+ end
1436
+ class RSpec::Core::Example
1437
+ def assign_generated_description; end
1438
+ def clock; end
1439
+ def clock=(arg0); end
1440
+ def description; end
1441
+ def display_exception; end
1442
+ def display_exception=(ex); end
1443
+ def duplicate_with(metadata_overrides = nil); end
1444
+ def example_group; end
1445
+ def example_group_instance; end
1446
+ def exception; end
1447
+ def execution_result; end
1448
+ def fail_with_exception(reporter, exception); end
1449
+ def file_path; end
1450
+ def finish(reporter); end
1451
+ def full_description; end
1452
+ def generate_description; end
1453
+ def hooks; end
1454
+ def id; end
1455
+ def initialize(example_group_class, description, user_metadata, example_block = nil); end
1456
+ def inspect; end
1457
+ def inspect_output; end
1458
+ def instance_exec(*args, &block); end
1459
+ def location; end
1460
+ def location_description; end
1461
+ def location_rerun_argument; end
1462
+ def metadata; end
1463
+ def mocks_need_verification?; end
1464
+ def pending; end
1465
+ def pending?; end
1466
+ def record_finished(status, reporter); end
1467
+ def reporter; end
1468
+ def rerun_argument; end
1469
+ def run(example_group_instance, reporter); end
1470
+ def run_after_example; end
1471
+ def run_before_example; end
1472
+ def self.delegate_to_metadata(key); end
1473
+ def self.parse_id(id); end
1474
+ def set_aggregate_failures_exception(exception); end
1475
+ def set_exception(exception); end
1476
+ def skip; end
1477
+ def skip_with_exception(reporter, exception); end
1478
+ def skipped?; end
1479
+ def start(reporter); end
1480
+ def to_s; end
1481
+ def update_inherited_metadata(updates); end
1482
+ def verify_mocks; end
1483
+ def with_around_and_singleton_context_hooks; end
1484
+ def with_around_example_hooks; end
1485
+ end
1486
+ class RSpec::Core::Example::Procsy
1487
+ def <<(*a, &b); end
1488
+ def ==(*a, &b); end
1489
+ def ===(*a, &b); end
1490
+ def >>(*a, &b); end
1491
+ def [](*a, &b); end
1492
+ def arity(*a, &b); end
1493
+ def binding(*a, &b); end
1494
+ def call(*args, &block); end
1495
+ def clock(*a, &b); end
1496
+ def clock=(*a, &b); end
1497
+ def clone(*a, &b); end
1498
+ def curry(*a, &b); end
1499
+ def description(*a, &b); end
1500
+ def dup(*a, &b); end
1501
+ def duplicate_with(*a, &b); end
1502
+ def eql?(*a, &b); end
1503
+ def example; end
1504
+ def example_group(*a, &b); end
1505
+ def example_group_instance(*a, &b); end
1506
+ def exception(*a, &b); end
1507
+ def executed?; end
1508
+ def execution_result(*a, &b); end
1509
+ def file_path(*a, &b); end
1510
+ def full_description(*a, &b); end
1511
+ def hash(*a, &b); end
1512
+ def id(*a, &b); end
1513
+ def initialize(example, &block); end
1514
+ def inspect; end
1515
+ def inspect_output(*a, &b); end
1516
+ def lambda?(*a, &b); end
1517
+ def location(*a, &b); end
1518
+ def location_rerun_argument(*a, &b); end
1519
+ def metadata(*a, &b); end
1520
+ def parameters(*a, &b); end
1521
+ def pending(*a, &b); end
1522
+ def pending?(*a, &b); end
1523
+ def reporter(*a, &b); end
1524
+ def rerun_argument(*a, &b); end
1525
+ def ruby2_keywords(*a, &b); end
1526
+ def run(*args, &block); end
1527
+ def skip(*a, &b); end
1528
+ def skipped?(*a, &b); end
1529
+ def source_location(*a, &b); end
1530
+ def to_proc; end
1531
+ def update_inherited_metadata(*a, &b); end
1532
+ def wrap(&block); end
1533
+ def yield(*a, &b); end
1534
+ end
1535
+ class RSpec::Core::Example::ExecutionResult
1536
+ def calculate_run_time(finished_at); end
1537
+ def ensure_timing_set(clock); end
1538
+ def example_skipped?; end
1539
+ def exception; end
1540
+ def exception=(arg0); end
1541
+ def finished_at; end
1542
+ def finished_at=(arg0); end
1543
+ def get_value(name); end
1544
+ def hash_for_delegation; end
1545
+ def issue_deprecation(_method_name, *_args); end
1546
+ def pending_exception; end
1547
+ def pending_exception=(arg0); end
1548
+ def pending_fixed; end
1549
+ def pending_fixed=(arg0); end
1550
+ def pending_fixed?; end
1551
+ def pending_message; end
1552
+ def pending_message=(arg0); end
1553
+ def record_finished(status, finished_at); end
1554
+ def run_time; end
1555
+ def run_time=(arg0); end
1556
+ def set_value(name, value); end
1557
+ def started_at; end
1558
+ def started_at=(arg0); end
1559
+ def status; end
1560
+ def status=(arg0); end
1561
+ extend RSpec::Core::HashImitatable::ClassMethods
1562
+ include RSpec::Core::HashImitatable
1563
+ end
1564
+ class RSpec::Core::SuiteHookContext < RSpec::Core::Example
1565
+ def initialize(hook_description, reporter); end
1566
+ def set_exception(exception); end
1567
+ end
1568
+ class RSpec::Core::SharedExampleGroupModule < Module
1569
+ def definition; end
1570
+ def include_in(klass, inclusion_line, args, customization_block); end
1571
+ def included(klass); end
1572
+ def initialize(description, definition, metadata); end
1573
+ def inspect; end
1574
+ def to_s; end
1575
+ end
1576
+ module RSpec::Core::SharedExampleGroup
1577
+ def shared_context(name, *args, &block); end
1578
+ def shared_examples(name, *args, &block); end
1579
+ def shared_examples_for(name, *args, &block); end
1580
+ end
1581
+ module RSpec::Core::SharedExampleGroup::TopLevelDSL
1582
+ def self.definitions; end
1583
+ def self.expose_globally!; end
1584
+ def self.exposed_globally?; end
1585
+ def self.remove_globally!; end
1586
+ end
1587
+ class RSpec::Core::SharedExampleGroup::Registry
1588
+ def add(context, name, *metadata_args, &block); end
1589
+ def ensure_block_has_source_location(_block); end
1590
+ def find(lookup_contexts, name); end
1591
+ def formatted_location(block); end
1592
+ def legacy_add(context, name, *metadata_args, &block); end
1593
+ def shared_example_groups; end
1594
+ def valid_name?(candidate); end
1595
+ def warn_if_key_taken(context, key, new_block); end
1596
+ end
1597
+ class RSpec::Core::ExampleGroup
1598
+ def described_class; end
1599
+ def initialize(inspect_output = nil); end
1600
+ def inspect; end
1601
+ def method_missing(name, *args, **); end
1602
+ def self.add_example(example); end
1603
+ def self.before_context_ivars; end
1604
+ def self.children; end
1605
+ def self.context(*args, &example_group_block); end
1606
+ def self.currently_executing_a_context_hook?; end
1607
+ def self.declaration_locations; end
1608
+ def self.define_example_group_method(name, metadata = nil); end
1609
+ def self.define_example_method(name, extra_options = nil); end
1610
+ def self.define_nested_shared_group_method(new_name, report_label = nil); end
1611
+ def self.delegate_to_metadata(*names); end
1612
+ def self.descendant_filtered_examples; end
1613
+ def self.descendants; end
1614
+ def self.describe(*args, &example_group_block); end
1615
+ def self.described_class; end
1616
+ def self.description; end
1617
+ def self.each_instance_variable_for_example(group); end
1618
+ def self.ensure_example_groups_are_configured; end
1619
+ def self.example(*all_args, &block); end
1620
+ def self.example_group(*args, &example_group_block); end
1621
+ def self.examples; end
1622
+ def self.fcontext(*args, &example_group_block); end
1623
+ def self.fdescribe(*args, &example_group_block); end
1624
+ def self.fexample(*all_args, &block); end
1625
+ def self.file_path; end
1626
+ def self.filtered_examples; end
1627
+ def self.find_and_eval_shared(label, name, inclusion_location, *args, &customization_block); end
1628
+ def self.fit(*all_args, &block); end
1629
+ def self.focus(*all_args, &block); end
1630
+ def self.for_filtered_examples(reporter, &block); end
1631
+ def self.fspecify(*all_args, &block); end
1632
+ def self.id; end
1633
+ def self.idempotently_define_singleton_method(name, &definition); end
1634
+ def self.include_context(name, *args, &block); end
1635
+ def self.include_examples(name, *args, &block); end
1636
+ def self.it(*all_args, &block); end
1637
+ def self.it_behaves_like(name, *args, &customization_block); end
1638
+ def self.it_should_behave_like(name, *args, &customization_block); end
1639
+ def self.location; end
1640
+ def self.metadata; end
1641
+ def self.method_missing(name, *args); end
1642
+ def self.next_runnable_index_for(file); end
1643
+ def self.ordering_strategy; end
1644
+ def self.parent_groups; end
1645
+ def self.pending(*all_args, &block); end
1646
+ def self.remove_example(example); end
1647
+ def self.reset_memoized; end
1648
+ def self.run(reporter = nil); end
1649
+ def self.run_after_context_hooks(example_group_instance); end
1650
+ def self.run_before_context_hooks(example_group_instance); end
1651
+ def self.run_examples(reporter); end
1652
+ def self.set_it_up(description, args, registration_collection, &example_group_block); end
1653
+ def self.set_ivars(instance, ivars); end
1654
+ def self.skip(*all_args, &block); end
1655
+ def self.specify(*all_args, &block); end
1656
+ def self.store_before_context_ivars(example_group_instance); end
1657
+ def self.subclass(parent, description, args, registration_collection, &example_group_block); end
1658
+ def self.superclass_before_context_ivars; end
1659
+ def self.superclass_metadata; end
1660
+ def self.top_level?; end
1661
+ def self.top_level_description; end
1662
+ def self.traverse_tree_until(&block); end
1663
+ def self.update_inherited_metadata(updates); end
1664
+ def self.with_replaced_metadata(meta); end
1665
+ def self.xcontext(*args, &example_group_block); end
1666
+ def self.xdescribe(*args, &example_group_block); end
1667
+ def self.xexample(*all_args, &block); end
1668
+ def self.xit(*all_args, &block); end
1669
+ def self.xspecify(*all_args, &block); end
1670
+ extend RSpec::Core::Hooks
1671
+ extend RSpec::Core::MemoizedHelpers::ClassMethods
1672
+ extend RSpec::Core::SharedExampleGroup
1673
+ include RSpec::Core::MemoizedHelpers
1674
+ include RSpec::Core::Pending
1675
+ end
1676
+ class RSpec::Core::ExampleGroup::WrongScopeError < NoMethodError
1677
+ end
1678
+ class RSpec::Core::AnonymousExampleGroup < RSpec::Core::ExampleGroup
1679
+ def self.metadata; end
1680
+ end
1681
+ class RSpec::Core::SharedExampleGroupInclusionStackFrame
1682
+ def description; end
1683
+ def formatted_inclusion_location; end
1684
+ def inclusion_location; end
1685
+ def initialize(shared_group_name, inclusion_location); end
1686
+ def self.current_backtrace; end
1687
+ def self.shared_example_group_inclusions; end
1688
+ def self.with_frame(name, location); end
1689
+ def shared_group_name; end
1690
+ end
1691
+ module RSpec::ExampleGroups
1692
+ def self.assign_const(group); end
1693
+ def self.base_name_for(group); end
1694
+ def self.constant_scope_for(group); end
1695
+ def self.disambiguate(name, const_scope); end
1696
+ def self.remove_all_constants; end
1697
+ extend RSpec::Support::RecursiveConstMethods
1698
+ end
1699
+ module RSpec::Support
1700
+ def self.require_rspec_core(f); end
1701
+ end
1702
+ class RSpec::Core::Time
1703
+ def self.now(in: nil); end
1704
+ end
1705
+ class Module
1706
+ end
1707
+ module RSpec::Core::SharedContext
1708
+ def __shared_context_recordings; end
1709
+ def after(*args, &block); end
1710
+ def append_after(*args, &block); end
1711
+ def append_before(*args, &block); end
1712
+ def around(*args, &block); end
1713
+ def before(*args, &block); end
1714
+ def context(*args, &block); end
1715
+ def describe(*args, &block); end
1716
+ def hooks(*args, &block); end
1717
+ def included(group); end
1718
+ def let!(*args, &block); end
1719
+ def let(*args, &block); end
1720
+ def prepend_after(*args, &block); end
1721
+ def prepend_before(*args, &block); end
1722
+ def self.record(methods); end
1723
+ def subject!(*args, &block); end
1724
+ def subject(*args, &block); end
1725
+ end
1726
+ class RSpec::Core::SharedContext::Recording < Struct
1727
+ def args; end
1728
+ def args=(_); end
1729
+ def block; end
1730
+ def block=(_); end
1731
+ def method_name; end
1732
+ def method_name=(_); end
1733
+ def playback_onto(group); end
1734
+ def self.[](*arg0); end
1735
+ def self.inspect; end
1736
+ def self.keyword_init?; end
1737
+ def self.members; end
1738
+ def self.new(*arg0); end
1739
+ end
1740
+ class RSpec::Core::ExampleStatusPersister
1741
+ def dump_statuses(unparsed_previous_runs); end
1742
+ def initialize(examples, file_name); end
1743
+ def persist; end
1744
+ def self.load_from(file_name); end
1745
+ def self.persist(examples, file_name); end
1746
+ def statuses_from_this_run; end
1747
+ end
1748
+ class RSpec::Core::ExampleStatusMerger
1749
+ def delete_previous_examples_that_no_longer_exist; end
1750
+ def example_must_no_longer_exist?(ex_id); end
1751
+ def hash_from(example_list); end
1752
+ def initialize(this_run, from_previous_runs); end
1753
+ def loaded_spec_files; end
1754
+ def merge; end
1755
+ def self.merge(this_run, from_previous_runs); end
1756
+ def sort_value_from(example); end
1757
+ def spec_file_from(ex_id); end
1758
+ end
1759
+ class RSpec::Core::ExampleStatusDumper
1760
+ def column_widths; end
1761
+ def dump; end
1762
+ def formatted_header_rows; end
1763
+ def formatted_row_from(row_values); end
1764
+ def formatted_value_rows; end
1765
+ def headers; end
1766
+ def initialize(examples); end
1767
+ def rows; end
1768
+ def self.dump(examples); end
1769
+ end
1770
+ class RSpec::Core::ExampleStatusParser
1771
+ def headers; end
1772
+ def initialize(string); end
1773
+ def parse; end
1774
+ def parse_row(line); end
1775
+ def self.parse(string); end
1776
+ def split_line(line); end
1777
+ end
1778
+ class RSpec::Core::Profiler
1779
+ def example_group_finished(notification); end
1780
+ def example_group_started(notification); end
1781
+ def example_groups; end
1782
+ def example_started(notification); end
1783
+ def initialize; end
1784
+ end
1785
+ class RSpec::Core::DidYouMean
1786
+ def call; end
1787
+ def formats(probables); end
1788
+ def initialize(relative_file_name); end
1789
+ def red_font(mytext); end
1790
+ def relative_file_name; end
1791
+ def top_and_tail(rspec_format); end
1792
+ end
1793
+ class RSpec::Core::Formatters::BaseFormatter
1794
+ def close(_notification); end
1795
+ def example_group; end
1796
+ def example_group=(arg0); end
1797
+ def example_group_started(notification); end
1798
+ def initialize(output); end
1799
+ def output; end
1800
+ def output_supports_sync; end
1801
+ def restore_sync_output; end
1802
+ def start(notification); end
1803
+ def start_sync_output; end
1804
+ end
1805
+ class RSpec::Core::Formatters::BaseTextFormatter < RSpec::Core::Formatters::BaseFormatter
1806
+ def close(_notification); end
1807
+ def dump_failures(notification); end
1808
+ def dump_pending(notification); end
1809
+ def dump_summary(summary); end
1810
+ def message(notification); end
1811
+ def seed(notification); end
1812
+ end
1813
+ class RSpec::Core::Formatters::DocumentationFormatter < RSpec::Core::Formatters::BaseTextFormatter
1814
+ def current_indentation(offset = nil); end
1815
+ def example_failed(failure); end
1816
+ def example_group_finished(_notification); end
1817
+ def example_group_started(notification); end
1818
+ def example_passed(passed); end
1819
+ def example_pending(pending); end
1820
+ def example_started(_notification); end
1821
+ def failure_output(example); end
1822
+ def flush_messages; end
1823
+ def initialize(output); end
1824
+ def message(notification); end
1825
+ def next_failure_index; end
1826
+ def passed_output(example); end
1827
+ def pending_output(example, message); end
1828
+ end
1829
+ class RSpec::Core::Formatters::HtmlPrinter
1830
+ def flush; end
1831
+ def indentation_style(number_of_parents); end
1832
+ def initialize(output); end
1833
+ def make_example_group_header_red(group_id); end
1834
+ def make_example_group_header_yellow(group_id); end
1835
+ def make_header_red; end
1836
+ def make_header_yellow; end
1837
+ def move_progress(percent_done); end
1838
+ def print_example_failed(pending_fixed, description, run_time, failure_id, exception, extra_content); end
1839
+ def print_example_group_end; end
1840
+ def print_example_group_start(group_id, description, number_of_parents); end
1841
+ def print_example_passed(description, run_time); end
1842
+ def print_example_pending(description, pending_message); end
1843
+ def print_html_start; end
1844
+ def print_summary(duration, example_count, failure_count, pending_count); end
1845
+ include ERB::Util
1846
+ end
1847
+ class RSpec::Core::Formatters::HtmlFormatter < RSpec::Core::Formatters::BaseFormatter
1848
+ def dump_summary(summary); end
1849
+ def example_failed(failure); end
1850
+ def example_group_number; end
1851
+ def example_group_started(notification); end
1852
+ def example_number; end
1853
+ def example_passed(passed); end
1854
+ def example_pending(pending); end
1855
+ def example_started(_notification); end
1856
+ def extra_failure_content(failure); end
1857
+ def initialize(output); end
1858
+ def percent_done; end
1859
+ def start(notification); end
1860
+ def start_dump(_notification); end
1861
+ end
1862
+ class RSpec::Core::Formatters::FallbackMessageFormatter
1863
+ def initialize(output); end
1864
+ def message(notification); end
1865
+ def output; end
1866
+ end
1867
+ class RSpec::Core::Formatters::ProgressFormatter < RSpec::Core::Formatters::BaseTextFormatter
1868
+ def example_failed(_notification); end
1869
+ def example_passed(_notification); end
1870
+ def example_pending(_notification); end
1871
+ def start_dump(_notification); end
1872
+ end
1873
+ class RSpec::Core::Formatters::ProfileFormatter
1874
+ def bold(text); end
1875
+ def dump_profile(profile); end
1876
+ def dump_profile_slowest_example_groups(profile); end
1877
+ def dump_profile_slowest_examples(profile); end
1878
+ def format_caller(caller_info); end
1879
+ def initialize(output); end
1880
+ def output; end
1881
+ end
1882
+ class RSpec::Core::Formatters::JsonFormatter < RSpec::Core::Formatters::BaseFormatter
1883
+ def close(_notification); end
1884
+ def dump_profile(profile); end
1885
+ def dump_profile_slowest_example_groups(profile); end
1886
+ def dump_profile_slowest_examples(profile); end
1887
+ def dump_summary(summary); end
1888
+ def format_example(example); end
1889
+ def initialize(output); end
1890
+ def message(notification); end
1891
+ def output_hash; end
1892
+ def seed(notification); end
1893
+ def stop(notification); end
1894
+ end
1895
+ module RSpec::Core::Bisect
1896
+ end
1897
+ class RSpec::Core::Bisect::ExampleSetDescriptor < Struct
1898
+ def all_example_ids; end
1899
+ def all_example_ids=(_); end
1900
+ def failed_example_ids; end
1901
+ def failed_example_ids=(_); end
1902
+ def self.[](*arg0); end
1903
+ def self.inspect; end
1904
+ def self.keyword_init?; end
1905
+ def self.members; end
1906
+ def self.new(*arg0); end
1907
+ end
1908
+ class RSpec::Core::Bisect::BisectFailedError < StandardError
1909
+ def self.for_failed_spec_run(spec_output); end
1910
+ end
1911
+ class RSpec::Core::Bisect::Notifier
1912
+ def initialize(formatter); end
1913
+ def publish(event, *args); end
1914
+ end
1915
+ class RSpec::Core::Bisect::Channel
1916
+ def close; end
1917
+ def initialize; end
1918
+ def receive; end
1919
+ def send(message); end
1920
+ end
1921
+ class RSpec::Core::Formatters::BaseBisectFormatter
1922
+ def example_failed(notification); end
1923
+ def example_finished(notification); end
1924
+ def initialize(expected_failures); end
1925
+ def self.inherited(formatter); end
1926
+ def start_dump(_notification); end
1927
+ end
1928
+ class RSpec::Core::Formatters::BisectDRbFormatter < RSpec::Core::Formatters::BaseBisectFormatter
1929
+ def initialize(_output); end
1930
+ def notify_results(results); end
1931
+ end
1932
+ class RSpec::Core::Formatters::FailureListFormatter < RSpec::Core::Formatters::BaseFormatter
1933
+ def dump_profile(_profile); end
1934
+ def example_failed(failure); end
1935
+ def message(_message); end
1936
+ end
1937
+ module RSpec::Core::MockingAdapters
1938
+ end
1939
+ module RSpec::Core::MockingAdapters::RSpec
1940
+ def self.configuration; end
1941
+ def self.framework_name; end
1942
+ def setup_mocks_for_rspec; end
1943
+ def teardown_mocks_for_rspec; end
1944
+ def verify_mocks_for_rspec; end
1945
+ include RSpec::Mocks::ExampleMethods
1946
+ include RSpec::Mocks::ExampleMethods::ExpectHost
1947
+ end