lazy_migrate 0.1.1 → 0.3.0

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