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