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,4802 @@
1
+ # This file is autogenerated. Do not edit it by hand. Regenerate it with:
2
+ # srb rbi hidden-definitions
3
+
4
+ # typed: autogenerated
5
+
6
+ # wrong constant name <DeclBuilderForProcs>
7
+ # wrong constant name <DeclBuilderForProcs>
8
+ # wrong constant name <Class:<DeclBuilderForProcs>>
9
+ # wrong constant name <Magic>
10
+ # wrong constant name <Magic>
11
+ # wrong constant name <Class:<Magic>>
12
+ # wrong constant name <RESERVED_0>
13
+ # wrong constant name <RESERVED_100>
14
+ # wrong constant name <RESERVED_101>
15
+ # wrong constant name <RESERVED_102>
16
+ # wrong constant name <RESERVED_103>
17
+ # wrong constant name <RESERVED_104>
18
+ # wrong constant name <RESERVED_105>
19
+ # wrong constant name <RESERVED_106>
20
+ # wrong constant name <RESERVED_107>
21
+ # wrong constant name <RESERVED_108>
22
+ # wrong constant name <RESERVED_109>
23
+ # wrong constant name <RESERVED_10>
24
+ # wrong constant name <RESERVED_110>
25
+ # wrong constant name <RESERVED_111>
26
+ # wrong constant name <RESERVED_11>
27
+ # wrong constant name <RESERVED_12>
28
+ # wrong constant name <RESERVED_13>
29
+ # wrong constant name <RESERVED_14>
30
+ # wrong constant name <RESERVED_15>
31
+ # wrong constant name <RESERVED_16>
32
+ # wrong constant name <RESERVED_17>
33
+ # wrong constant name <RESERVED_18>
34
+ # wrong constant name <RESERVED_19>
35
+ # wrong constant name <RESERVED_1>
36
+ # wrong constant name <RESERVED_20>
37
+ # wrong constant name <RESERVED_21>
38
+ # wrong constant name <RESERVED_22>
39
+ # wrong constant name <RESERVED_23>
40
+ # wrong constant name <RESERVED_24>
41
+ # wrong constant name <RESERVED_25>
42
+ # wrong constant name <RESERVED_26>
43
+ # wrong constant name <RESERVED_27>
44
+ # wrong constant name <RESERVED_28>
45
+ # wrong constant name <RESERVED_29>
46
+ # wrong constant name <RESERVED_2>
47
+ # wrong constant name <RESERVED_30>
48
+ # wrong constant name <RESERVED_31>
49
+ # wrong constant name <RESERVED_32>
50
+ # wrong constant name <RESERVED_33>
51
+ # wrong constant name <RESERVED_34>
52
+ # wrong constant name <RESERVED_35>
53
+ # wrong constant name <RESERVED_36>
54
+ # wrong constant name <RESERVED_37>
55
+ # wrong constant name <RESERVED_38>
56
+ # wrong constant name <RESERVED_39>
57
+ # wrong constant name <RESERVED_3>
58
+ # wrong constant name <RESERVED_40>
59
+ # wrong constant name <RESERVED_41>
60
+ # wrong constant name <RESERVED_42>
61
+ # wrong constant name <RESERVED_43>
62
+ # wrong constant name <RESERVED_44>
63
+ # wrong constant name <RESERVED_45>
64
+ # wrong constant name <RESERVED_46>
65
+ # wrong constant name <RESERVED_47>
66
+ # wrong constant name <RESERVED_48>
67
+ # wrong constant name <RESERVED_49>
68
+ # wrong constant name <RESERVED_4>
69
+ # wrong constant name <RESERVED_50>
70
+ # wrong constant name <RESERVED_51>
71
+ # wrong constant name <RESERVED_52>
72
+ # wrong constant name <RESERVED_53>
73
+ # wrong constant name <RESERVED_54>
74
+ # wrong constant name <RESERVED_55>
75
+ # wrong constant name <RESERVED_56>
76
+ # wrong constant name <RESERVED_57>
77
+ # wrong constant name <RESERVED_58>
78
+ # wrong constant name <RESERVED_59>
79
+ # wrong constant name <RESERVED_5>
80
+ # wrong constant name <RESERVED_60>
81
+ # wrong constant name <RESERVED_61>
82
+ # wrong constant name <RESERVED_62>
83
+ # wrong constant name <RESERVED_63>
84
+ # wrong constant name <RESERVED_64>
85
+ # wrong constant name <RESERVED_65>
86
+ # wrong constant name <RESERVED_66>
87
+ # wrong constant name <RESERVED_67>
88
+ # wrong constant name <RESERVED_68>
89
+ # wrong constant name <RESERVED_69>
90
+ # wrong constant name <RESERVED_6>
91
+ # wrong constant name <RESERVED_70>
92
+ # wrong constant name <RESERVED_71>
93
+ # wrong constant name <RESERVED_72>
94
+ # wrong constant name <RESERVED_73>
95
+ # wrong constant name <RESERVED_74>
96
+ # wrong constant name <RESERVED_75>
97
+ # wrong constant name <RESERVED_76>
98
+ # wrong constant name <RESERVED_77>
99
+ # wrong constant name <RESERVED_78>
100
+ # wrong constant name <RESERVED_79>
101
+ # wrong constant name <RESERVED_7>
102
+ # wrong constant name <RESERVED_80>
103
+ # wrong constant name <RESERVED_81>
104
+ # wrong constant name <RESERVED_82>
105
+ # wrong constant name <RESERVED_83>
106
+ # wrong constant name <RESERVED_84>
107
+ # wrong constant name <RESERVED_85>
108
+ # wrong constant name <RESERVED_86>
109
+ # wrong constant name <RESERVED_87>
110
+ # wrong constant name <RESERVED_88>
111
+ # wrong constant name <RESERVED_89>
112
+ # wrong constant name <RESERVED_8>
113
+ # wrong constant name <RESERVED_90>
114
+ # wrong constant name <RESERVED_91>
115
+ # wrong constant name <RESERVED_92>
116
+ # wrong constant name <RESERVED_93>
117
+ # wrong constant name <RESERVED_94>
118
+ # wrong constant name <RESERVED_95>
119
+ # wrong constant name <RESERVED_96>
120
+ # wrong constant name <RESERVED_97>
121
+ # wrong constant name <RESERVED_98>
122
+ # wrong constant name <RESERVED_99>
123
+ # wrong constant name <RESERVED_9>
124
+ # wrong constant name <TypeAlias>
125
+ # wrong constant name <TypeAlias>
126
+ # wrong constant name <any>
127
+ # wrong constant name <any>
128
+ # wrong constant name <root>
129
+ # wrong constant name <Class:<root>>
130
+ # wrong constant name <todo sym>
131
+ # wrong constant name <todo sym>
132
+ # uninitialized constant Abbrev
133
+ # uninitialized constant Abbrev
134
+ # wrong constant name connect_internal
135
+ # wrong constant name bsearch
136
+ # wrong constant name bsearch_index
137
+ # wrong constant name collect!
138
+ # wrong constant name dig
139
+ # wrong constant name filter!
140
+ # wrong constant name flatten!
141
+ # wrong constant name pack
142
+ # wrong constant name replace
143
+ # wrong constant name shelljoin
144
+ # wrong constant name to_h
145
+ # wrong constant name try_convert
146
+ # wrong constant name <Class:BasicObject>
147
+ # uninitialized constant Benchmark
148
+ # uninitialized constant Benchmark
149
+ # wrong constant name clone
150
+ # wrong constant name new
151
+ # wrong constant name clone
152
+ # wrong constant name irb
153
+ # wrong constant name <static-init>
154
+ # wrong constant name environment
155
+ # wrong constant name report
156
+ # wrong constant name write
157
+ # wrong constant name github_https?
158
+ # wrong constant name lockfile_upgrade_warning?
159
+ # wrong constant name <Class:Base>
160
+ # wrong constant name <Class:CompactIndex>
161
+ # wrong constant name <Class:Dependency>
162
+ # wrong constant name <Class:Downloader>
163
+ # wrong constant name <Class:Index>
164
+ # wrong constant name fetch_spec
165
+ # wrong constant name fetchers
166
+ # wrong constant name http_proxy
167
+ # wrong constant name initialize
168
+ # wrong constant name specs
169
+ # wrong constant name specs_with_retry
170
+ # wrong constant name uri
171
+ # wrong constant name use_api
172
+ # wrong constant name user_agent
173
+ # wrong constant name initialize
174
+ # wrong constant name initialize
175
+ # wrong constant name api_fetcher?
176
+ # wrong constant name available?
177
+ # wrong constant name display_uri
178
+ # wrong constant name downloader
179
+ # wrong constant name fetch_uri
180
+ # wrong constant name initialize
181
+ # wrong constant name remote
182
+ # wrong constant name remote_uri
183
+ # wrong constant name <static-init>
184
+ # wrong constant name initialize
185
+ # wrong constant name <Class:ClientFetcher>
186
+ # wrong constant name available?
187
+ # wrong constant name fetch_spec
188
+ # wrong constant name specs
189
+ # wrong constant name specs_for_names
190
+ # uninitialized constant Bundler::Fetcher::CompactIndex::ClientFetcher::Elem
191
+ # wrong constant name call
192
+ # wrong constant name fetcher
193
+ # wrong constant name fetcher=
194
+ # wrong constant name ui
195
+ # wrong constant name ui=
196
+ # wrong constant name <static-init>
197
+ # wrong constant name []
198
+ # wrong constant name members
199
+ # wrong constant name <static-init>
200
+ # wrong constant name compact_index_request
201
+ # wrong constant name dependency_api_uri
202
+ # wrong constant name dependency_specs
203
+ # wrong constant name get_formatted_specs_and_deps
204
+ # wrong constant name specs
205
+ # wrong constant name unmarshalled_dep_gems
206
+ # wrong constant name <static-init>
207
+ # wrong constant name connection
208
+ # wrong constant name fetch
209
+ # wrong constant name initialize
210
+ # wrong constant name redirect_limit
211
+ # wrong constant name request
212
+ # wrong constant name <static-init>
213
+ # wrong constant name fetch_spec
214
+ # wrong constant name specs
215
+ # wrong constant name <static-init>
216
+ # wrong constant name initialize
217
+ # wrong constant name <static-init>
218
+ # wrong constant name api_timeout
219
+ # wrong constant name api_timeout=
220
+ # wrong constant name disable_endpoint
221
+ # wrong constant name disable_endpoint=
222
+ # wrong constant name max_retries
223
+ # wrong constant name max_retries=
224
+ # wrong constant name redirect_limit
225
+ # wrong constant name redirect_limit=
226
+ # wrong constant name link
227
+ # wrong constant name cp_lr
228
+ # wrong constant name link_entry
229
+ # wrong constant name allowed_push_host
230
+ # wrong constant name already_tagged?
231
+ # wrong constant name base
232
+ # wrong constant name build_gem
233
+ # wrong constant name built_gem_path
234
+ # wrong constant name clean?
235
+ # wrong constant name committed?
236
+ # wrong constant name gem_key
237
+ # wrong constant name gem_push?
238
+ # wrong constant name gem_push_host
239
+ # wrong constant name gemspec
240
+ # wrong constant name git_push
241
+ # wrong constant name guard_clean
242
+ # wrong constant name initialize
243
+ # wrong constant name install
244
+ # wrong constant name install_gem
245
+ # wrong constant name name
246
+ # wrong constant name perform_git_push
247
+ # wrong constant name rubygem_push
248
+ # wrong constant name sh
249
+ # wrong constant name sh_with_input
250
+ # wrong constant name sh_with_status
251
+ # wrong constant name spec_path
252
+ # wrong constant name tag_version
253
+ # wrong constant name version
254
+ # wrong constant name version_tag
255
+ # wrong constant name <static-init>
256
+ # wrong constant name gemspec
257
+ # wrong constant name install_tasks
258
+ # wrong constant name instance
259
+ # wrong constant name instance=
260
+ # uninitialized constant Bundler::GemRemoteFetcher::BASE64_URI_TRANSLATE
261
+ # wrong constant name <static-init>
262
+ # wrong constant name initialize
263
+ # wrong constant name level
264
+ # wrong constant name level=
265
+ # wrong constant name locked_specs
266
+ # wrong constant name major?
267
+ # wrong constant name minor?
268
+ # wrong constant name prerelease_specified
269
+ # wrong constant name prerelease_specified=
270
+ # wrong constant name sort_versions
271
+ # wrong constant name strict
272
+ # wrong constant name strict=
273
+ # wrong constant name unlock_gems
274
+ # wrong constant name <static-init>
275
+ # wrong constant name <Class:GraphVizClient>
276
+ # wrong constant name edge_options
277
+ # wrong constant name groups
278
+ # wrong constant name initialize
279
+ # wrong constant name node_options
280
+ # wrong constant name output_file
281
+ # wrong constant name output_format
282
+ # wrong constant name relations
283
+ # wrong constant name viz
284
+ # wrong constant name g
285
+ # wrong constant name initialize
286
+ # wrong constant name run
287
+ # wrong constant name <static-init>
288
+ # wrong constant name <static-init>
289
+ # uninitialized constant Bundler::Index::Elem
290
+ # wrong constant name initialize
291
+ # wrong constant name inject
292
+ # wrong constant name remove
293
+ # wrong constant name <static-init>
294
+ # wrong constant name inject
295
+ # wrong constant name remove
296
+ # wrong constant name generate_bundler_executable_stubs
297
+ # wrong constant name generate_standalone_bundler_executable_stubs
298
+ # wrong constant name initialize
299
+ # wrong constant name post_install_messages
300
+ # wrong constant name run
301
+ # wrong constant name <static-init>
302
+ # wrong constant name ambiguous_gems
303
+ # wrong constant name ambiguous_gems=
304
+ # wrong constant name install
305
+ # uninitialized constant Bundler::Molinillo::DependencyGraph::Elem
306
+ # uninitialized constant Bundler::Molinillo::DependencyGraph::Log::Elem
307
+ # wrong constant name ==
308
+ # wrong constant name app_cache_dirname
309
+ # wrong constant name app_cache_path
310
+ # wrong constant name bundler_plugin_api_source?
311
+ # wrong constant name cache
312
+ # wrong constant name cached!
313
+ # wrong constant name can_lock?
314
+ # wrong constant name dependency_names
315
+ # wrong constant name dependency_names=
316
+ # wrong constant name double_check_for
317
+ # wrong constant name eql?
318
+ # wrong constant name fetch_gemspec_files
319
+ # wrong constant name gem_install_dir
320
+ # wrong constant name hash
321
+ # wrong constant name include?
322
+ # wrong constant name initialize
323
+ # wrong constant name install
324
+ # wrong constant name install_path
325
+ # wrong constant name installed?
326
+ # wrong constant name name
327
+ # wrong constant name options
328
+ # wrong constant name options_to_lock
329
+ # wrong constant name post_install
330
+ # wrong constant name remote!
331
+ # wrong constant name root
332
+ # wrong constant name specs
333
+ # wrong constant name to_lock
334
+ # wrong constant name to_s
335
+ # wrong constant name unlock!
336
+ # wrong constant name unmet_deps
337
+ # wrong constant name uri
338
+ # wrong constant name uri_hash
339
+ # wrong constant name <static-init>
340
+ # wrong constant name initialize
341
+ # wrong constant name <static-init>
342
+ # wrong constant name initialize
343
+ # wrong constant name <static-init>
344
+ # wrong constant name <Class:Git>
345
+ # wrong constant name <Class:Rubygems>
346
+ # wrong constant name install
347
+ # wrong constant name install_definition
348
+ # uninitialized constant Bundler::Plugin::Installer::Git::DEFAULT_GLOB
349
+ # wrong constant name generate_bin
350
+ # wrong constant name <static-init>
351
+ # uninitialized constant Bundler::Plugin::Installer::Rubygems::API_REQUEST_LIMIT
352
+ # Did you mean? Bundler::Plugin::Installer::Rubygems::API_REQUEST_SIZE
353
+ # uninitialized constant Bundler::Plugin::Installer::Rubygems::API_REQUEST_SIZE
354
+ # Did you mean? Bundler::Plugin::Installer::Rubygems::API_REQUEST_LIMIT
355
+ # wrong constant name <static-init>
356
+ # wrong constant name <static-init>
357
+ # wrong constant name <static-init>
358
+ # wrong constant name <static-init>
359
+ # wrong constant name lock
360
+ # wrong constant name attempt
361
+ # wrong constant name attempts
362
+ # wrong constant name current_run
363
+ # wrong constant name current_run=
364
+ # wrong constant name initialize
365
+ # wrong constant name name
366
+ # wrong constant name name=
367
+ # wrong constant name total_runs
368
+ # wrong constant name total_runs=
369
+ # wrong constant name <static-init>
370
+ # wrong constant name attempts
371
+ # wrong constant name default_attempts
372
+ # wrong constant name default_retries
373
+ # uninitialized constant Bundler::RubyGemsGemInstaller::ENV_PATHS
374
+ # wrong constant name <static-init>
375
+ # uninitialized constant Bundler::RubygemsIntegration::MoreFuture::EXT_LOCK
376
+ # Did you mean? Bundler::RubygemsIntegration::EXT_LOCK
377
+ # wrong constant name default_stubs
378
+ # wrong constant name ==
379
+ # wrong constant name fallback_timeout
380
+ # wrong constant name fallback_timeout=
381
+ # wrong constant name initialize
382
+ # wrong constant name uri
383
+ # wrong constant name uri=
384
+ # wrong constant name valid?
385
+ # wrong constant name validate!
386
+ # wrong constant name <static-init>
387
+ # wrong constant name each
388
+ # wrong constant name for
389
+ # wrong constant name initialize
390
+ # wrong constant name parse
391
+ # wrong constant name <static-init>
392
+ # wrong constant name <Class:Rule>
393
+ # wrong constant name description
394
+ # wrong constant name fail!
395
+ # wrong constant name initialize
396
+ # wrong constant name k
397
+ # wrong constant name set
398
+ # wrong constant name validate!
399
+ # wrong constant name <static-init>
400
+ # wrong constant name <static-init>
401
+ # wrong constant name validate!
402
+ # uninitialized constant Bundler::SpecSet::Elem
403
+ # wrong constant name add_color
404
+ # wrong constant name ask
405
+ # wrong constant name confirm
406
+ # wrong constant name debug
407
+ # wrong constant name debug?
408
+ # wrong constant name error
409
+ # wrong constant name info
410
+ # wrong constant name initialize
411
+ # wrong constant name level
412
+ # wrong constant name level=
413
+ # wrong constant name no?
414
+ # wrong constant name quiet?
415
+ # wrong constant name shell=
416
+ # wrong constant name silence
417
+ # wrong constant name trace
418
+ # wrong constant name unprinted_warnings
419
+ # wrong constant name warn
420
+ # wrong constant name yes?
421
+ # wrong constant name <static-init>
422
+ # wrong constant name <Class:NEq>
423
+ # wrong constant name <Class:ReqR>
424
+ # uninitialized constant Bundler::VersionRanges::NEq::Elem
425
+ # wrong constant name version
426
+ # wrong constant name version=
427
+ # wrong constant name <static-init>
428
+ # wrong constant name []
429
+ # wrong constant name members
430
+ # uninitialized constant Bundler::VersionRanges::ReqR::Elem
431
+ # wrong constant name <Class:Endpoint>
432
+ # wrong constant name cover?
433
+ # wrong constant name empty?
434
+ # wrong constant name left
435
+ # wrong constant name left=
436
+ # wrong constant name right
437
+ # wrong constant name right=
438
+ # wrong constant name single?
439
+ # uninitialized constant Bundler::VersionRanges::ReqR::Endpoint::Elem
440
+ # wrong constant name inclusive
441
+ # wrong constant name inclusive=
442
+ # wrong constant name version
443
+ # wrong constant name version=
444
+ # wrong constant name <static-init>
445
+ # wrong constant name []
446
+ # wrong constant name members
447
+ # wrong constant name <static-init>
448
+ # wrong constant name []
449
+ # wrong constant name members
450
+ # wrong constant name <static-init>
451
+ # wrong constant name empty?
452
+ # wrong constant name for
453
+ # wrong constant name for_many
454
+ # wrong constant name a
455
+ # wrong constant name base
456
+ # wrong constant name blockquote
457
+ # wrong constant name caption
458
+ # wrong constant name checkbox
459
+ # wrong constant name checkbox_group
460
+ # wrong constant name file_field
461
+ # wrong constant name form
462
+ # wrong constant name hidden
463
+ # wrong constant name html
464
+ # wrong constant name image_button
465
+ # wrong constant name img
466
+ # wrong constant name multipart_form
467
+ # wrong constant name password_field
468
+ # wrong constant name popup_menu
469
+ # wrong constant name radio_button
470
+ # wrong constant name radio_group
471
+ # wrong constant name reset
472
+ # wrong constant name scrolling_list
473
+ # wrong constant name submit
474
+ # wrong constant name text_field
475
+ # wrong constant name textarea
476
+ # wrong constant name <static-init>
477
+ # uninitialized constant CSV
478
+ # uninitialized constant CSV
479
+ # uninitialized constant Chalk
480
+ # uninitialized constant Chalk
481
+ # wrong constant name json_creatable?
482
+ # wrong constant name polar
483
+ # wrong constant name rect
484
+ # wrong constant name rectangular
485
+ # uninitialized constant Configatron
486
+ # uninitialized constant Configatron
487
+ # wrong constant name line_stub
488
+ # wrong constant name peek_result
489
+ # wrong constant name running?
490
+ # wrong constant name initialize
491
+ # wrong constant name !=
492
+ # wrong constant name ==
493
+ # wrong constant name __getobj__
494
+ # wrong constant name __setobj__
495
+ # wrong constant name eql?
496
+ # wrong constant name initialize
497
+ # wrong constant name marshal_dump
498
+ # wrong constant name marshal_load
499
+ # wrong constant name method_missing
500
+ # wrong constant name methods
501
+ # wrong constant name protected_methods
502
+ # wrong constant name public_methods
503
+ # wrong constant name const_missing
504
+ # wrong constant name delegating_block
505
+ # wrong constant name public_api
506
+ # wrong constant name class_name
507
+ # wrong constant name class_names
508
+ # wrong constant name corrections
509
+ # wrong constant name initialize
510
+ # wrong constant name scopes
511
+ # wrong constant name corrections
512
+ # wrong constant name original_message
513
+ # wrong constant name spell_checker
514
+ # wrong constant name to_s
515
+ # uninitialized constant DidYouMean::Formatter
516
+ # uninitialized constant DidYouMean::Formatter
517
+ # wrong constant name distance
518
+ # wrong constant name distance
519
+ # wrong constant name corrections
520
+ # wrong constant name initialize
521
+ # wrong constant name <static-init>
522
+ # wrong constant name distance
523
+ # wrong constant name min3
524
+ # wrong constant name corrections
525
+ # wrong constant name initialize
526
+ # wrong constant name method_name
527
+ # wrong constant name method_names
528
+ # wrong constant name receiver
529
+ # wrong constant name corrections
530
+ # wrong constant name initialize
531
+ # wrong constant name message_for
532
+ # wrong constant name <static-init>
533
+ # wrong constant name correct
534
+ # wrong constant name initialize
535
+ # wrong constant name corrections
536
+ # wrong constant name cvar_names
537
+ # wrong constant name initialize
538
+ # wrong constant name ivar_names
539
+ # wrong constant name lvar_names
540
+ # wrong constant name method_names
541
+ # wrong constant name name
542
+ # wrong constant name formatter
543
+ # wrong constant name formatter=
544
+ # wrong constant name children
545
+ # wrong constant name each_child
546
+ # wrong constant name children
547
+ # wrong constant name each_child
548
+ # wrong constant name empty?
549
+ # wrong constant name exists?
550
+ # wrong constant name tmpdir
551
+ # wrong constant name environment
552
+ # wrong constant name environment=
553
+ # wrong constant name require
554
+ # wrong constant name <static-init>
555
+ # wrong constant name <static-init>
556
+ # wrong constant name production?
557
+ # wrong constant name set
558
+ # wrong constant name test?
559
+ # wrong constant name to_sym
560
+ # wrong constant name initialize
561
+ # wrong constant name <static-init>
562
+ # wrong constant name <static-init>
563
+ # wrong constant name merchant
564
+ # wrong constant name merchant=
565
+ # wrong constant name password
566
+ # wrong constant name password=
567
+ # wrong constant name program
568
+ # wrong constant name program=
569
+ # wrong constant name username
570
+ # wrong constant name username=
571
+ # wrong constant name <static-init>
572
+ # wrong constant name config
573
+ # wrong constant name configure
574
+ # wrong constant name def_method
575
+ # wrong constant name def_module
576
+ # wrong constant name result_with_hash
577
+ # wrong constant name _dump
578
+ # wrong constant name convert
579
+ # wrong constant name convpath
580
+ # wrong constant name destination_encoding
581
+ # wrong constant name finish
582
+ # wrong constant name initialize
583
+ # wrong constant name insert_output
584
+ # wrong constant name last_error
585
+ # wrong constant name primitive_convert
586
+ # wrong constant name primitive_errinfo
587
+ # wrong constant name putback
588
+ # wrong constant name replacement
589
+ # wrong constant name replacement=
590
+ # wrong constant name source_encoding
591
+ # wrong constant name asciicompat_encoding
592
+ # wrong constant name search_convpath
593
+ # wrong constant name destination_encoding
594
+ # wrong constant name destination_encoding_name
595
+ # wrong constant name error_bytes
596
+ # wrong constant name incomplete_input?
597
+ # wrong constant name readagain_bytes
598
+ # wrong constant name source_encoding
599
+ # wrong constant name source_encoding_name
600
+ # wrong constant name destination_encoding
601
+ # wrong constant name destination_encoding_name
602
+ # wrong constant name error_char
603
+ # wrong constant name source_encoding
604
+ # wrong constant name source_encoding_name
605
+ # wrong constant name _load
606
+ # wrong constant name locale_charmap
607
+ # wrong constant name chain
608
+ # wrong constant name chunk
609
+ # wrong constant name chunk_while
610
+ # wrong constant name each_entry
611
+ # wrong constant name filter
612
+ # wrong constant name grep_v
613
+ # wrong constant name slice_after
614
+ # wrong constant name slice_before
615
+ # wrong constant name slice_when
616
+ # wrong constant name sum
617
+ # wrong constant name to_set
618
+ # wrong constant name uniq
619
+ # wrong constant name zip
620
+ # wrong constant name +
621
+ # wrong constant name <Class:ArithmeticSequence>
622
+ # wrong constant name <Class:Chain>
623
+ # wrong constant name each_with_index
624
+ # uninitialized constant Enumerator::ArithmeticSequence::Elem
625
+ # wrong constant name begin
626
+ # wrong constant name each
627
+ # wrong constant name end
628
+ # wrong constant name exclude_end?
629
+ # wrong constant name last
630
+ # wrong constant name step
631
+ # wrong constant name <static-init>
632
+ # uninitialized constant Enumerator::Chain::Elem
633
+ # wrong constant name <static-init>
634
+ # wrong constant name each
635
+ # wrong constant name initialize
636
+ # wrong constant name chunk
637
+ # wrong constant name chunk_while
638
+ # wrong constant name force
639
+ # wrong constant name slice_when
640
+ # wrong constant name <static-init>
641
+ # wrong constant name <static-init>
642
+ # wrong constant name <static-init>
643
+ # wrong constant name <static-init>
644
+ # wrong constant name <static-init>
645
+ # wrong constant name <static-init>
646
+ # wrong constant name <static-init>
647
+ # wrong constant name <static-init>
648
+ # wrong constant name <static-init>
649
+ # wrong constant name <static-init>
650
+ # wrong constant name <static-init>
651
+ # wrong constant name <static-init>
652
+ # wrong constant name <static-init>
653
+ # wrong constant name <static-init>
654
+ # wrong constant name <static-init>
655
+ # wrong constant name <static-init>
656
+ # wrong constant name <static-init>
657
+ # wrong constant name <static-init>
658
+ # wrong constant name <static-init>
659
+ # wrong constant name gid
660
+ # wrong constant name gid=
661
+ # wrong constant name mem
662
+ # wrong constant name mem=
663
+ # wrong constant name name
664
+ # wrong constant name name=
665
+ # wrong constant name passwd
666
+ # wrong constant name passwd=
667
+ # uninitialized constant Etc::Group::Elem
668
+ # wrong constant name []
669
+ # wrong constant name each
670
+ # wrong constant name members
671
+ # wrong constant name change
672
+ # wrong constant name change=
673
+ # wrong constant name dir
674
+ # wrong constant name dir=
675
+ # wrong constant name expire
676
+ # wrong constant name expire=
677
+ # wrong constant name gecos
678
+ # wrong constant name gecos=
679
+ # wrong constant name gid
680
+ # wrong constant name gid=
681
+ # wrong constant name name
682
+ # wrong constant name name=
683
+ # wrong constant name passwd
684
+ # wrong constant name passwd=
685
+ # wrong constant name shell
686
+ # wrong constant name shell=
687
+ # wrong constant name uclass
688
+ # wrong constant name uclass=
689
+ # wrong constant name uid
690
+ # wrong constant name uid=
691
+ # uninitialized constant Etc::Passwd::Elem
692
+ # wrong constant name []
693
+ # wrong constant name each
694
+ # wrong constant name members
695
+ # wrong constant name confstr
696
+ # wrong constant name endgrent
697
+ # wrong constant name endpwent
698
+ # wrong constant name getgrent
699
+ # wrong constant name getgrgid
700
+ # wrong constant name getgrnam
701
+ # wrong constant name getlogin
702
+ # wrong constant name getpwent
703
+ # wrong constant name getpwnam
704
+ # wrong constant name getpwuid
705
+ # wrong constant name group
706
+ # wrong constant name nprocessors
707
+ # wrong constant name passwd
708
+ # wrong constant name setgrent
709
+ # wrong constant name setpwent
710
+ # wrong constant name sysconf
711
+ # wrong constant name sysconfdir
712
+ # wrong constant name systmpdir
713
+ # wrong constant name uname
714
+ # wrong constant name full_message
715
+ # wrong constant name exception
716
+ # wrong constant name to_tty?
717
+ # uninitialized constant Exception2MessageMapper
718
+ # uninitialized constant Exception2MessageMapper
719
+ # wrong constant name <static-init>
720
+ # uninitialized constant Faker::Alphanumeric::LLetters
721
+ # Did you mean? Faker::Alphanumeric::Letters
722
+ # Faker::Alphanumeric::ULetters
723
+ # uninitialized constant Faker::Alphanumeric::Letters
724
+ # Did you mean? Faker::Alphanumeric::LLetters
725
+ # Faker::Alphanumeric::ULetters
726
+ # uninitialized constant Faker::Alphanumeric::Numbers
727
+ # Did you mean? Faker::Number
728
+ # uninitialized constant Faker::Alphanumeric::ULetters
729
+ # Did you mean? Faker::Alphanumeric::Letters
730
+ # Faker::Alphanumeric::LLetters
731
+ # uninitialized constant Faker::DrivingLicence::LLetters
732
+ # Did you mean? Faker::DrivingLicence::Letters
733
+ # Faker::DrivingLicence::ULetters
734
+ # uninitialized constant Faker::DrivingLicence::Letters
735
+ # Did you mean? Faker::DrivingLicence::LLetters
736
+ # Faker::DrivingLicence::ULetters
737
+ # uninitialized constant Faker::DrivingLicence::Numbers
738
+ # Did you mean? Faker::Number
739
+ # uninitialized constant Faker::DrivingLicence::ULetters
740
+ # Did you mean? Faker::DrivingLicence::Letters
741
+ # Faker::DrivingLicence::LLetters
742
+ # uninitialized constant Faker::Finance::LLetters
743
+ # Did you mean? Faker::Finance::Letters
744
+ # Faker::Finance::ULetters
745
+ # uninitialized constant Faker::Finance::Letters
746
+ # Did you mean? Faker::Finance::LLetters
747
+ # Faker::Finance::ULetters
748
+ # uninitialized constant Faker::Finance::Numbers
749
+ # Did you mean? Faker::Number
750
+ # uninitialized constant Faker::Finance::ULetters
751
+ # Did you mean? Faker::Finance::Letters
752
+ # Faker::Finance::LLetters
753
+ # uninitialized constant Faker::IDNumber::LLetters
754
+ # Did you mean? Faker::IDNumber::Letters
755
+ # Faker::IDNumber::ULetters
756
+ # uninitialized constant Faker::IDNumber::Letters
757
+ # Did you mean? Faker::IDNumber::LLetters
758
+ # Faker::IDNumber::ULetters
759
+ # uninitialized constant Faker::IDNumber::Numbers
760
+ # Did you mean? Faker::Number
761
+ # uninitialized constant Faker::IDNumber::ULetters
762
+ # Did you mean? Faker::IDNumber::Letters
763
+ # Faker::IDNumber::LLetters
764
+ # uninitialized constant Faker::Time::LLetters
765
+ # Did you mean? Faker::Time::Letters
766
+ # Faker::Time::ULetters
767
+ # uninitialized constant Faker::Time::Letters
768
+ # Did you mean? Faker::Time::LLetters
769
+ # Faker::Time::ULetters
770
+ # uninitialized constant Faker::Time::Numbers
771
+ # Did you mean? Faker::Number
772
+ # uninitialized constant Faker::Time::ULetters
773
+ # Did you mean? Faker::Time::Letters
774
+ # Faker::Time::LLetters
775
+ # uninitialized constant Faker::Types::LLetters
776
+ # Did you mean? Faker::Types::Letters
777
+ # Faker::Types::ULetters
778
+ # uninitialized constant Faker::Types::Letters
779
+ # Did you mean? Faker::Types::LLetters
780
+ # Faker::Types::ULetters
781
+ # uninitialized constant Faker::Types::Numbers
782
+ # Did you mean? Faker::Number
783
+ # uninitialized constant Faker::Types::ULetters
784
+ # Did you mean? Faker::Types::Letters
785
+ # Faker::Types::LLetters
786
+ # uninitialized constant Faker::Vehicle::LLetters
787
+ # Did you mean? Faker::Vehicle::Letters
788
+ # Faker::Vehicle::ULetters
789
+ # uninitialized constant Faker::Vehicle::Letters
790
+ # Did you mean? Faker::Vehicle::LLetters
791
+ # Faker::Vehicle::ULetters
792
+ # uninitialized constant Faker::Vehicle::Numbers
793
+ # Did you mean? Faker::Number
794
+ # uninitialized constant Faker::Vehicle::ULetters
795
+ # Did you mean? Faker::Vehicle::Letters
796
+ # Faker::Vehicle::LLetters
797
+ # wrong constant name resume
798
+ # wrong constant name transfer
799
+ # wrong constant name current
800
+ # wrong constant name yield
801
+ # wrong constant name size?
802
+ # wrong constant name empty?
803
+ # wrong constant name exists?
804
+ # wrong constant name lutime
805
+ # wrong constant name mkfifo
806
+ # uninitialized constant FileUtils::DryRun::VERSION
807
+ # Did you mean? FileUtils::VERSION
808
+ # uninitialized constant FileUtils::NoWrite::VERSION
809
+ # Did you mean? FileUtils::VERSION
810
+ # uninitialized constant FileUtils::Verbose::VERSION
811
+ # Did you mean? FileUtils::VERSION
812
+ # wrong constant name <static-init>
813
+ # wrong constant name find
814
+ # wrong constant name prune
815
+ # wrong constant name def_delegator
816
+ # wrong constant name def_delegators
817
+ # wrong constant name def_instance_delegator
818
+ # wrong constant name def_instance_delegators
819
+ # wrong constant name delegate
820
+ # wrong constant name instance_delegate
821
+ # wrong constant name _compile_method
822
+ # wrong constant name _delegator_method
823
+ # wrong constant name _valid_method?
824
+ # wrong constant name debug
825
+ # wrong constant name debug=
826
+ # wrong constant name <static-init>
827
+ # wrong constant name garbage_collect
828
+ # wrong constant name latest_gc_info
829
+ # wrong constant name stress=
830
+ # wrong constant name verify_internal_consistency
831
+ # wrong constant name verify_transient_heap_internal_consistency
832
+ # uninitialized constant Gem::Resolver::Molinillo::DependencyGraph::Log::Elem
833
+ # uninitialized constant Gem::Specification::Elem
834
+ # wrong constant name <Class:RequestParser>
835
+ # wrong constant name <Class:ResponseParser>
836
+ # wrong constant name <Class:Scanner>
837
+ # uninitialized constant HTTP::Cookie::Scanner::Id
838
+ # uninitialized constant HTTP::Cookie::Scanner::Version
839
+ # Did you mean? HTTP::Cookie::VERSION
840
+ # HTTP::VERSION
841
+ # wrong constant name initialize
842
+ # wrong constant name parse_cookie_date
843
+ # wrong constant name scan_cookie
844
+ # wrong constant name scan_dquoted
845
+ # wrong constant name scan_name
846
+ # wrong constant name scan_name_value
847
+ # wrong constant name scan_set_cookie
848
+ # wrong constant name scan_value
849
+ # wrong constant name skip_wsp
850
+ # wrong constant name <static-init>
851
+ # wrong constant name quote
852
+ # wrong constant name <static-init>
853
+ # wrong constant name <static-init>
854
+ # wrong constant name <static-init>
855
+ # wrong constant name <
856
+ # wrong constant name <=
857
+ # wrong constant name >
858
+ # wrong constant name >=
859
+ # wrong constant name compact
860
+ # wrong constant name compact!
861
+ # wrong constant name default_proc
862
+ # wrong constant name default_proc=
863
+ # wrong constant name dig
864
+ # wrong constant name fetch_values
865
+ # wrong constant name filter!
866
+ # wrong constant name flatten
867
+ # wrong constant name index
868
+ # wrong constant name merge!
869
+ # wrong constant name replace
870
+ # wrong constant name slice
871
+ # wrong constant name to_h
872
+ # wrong constant name to_proc
873
+ # wrong constant name transform_keys
874
+ # wrong constant name transform_keys!
875
+ # wrong constant name transform_values
876
+ # wrong constant name transform_values!
877
+ # wrong constant name update
878
+ # wrong constant name try_convert
879
+ # wrong constant name <Class:Gettext>
880
+ # wrong constant name <Class:Locale>
881
+ # wrong constant name <Class:Middleware>
882
+ # wrong constant name <Class:Tests>
883
+ # wrong constant name _fetch
884
+ # wrong constant name cache_key
885
+ # wrong constant name fetch
886
+ # wrong constant name translate
887
+ # wrong constant name <static-init>
888
+ # wrong constant name load_file
889
+ # wrong constant name normalized_path
890
+ # wrong constant name path_roots
891
+ # wrong constant name path_roots=
892
+ # wrong constant name <static-init>
893
+ # wrong constant name lookup
894
+ # wrong constant name <static-init>
895
+ # uninitialized constant I18n::Backend::Chain::DEFAULT_REPLACEMENT_CHAR
896
+ # wrong constant name <Class:Implementation>
897
+ # uninitialized constant I18n::Backend::Chain::Implementation::DEFAULT_REPLACEMENT_CHAR
898
+ # Did you mean? I18n::Backend::Chain::DEFAULT_REPLACEMENT_CHAR
899
+ # wrong constant name available_locales
900
+ # wrong constant name backends
901
+ # wrong constant name backends=
902
+ # wrong constant name eager_load!
903
+ # wrong constant name exists?
904
+ # wrong constant name init_translations
905
+ # wrong constant name initialize
906
+ # wrong constant name initialized?
907
+ # wrong constant name localize
908
+ # wrong constant name namespace_lookup?
909
+ # wrong constant name reload!
910
+ # wrong constant name store_translations
911
+ # wrong constant name translate
912
+ # wrong constant name translations
913
+ # wrong constant name <static-init>
914
+ # wrong constant name <static-init>
915
+ # wrong constant name exists?
916
+ # wrong constant name extract_non_symbol_default!
917
+ # wrong constant name translate
918
+ # wrong constant name <static-init>
919
+ # wrong constant name escape_default_separator
920
+ # wrong constant name find_link
921
+ # wrong constant name flatten_keys
922
+ # wrong constant name flatten_translations
923
+ # wrong constant name links
924
+ # wrong constant name normalize_flat_keys
925
+ # wrong constant name resolve_link
926
+ # wrong constant name store_link
927
+ # wrong constant name <static-init>
928
+ # wrong constant name escape_default_separator
929
+ # wrong constant name normalize_flat_keys
930
+ # wrong constant name <Class:PoData>
931
+ # wrong constant name load_po
932
+ # wrong constant name normalize
933
+ # wrong constant name normalize_pluralization
934
+ # wrong constant name parse
935
+ # uninitialized constant I18n::Backend::Gettext::PoData::Elem
936
+ # uninitialized constant I18n::Backend::Gettext::PoData::K
937
+ # uninitialized constant I18n::Backend::Gettext::PoData::V
938
+ # wrong constant name set_comment
939
+ # wrong constant name <static-init>
940
+ # wrong constant name <static-init>
941
+ # wrong constant name <Class:Compiler>
942
+ # wrong constant name compile_all_strings_in
943
+ # wrong constant name interpolate
944
+ # wrong constant name store_translations
945
+ # wrong constant name compile_if_an_interpolation
946
+ # wrong constant name compile_interpolation_token
947
+ # wrong constant name compiled_interpolation_body
948
+ # wrong constant name direct_key
949
+ # wrong constant name escape_key_sym
950
+ # wrong constant name escape_plain_str
951
+ # wrong constant name handle_interpolation_token
952
+ # wrong constant name interpolate_key
953
+ # wrong constant name interpolate_or_raise_missing
954
+ # wrong constant name interpolated_str?
955
+ # wrong constant name missing_key
956
+ # wrong constant name nil_key
957
+ # wrong constant name reserved_key
958
+ # wrong constant name tokenize
959
+ # wrong constant name <static-init>
960
+ # wrong constant name <static-init>
961
+ # wrong constant name available_locales
962
+ # wrong constant name eager_load!
963
+ # wrong constant name lookup
964
+ # wrong constant name memoized_lookup
965
+ # wrong constant name reload!
966
+ # wrong constant name reset_memoizations!
967
+ # wrong constant name store_translations
968
+ # wrong constant name <static-init>
969
+ # wrong constant name interpolate
970
+ # wrong constant name pluralize
971
+ # wrong constant name translate
972
+ # wrong constant name with_metadata
973
+ # wrong constant name <static-init>
974
+ # wrong constant name included
975
+ # wrong constant name pluralize
976
+ # wrong constant name pluralizer
977
+ # wrong constant name pluralizers
978
+ # wrong constant name <static-init>
979
+ # wrong constant name <Class:Helpers>
980
+ # uninitialized constant I18n::Gettext::Helpers::N_
981
+ # wrong constant name _
982
+ # wrong constant name gettext
983
+ # wrong constant name n_
984
+ # wrong constant name ngettext
985
+ # wrong constant name np_
986
+ # wrong constant name npgettext
987
+ # wrong constant name ns_
988
+ # wrong constant name nsgettext
989
+ # wrong constant name p_
990
+ # wrong constant name pgettext
991
+ # wrong constant name s_
992
+ # wrong constant name sgettext
993
+ # wrong constant name <static-init>
994
+ # wrong constant name <static-init>
995
+ # wrong constant name extract_scope
996
+ # wrong constant name plural_keys
997
+ # wrong constant name <Class:Fallbacks>
998
+ # wrong constant name <Class:Tag>
999
+ # uninitialized constant I18n::Locale::Fallbacks::Elem
1000
+ # uninitialized constant I18n::Locale::Fallbacks::K
1001
+ # uninitialized constant I18n::Locale::Fallbacks::V
1002
+ # wrong constant name []
1003
+ # wrong constant name compute
1004
+ # wrong constant name defaults
1005
+ # wrong constant name defaults=
1006
+ # wrong constant name initialize
1007
+ # wrong constant name map
1008
+ # wrong constant name <static-init>
1009
+ # wrong constant name <Class:Parents>
1010
+ # wrong constant name <Class:Rfc4646>
1011
+ # wrong constant name <Class:Simple>
1012
+ # wrong constant name parent
1013
+ # wrong constant name parents
1014
+ # wrong constant name self_and_parents
1015
+ # wrong constant name <static-init>
1016
+ # wrong constant name <Class:Parser>
1017
+ # wrong constant name to_sym
1018
+ # wrong constant name <static-init>
1019
+ # wrong constant name match
1020
+ # wrong constant name <static-init>
1021
+ # wrong constant name parser
1022
+ # wrong constant name parser=
1023
+ # wrong constant name tag
1024
+ # wrong constant name initialize
1025
+ # wrong constant name subtags
1026
+ # wrong constant name tag
1027
+ # wrong constant name to_a
1028
+ # wrong constant name to_sym
1029
+ # wrong constant name <static-init>
1030
+ # wrong constant name tag
1031
+ # wrong constant name <static-init>
1032
+ # wrong constant name implementation
1033
+ # wrong constant name implementation=
1034
+ # wrong constant name tag
1035
+ # wrong constant name <static-init>
1036
+ # wrong constant name call
1037
+ # wrong constant name initialize
1038
+ # wrong constant name <static-init>
1039
+ # wrong constant name <Class:Localization>
1040
+ # wrong constant name <static-init>
1041
+ # wrong constant name included
1042
+ # wrong constant name <static-init>
1043
+ # wrong constant name cache_key_digest
1044
+ # wrong constant name cache_key_digest=
1045
+ # wrong constant name cache_namespace
1046
+ # wrong constant name cache_namespace=
1047
+ # wrong constant name cache_store
1048
+ # wrong constant name cache_store=
1049
+ # wrong constant name fallbacks
1050
+ # wrong constant name fallbacks=
1051
+ # wrong constant name perform_caching?
1052
+ # wrong constant name beep
1053
+ # wrong constant name cooked
1054
+ # wrong constant name cooked!
1055
+ # wrong constant name cursor
1056
+ # wrong constant name cursor=
1057
+ # wrong constant name echo=
1058
+ # wrong constant name echo?
1059
+ # wrong constant name external_encoding
1060
+ # wrong constant name getch
1061
+ # wrong constant name getpass
1062
+ # wrong constant name goto
1063
+ # wrong constant name iflush
1064
+ # wrong constant name ioflush
1065
+ # wrong constant name noecho
1066
+ # wrong constant name nonblock
1067
+ # wrong constant name nonblock=
1068
+ # wrong constant name nonblock?
1069
+ # wrong constant name nread
1070
+ # wrong constant name oflush
1071
+ # wrong constant name pathconf
1072
+ # wrong constant name pread
1073
+ # wrong constant name pressed?
1074
+ # wrong constant name pwrite
1075
+ # wrong constant name raw
1076
+ # wrong constant name raw!
1077
+ # wrong constant name ready?
1078
+ # wrong constant name wait
1079
+ # wrong constant name wait_readable
1080
+ # wrong constant name wait_writable
1081
+ # wrong constant name winsize
1082
+ # wrong constant name winsize=
1083
+ # wrong constant name write_nonblock
1084
+ # wrong constant name console
1085
+ # wrong constant name foreach
1086
+ # wrong constant name pipe
1087
+ # wrong constant name &
1088
+ # wrong constant name <<
1089
+ # wrong constant name <=>
1090
+ # wrong constant name ==
1091
+ # wrong constant name ===
1092
+ # wrong constant name >>
1093
+ # wrong constant name <Class:AddressFamilyError>
1094
+ # wrong constant name <Class:Error>
1095
+ # wrong constant name <Class:InvalidAddressError>
1096
+ # wrong constant name <Class:InvalidPrefixError>
1097
+ # wrong constant name eql?
1098
+ # wrong constant name family
1099
+ # wrong constant name hton
1100
+ # wrong constant name include?
1101
+ # wrong constant name initialize
1102
+ # wrong constant name ip6_arpa
1103
+ # wrong constant name ip6_int
1104
+ # wrong constant name ipv4?
1105
+ # wrong constant name ipv4_compat
1106
+ # wrong constant name ipv4_compat?
1107
+ # wrong constant name ipv4_mapped
1108
+ # wrong constant name ipv4_mapped?
1109
+ # wrong constant name ipv6?
1110
+ # wrong constant name link_local?
1111
+ # wrong constant name loopback?
1112
+ # wrong constant name mask
1113
+ # wrong constant name mask!
1114
+ # wrong constant name native
1115
+ # wrong constant name prefix
1116
+ # wrong constant name prefix=
1117
+ # wrong constant name private?
1118
+ # wrong constant name reverse
1119
+ # wrong constant name set
1120
+ # wrong constant name succ
1121
+ # wrong constant name to_i
1122
+ # wrong constant name to_range
1123
+ # wrong constant name to_string
1124
+ # wrong constant name |
1125
+ # wrong constant name ~
1126
+ # wrong constant name <static-init>
1127
+ # wrong constant name <static-init>
1128
+ # wrong constant name <static-init>
1129
+ # wrong constant name <static-init>
1130
+ # wrong constant name <static-init>
1131
+ # wrong constant name new_ntoh
1132
+ # wrong constant name ntop
1133
+ # wrong constant name allbits?
1134
+ # wrong constant name anybits?
1135
+ # wrong constant name digits
1136
+ # wrong constant name nobits?
1137
+ # wrong constant name pow
1138
+ # wrong constant name to_bn
1139
+ # wrong constant name sqrt
1140
+ # wrong constant name from_state
1141
+ # wrong constant name initialize
1142
+ # wrong constant name <Class:Error>
1143
+ # wrong constant name <Class:InvalidWeightError>
1144
+ # wrong constant name <static-init>
1145
+ # wrong constant name <static-init>
1146
+ # wrong constant name gem
1147
+ # wrong constant name itself
1148
+ # wrong constant name object_id
1149
+ # wrong constant name pretty_inspect
1150
+ # wrong constant name respond_to?
1151
+ # wrong constant name then
1152
+ # wrong constant name yield_self
1153
+ # wrong constant name at_exit
1154
+ # wrong constant name key
1155
+ # wrong constant name receiver
1156
+ # wrong constant name path
1157
+ # wrong constant name exit_value
1158
+ # wrong constant name reason
1159
+ # uninitialized constant Logger
1160
+ # uninitialized constant Logger
1161
+ # wrong constant name restore
1162
+ # uninitialized constant MessagePack
1163
+ # uninitialized constant MessagePack
1164
+ # wrong constant name deprecate_constant
1165
+ # wrong constant name undef_method
1166
+ # wrong constant name used_modules
1167
+ # uninitialized constant Monitor::EXCEPTION_IMMEDIATE
1168
+ # uninitialized constant Monitor::EXCEPTION_NEVER
1169
+ # wrong constant name enter
1170
+ # wrong constant name exit
1171
+ # wrong constant name try_enter
1172
+ # wrong constant name initialize
1173
+ # wrong constant name mon_enter
1174
+ # wrong constant name mon_exit
1175
+ # wrong constant name mon_locked?
1176
+ # wrong constant name mon_owned?
1177
+ # wrong constant name mon_synchronize
1178
+ # wrong constant name mon_try_enter
1179
+ # wrong constant name new_cond
1180
+ # wrong constant name synchronize
1181
+ # wrong constant name try_mon_enter
1182
+ # wrong constant name broadcast
1183
+ # wrong constant name initialize
1184
+ # wrong constant name signal
1185
+ # wrong constant name wait
1186
+ # wrong constant name wait_until
1187
+ # wrong constant name wait_while
1188
+ # wrong constant name extend_object
1189
+ # uninitialized constant Mutex_m
1190
+ # uninitialized constant Mutex_m
1191
+ # wrong constant name name
1192
+ # wrong constant name receiver
1193
+ # wrong constant name write_timeout
1194
+ # wrong constant name write_timeout=
1195
+ # uninitialized constant Net::FTP
1196
+ # uninitialized constant Net::FTP
1197
+ # uninitialized constant Net::FTPConnectionError
1198
+ # uninitialized constant Net::FTPConnectionError
1199
+ # uninitialized constant Net::FTPError
1200
+ # Did you mean? Net::HTTPError
1201
+ # uninitialized constant Net::FTPError
1202
+ # Did you mean? Net::HTTPError
1203
+ # uninitialized constant Net::FTPPermError
1204
+ # Did you mean? FiberError
1205
+ # uninitialized constant Net::FTPPermError
1206
+ # Did you mean? FiberError
1207
+ # uninitialized constant Net::FTPProtoError
1208
+ # uninitialized constant Net::FTPProtoError
1209
+ # uninitialized constant Net::FTPReplyError
1210
+ # uninitialized constant Net::FTPReplyError
1211
+ # uninitialized constant Net::FTPTempError
1212
+ # Did you mean? TypeError
1213
+ # uninitialized constant Net::FTPTempError
1214
+ # Did you mean? TypeError
1215
+ # wrong constant name max_retries
1216
+ # wrong constant name max_retries=
1217
+ # wrong constant name max_version
1218
+ # wrong constant name max_version=
1219
+ # wrong constant name min_version
1220
+ # wrong constant name min_version=
1221
+ # wrong constant name write_timeout
1222
+ # wrong constant name write_timeout=
1223
+ # uninitialized constant Net::HTTP::DigestAuth
1224
+ # uninitialized constant Net::HTTP::DigestAuth
1225
+ # uninitialized constant Net::HTTP::Persistent
1226
+ # uninitialized constant Net::HTTP::Persistent
1227
+ # uninitialized constant Net::HTTPAlreadyReported::CODE_CLASS_TO_OBJ
1228
+ # uninitialized constant Net::HTTPAlreadyReported::CODE_TO_OBJ
1229
+ # wrong constant name <static-init>
1230
+ # uninitialized constant Net::HTTPEarlyHints::CODE_CLASS_TO_OBJ
1231
+ # uninitialized constant Net::HTTPEarlyHints::CODE_TO_OBJ
1232
+ # wrong constant name <static-init>
1233
+ # uninitialized constant Net::HTTPGatewayTimeout::CODE_CLASS_TO_OBJ
1234
+ # uninitialized constant Net::HTTPGatewayTimeout::CODE_TO_OBJ
1235
+ # wrong constant name <static-init>
1236
+ # uninitialized constant Net::HTTPLoopDetected::CODE_CLASS_TO_OBJ
1237
+ # uninitialized constant Net::HTTPLoopDetected::CODE_TO_OBJ
1238
+ # wrong constant name <static-init>
1239
+ # uninitialized constant Net::HTTPMisdirectedRequest::CODE_CLASS_TO_OBJ
1240
+ # uninitialized constant Net::HTTPMisdirectedRequest::CODE_TO_OBJ
1241
+ # wrong constant name <static-init>
1242
+ # uninitialized constant Net::HTTPNotExtended::CODE_CLASS_TO_OBJ
1243
+ # uninitialized constant Net::HTTPNotExtended::CODE_TO_OBJ
1244
+ # wrong constant name <static-init>
1245
+ # uninitialized constant Net::HTTPPayloadTooLarge::CODE_CLASS_TO_OBJ
1246
+ # uninitialized constant Net::HTTPPayloadTooLarge::CODE_TO_OBJ
1247
+ # wrong constant name <static-init>
1248
+ # uninitialized constant Net::HTTPProcessing::CODE_CLASS_TO_OBJ
1249
+ # uninitialized constant Net::HTTPProcessing::CODE_TO_OBJ
1250
+ # wrong constant name <static-init>
1251
+ # uninitialized constant Net::HTTPRangeNotSatisfiable::CODE_CLASS_TO_OBJ
1252
+ # uninitialized constant Net::HTTPRangeNotSatisfiable::CODE_TO_OBJ
1253
+ # wrong constant name <static-init>
1254
+ # uninitialized constant Net::HTTPRequestTimeout::CODE_CLASS_TO_OBJ
1255
+ # uninitialized constant Net::HTTPRequestTimeout::CODE_TO_OBJ
1256
+ # wrong constant name <static-init>
1257
+ # uninitialized constant Net::HTTPURITooLong::CODE_CLASS_TO_OBJ
1258
+ # uninitialized constant Net::HTTPURITooLong::CODE_TO_OBJ
1259
+ # wrong constant name <static-init>
1260
+ # uninitialized constant Net::HTTPVariantAlsoNegotiates::CODE_CLASS_TO_OBJ
1261
+ # uninitialized constant Net::HTTPVariantAlsoNegotiates::CODE_TO_OBJ
1262
+ # wrong constant name <static-init>
1263
+ # uninitialized constant Net::IMAP
1264
+ # uninitialized constant Net::IMAP
1265
+ # wrong constant name initialize
1266
+ # wrong constant name io
1267
+ # uninitialized constant Net::SMTP
1268
+ # uninitialized constant Net::SMTP
1269
+ # uninitialized constant Net::SMTPAuthenticationError
1270
+ # uninitialized constant Net::SMTPAuthenticationError
1271
+ # uninitialized constant Net::SMTPError
1272
+ # Did you mean? Net::HTTPError
1273
+ # uninitialized constant Net::SMTPError
1274
+ # Did you mean? Net::HTTPError
1275
+ # uninitialized constant Net::SMTPFatalError
1276
+ # Did you mean? Net::ProtoFatalError
1277
+ # Net::HTTPFatalError
1278
+ # uninitialized constant Net::SMTPFatalError
1279
+ # Did you mean? Net::ProtoFatalError
1280
+ # Net::HTTPFatalError
1281
+ # uninitialized constant Net::SMTPServerBusy
1282
+ # uninitialized constant Net::SMTPServerBusy
1283
+ # uninitialized constant Net::SMTPSyntaxError
1284
+ # Did you mean? Net::ProtoSyntaxError
1285
+ # uninitialized constant Net::SMTPSyntaxError
1286
+ # Did you mean? Net::ProtoSyntaxError
1287
+ # uninitialized constant Net::SMTPUnknownError
1288
+ # uninitialized constant Net::SMTPUnknownError
1289
+ # uninitialized constant Net::SMTPUnsupportedCommand
1290
+ # uninitialized constant Net::SMTPUnsupportedCommand
1291
+ # wrong constant name initialize
1292
+ # wrong constant name io
1293
+ # wrong constant name <static-init>
1294
+ # wrong constant name to_i
1295
+ # wrong constant name args
1296
+ # wrong constant name private_call?
1297
+ # uninitialized constant RUBYGEMS_ACTIVATION_MONITOR
1298
+ # wrong constant name dclone
1299
+ # wrong constant name to_yaml
1300
+ # wrong constant name yaml_tag
1301
+ # wrong constant name <Class:Object>
1302
+ # wrong constant name []
1303
+ # wrong constant name []=
1304
+ # wrong constant name each
1305
+ # wrong constant name each_key
1306
+ # wrong constant name each_pair
1307
+ # wrong constant name each_value
1308
+ # wrong constant name key?
1309
+ # wrong constant name keys
1310
+ # wrong constant name length
1311
+ # wrong constant name size
1312
+ # wrong constant name values
1313
+ # wrong constant name count_objects
1314
+ # wrong constant name define_finalizer
1315
+ # wrong constant name garbage_collect
1316
+ # wrong constant name undefine_finalizer
1317
+ # wrong constant name indefinite_length
1318
+ # wrong constant name indefinite_length=
1319
+ # wrong constant name +@
1320
+ # wrong constant name -@
1321
+ # wrong constant name /
1322
+ # wrong constant name negative?
1323
+ # wrong constant name <Class:KDFError>
1324
+ # wrong constant name <static-init>
1325
+ # wrong constant name <static-init>
1326
+ # wrong constant name pbkdf2_hmac
1327
+ # wrong constant name signed?
1328
+ # uninitialized constant OpenSSL::PKCS5::PKCS5Error
1329
+ # uninitialized constant OpenSSL::PKCS5::PKCS5Error
1330
+ # wrong constant name to_octet_string
1331
+ # wrong constant name sign_pss
1332
+ # wrong constant name verify_pss
1333
+ # wrong constant name add_certificate
1334
+ # wrong constant name alpn_protocols
1335
+ # wrong constant name alpn_protocols=
1336
+ # wrong constant name alpn_select_cb
1337
+ # wrong constant name alpn_select_cb=
1338
+ # wrong constant name enable_fallback_scsv
1339
+ # wrong constant name max_version=
1340
+ # wrong constant name min_version=
1341
+ # uninitialized constant OpenSSL::SSL::SSLSocket::BLOCK_SIZE
1342
+ # wrong constant name alpn_protocol
1343
+ # wrong constant name tmp_key
1344
+ # wrong constant name ==
1345
+ # wrong constant name ==
1346
+ # wrong constant name ==
1347
+ # wrong constant name to_utf8
1348
+ # wrong constant name ==
1349
+ # wrong constant name ==
1350
+ # wrong constant name to_der
1351
+ # wrong constant name fips_mode
1352
+ # uninitialized constant Opus
1353
+ # uninitialized constant Opus
1354
+ # wrong constant name empty?
1355
+ # wrong constant name fnmatch?
1356
+ # wrong constant name glob
1357
+ # wrong constant name make_symlink
1358
+ # wrong constant name <<
1359
+ # wrong constant name ===
1360
+ # wrong constant name >>
1361
+ # wrong constant name clone
1362
+ # wrong constant name yield
1363
+ # uninitialized constant Proc0
1364
+ # uninitialized constant Proc0
1365
+ # uninitialized constant Proc1
1366
+ # uninitialized constant Proc1
1367
+ # uninitialized constant Proc10
1368
+ # uninitialized constant Proc10
1369
+ # uninitialized constant Proc2
1370
+ # uninitialized constant Proc2
1371
+ # uninitialized constant Proc3
1372
+ # uninitialized constant Proc3
1373
+ # uninitialized constant Proc4
1374
+ # uninitialized constant Proc4
1375
+ # uninitialized constant Proc5
1376
+ # uninitialized constant Proc5
1377
+ # uninitialized constant Proc6
1378
+ # uninitialized constant Proc6
1379
+ # uninitialized constant Proc7
1380
+ # uninitialized constant Proc7
1381
+ # uninitialized constant Proc8
1382
+ # uninitialized constant Proc8
1383
+ # uninitialized constant Proc9
1384
+ # uninitialized constant Proc9
1385
+ # wrong constant name getegid
1386
+ # wrong constant name cstime
1387
+ # wrong constant name cstime=
1388
+ # wrong constant name cutime
1389
+ # wrong constant name cutime=
1390
+ # wrong constant name stime
1391
+ # wrong constant name stime=
1392
+ # wrong constant name utime
1393
+ # wrong constant name utime=
1394
+ # wrong constant name []
1395
+ # wrong constant name members
1396
+ # wrong constant name last_status
1397
+ # wrong constant name setpgrp
1398
+ # uninitialized constant ProgressBar::Outputs::NonTty::DEFAULT_OUTPUT_STREAM
1399
+ # uninitialized constant ProgressBar::Outputs::Tty::DEFAULT_OUTPUT_STREAM
1400
+ # wrong constant name <Class:BadAlias>
1401
+ # wrong constant name <Class:ClassLoader>
1402
+ # wrong constant name <Class:Coder>
1403
+ # wrong constant name <Class:DisallowedClass>
1404
+ # wrong constant name <Class:Emitter>
1405
+ # wrong constant name <Class:Exception>
1406
+ # wrong constant name <Class:Handler>
1407
+ # wrong constant name <Class:Handlers>
1408
+ # wrong constant name <Class:JSON>
1409
+ # wrong constant name <Class:Nodes>
1410
+ # wrong constant name <Class:Omap>
1411
+ # wrong constant name <Class:Parser>
1412
+ # wrong constant name <Class:ScalarScanner>
1413
+ # wrong constant name <Class:Set>
1414
+ # wrong constant name <Class:Stream>
1415
+ # wrong constant name <Class:Streaming>
1416
+ # wrong constant name <Class:SyntaxError>
1417
+ # wrong constant name <Class:TreeBuilder>
1418
+ # wrong constant name <Class:Visitors>
1419
+ # wrong constant name <static-init>
1420
+ # wrong constant name <Class:Restricted>
1421
+ # wrong constant name big_decimal
1422
+ # wrong constant name complex
1423
+ # wrong constant name date
1424
+ # wrong constant name date_time
1425
+ # wrong constant name exception
1426
+ # wrong constant name load
1427
+ # wrong constant name object
1428
+ # wrong constant name psych_omap
1429
+ # wrong constant name psych_set
1430
+ # wrong constant name range
1431
+ # wrong constant name rational
1432
+ # wrong constant name regexp
1433
+ # wrong constant name struct
1434
+ # wrong constant name symbol
1435
+ # wrong constant name symbolize
1436
+ # uninitialized constant Psych::ClassLoader::Restricted::BIG_DECIMAL
1437
+ # Did you mean? BigDecimal
1438
+ # Psych::ClassLoader::BIG_DECIMAL
1439
+ # uninitialized constant Psych::ClassLoader::Restricted::CACHE
1440
+ # Did you mean? Psych::ClassLoader::CACHE
1441
+ # uninitialized constant Psych::ClassLoader::Restricted::COMPLEX
1442
+ # Did you mean? Complex
1443
+ # Psych::ClassLoader::COMPLEX
1444
+ # uninitialized constant Psych::ClassLoader::Restricted::DATE
1445
+ # Did you mean? Date
1446
+ # Data
1447
+ # Psych::ClassLoader::DATE
1448
+ # uninitialized constant Psych::ClassLoader::Restricted::DATE_TIME
1449
+ # Did you mean? DateTime
1450
+ # Psych::ClassLoader::DATE_TIME
1451
+ # uninitialized constant Psych::ClassLoader::Restricted::EXCEPTION
1452
+ # Did you mean? Psych::Exception
1453
+ # Exception
1454
+ # Psych::ClassLoader::EXCEPTION
1455
+ # uninitialized constant Psych::ClassLoader::Restricted::OBJECT
1456
+ # Did you mean? Object
1457
+ # Psych::ClassLoader::OBJECT
1458
+ # uninitialized constant Psych::ClassLoader::Restricted::PSYCH_OMAP
1459
+ # Did you mean? Psych::ClassLoader::PSYCH_OMAP
1460
+ # uninitialized constant Psych::ClassLoader::Restricted::PSYCH_SET
1461
+ # Did you mean? Psych::ClassLoader::PSYCH_SET
1462
+ # uninitialized constant Psych::ClassLoader::Restricted::RANGE
1463
+ # Did you mean? Range
1464
+ # Psych::ClassLoader::RANGE
1465
+ # uninitialized constant Psych::ClassLoader::Restricted::RATIONAL
1466
+ # Did you mean? Rational
1467
+ # Psych::ClassLoader::RATIONAL
1468
+ # uninitialized constant Psych::ClassLoader::Restricted::REGEXP
1469
+ # Did you mean? Regexp
1470
+ # Psych::ClassLoader::REGEXP
1471
+ # uninitialized constant Psych::ClassLoader::Restricted::STRUCT
1472
+ # Did you mean? Struct
1473
+ # Psych::ClassLoader::STRUCT
1474
+ # uninitialized constant Psych::ClassLoader::Restricted::SYMBOL
1475
+ # Did you mean? Symbol
1476
+ # Psych::ClassLoader::SYMBOL
1477
+ # wrong constant name initialize
1478
+ # wrong constant name <static-init>
1479
+ # wrong constant name <static-init>
1480
+ # wrong constant name []
1481
+ # wrong constant name []=
1482
+ # wrong constant name add
1483
+ # wrong constant name implicit
1484
+ # wrong constant name implicit=
1485
+ # wrong constant name initialize
1486
+ # wrong constant name map
1487
+ # wrong constant name map=
1488
+ # wrong constant name object
1489
+ # wrong constant name object=
1490
+ # wrong constant name represent_map
1491
+ # wrong constant name represent_object
1492
+ # wrong constant name represent_scalar
1493
+ # wrong constant name represent_seq
1494
+ # wrong constant name scalar
1495
+ # wrong constant name scalar=
1496
+ # wrong constant name seq
1497
+ # wrong constant name seq=
1498
+ # wrong constant name style
1499
+ # wrong constant name style=
1500
+ # wrong constant name tag
1501
+ # wrong constant name tag=
1502
+ # wrong constant name type
1503
+ # wrong constant name <static-init>
1504
+ # wrong constant name initialize
1505
+ # wrong constant name <static-init>
1506
+ # uninitialized constant Psych::Emitter::EVENTS
1507
+ # uninitialized constant Psych::Emitter::OPTIONS
1508
+ # wrong constant name alias
1509
+ # wrong constant name canonical
1510
+ # wrong constant name canonical=
1511
+ # wrong constant name end_document
1512
+ # wrong constant name indentation
1513
+ # wrong constant name indentation=
1514
+ # wrong constant name initialize
1515
+ # wrong constant name line_width
1516
+ # wrong constant name line_width=
1517
+ # wrong constant name scalar
1518
+ # wrong constant name start_document
1519
+ # wrong constant name start_mapping
1520
+ # wrong constant name start_sequence
1521
+ # wrong constant name start_stream
1522
+ # wrong constant name <static-init>
1523
+ # wrong constant name <static-init>
1524
+ # wrong constant name <Class:DumperOptions>
1525
+ # wrong constant name alias
1526
+ # wrong constant name empty
1527
+ # wrong constant name end_document
1528
+ # wrong constant name end_mapping
1529
+ # wrong constant name end_sequence
1530
+ # wrong constant name end_stream
1531
+ # wrong constant name event_location
1532
+ # wrong constant name scalar
1533
+ # wrong constant name start_document
1534
+ # wrong constant name start_mapping
1535
+ # wrong constant name start_sequence
1536
+ # wrong constant name start_stream
1537
+ # wrong constant name streaming?
1538
+ # wrong constant name canonical
1539
+ # wrong constant name canonical=
1540
+ # wrong constant name indentation
1541
+ # wrong constant name indentation=
1542
+ # wrong constant name line_width
1543
+ # wrong constant name line_width=
1544
+ # wrong constant name <static-init>
1545
+ # wrong constant name <static-init>
1546
+ # wrong constant name <Class:DocumentStream>
1547
+ # uninitialized constant Psych::Handlers::DocumentStream::EVENTS
1548
+ # uninitialized constant Psych::Handlers::DocumentStream::OPTIONS
1549
+ # wrong constant name initialize
1550
+ # wrong constant name <static-init>
1551
+ # wrong constant name <static-init>
1552
+ # wrong constant name <Class:RubyEvents>
1553
+ # wrong constant name <Class:Stream>
1554
+ # wrong constant name <Class:TreeBuilder>
1555
+ # wrong constant name <Class:YAMLEvents>
1556
+ # wrong constant name visit_DateTime
1557
+ # wrong constant name visit_String
1558
+ # wrong constant name visit_Symbol
1559
+ # wrong constant name visit_Time
1560
+ # wrong constant name <static-init>
1561
+ # uninitialized constant Psych::JSON::Stream::DISPATCH
1562
+ # wrong constant name <Class:Emitter>
1563
+ # uninitialized constant Psych::JSON::Stream::Emitter::EVENTS
1564
+ # uninitialized constant Psych::JSON::Stream::Emitter::OPTIONS
1565
+ # wrong constant name <static-init>
1566
+ # wrong constant name <static-init>
1567
+ # uninitialized constant Psych::JSON::TreeBuilder::EVENTS
1568
+ # uninitialized constant Psych::JSON::TreeBuilder::OPTIONS
1569
+ # wrong constant name <static-init>
1570
+ # wrong constant name end_document
1571
+ # wrong constant name scalar
1572
+ # wrong constant name start_document
1573
+ # wrong constant name start_mapping
1574
+ # wrong constant name start_sequence
1575
+ # wrong constant name <static-init>
1576
+ # wrong constant name <static-init>
1577
+ # wrong constant name <Class:Alias>
1578
+ # wrong constant name <Class:Document>
1579
+ # wrong constant name <Class:Mapping>
1580
+ # wrong constant name <Class:Node>
1581
+ # wrong constant name <Class:Scalar>
1582
+ # wrong constant name <Class:Sequence>
1583
+ # wrong constant name <Class:Stream>
1584
+ # uninitialized constant Psych::Nodes::Alias::Elem
1585
+ # wrong constant name anchor
1586
+ # wrong constant name anchor=
1587
+ # wrong constant name initialize
1588
+ # wrong constant name <static-init>
1589
+ # uninitialized constant Psych::Nodes::Document::Elem
1590
+ # wrong constant name implicit
1591
+ # wrong constant name implicit=
1592
+ # wrong constant name implicit_end
1593
+ # wrong constant name implicit_end=
1594
+ # wrong constant name initialize
1595
+ # wrong constant name root
1596
+ # wrong constant name tag_directives
1597
+ # wrong constant name tag_directives=
1598
+ # wrong constant name version
1599
+ # wrong constant name version=
1600
+ # wrong constant name <static-init>
1601
+ # uninitialized constant Psych::Nodes::Mapping::Elem
1602
+ # wrong constant name anchor
1603
+ # wrong constant name anchor=
1604
+ # wrong constant name implicit
1605
+ # wrong constant name implicit=
1606
+ # wrong constant name initialize
1607
+ # wrong constant name style
1608
+ # wrong constant name style=
1609
+ # wrong constant name tag=
1610
+ # wrong constant name <static-init>
1611
+ # uninitialized constant Psych::Nodes::Node::Elem
1612
+ # wrong constant name alias?
1613
+ # wrong constant name children
1614
+ # wrong constant name document?
1615
+ # wrong constant name each
1616
+ # wrong constant name end_column
1617
+ # wrong constant name end_column=
1618
+ # wrong constant name end_line
1619
+ # wrong constant name end_line=
1620
+ # wrong constant name mapping?
1621
+ # wrong constant name scalar?
1622
+ # wrong constant name sequence?
1623
+ # wrong constant name start_column
1624
+ # wrong constant name start_column=
1625
+ # wrong constant name start_line
1626
+ # wrong constant name start_line=
1627
+ # wrong constant name stream?
1628
+ # wrong constant name tag
1629
+ # wrong constant name to_ruby
1630
+ # wrong constant name to_yaml
1631
+ # wrong constant name transform
1632
+ # wrong constant name yaml
1633
+ # wrong constant name <static-init>
1634
+ # uninitialized constant Psych::Nodes::Scalar::Elem
1635
+ # wrong constant name anchor
1636
+ # wrong constant name anchor=
1637
+ # wrong constant name initialize
1638
+ # wrong constant name plain
1639
+ # wrong constant name plain=
1640
+ # wrong constant name quoted
1641
+ # wrong constant name quoted=
1642
+ # wrong constant name style
1643
+ # wrong constant name style=
1644
+ # wrong constant name tag=
1645
+ # wrong constant name value
1646
+ # wrong constant name value=
1647
+ # wrong constant name <static-init>
1648
+ # uninitialized constant Psych::Nodes::Sequence::Elem
1649
+ # wrong constant name anchor
1650
+ # wrong constant name anchor=
1651
+ # wrong constant name implicit
1652
+ # wrong constant name implicit=
1653
+ # wrong constant name initialize
1654
+ # wrong constant name style
1655
+ # wrong constant name style=
1656
+ # wrong constant name tag=
1657
+ # wrong constant name <static-init>
1658
+ # uninitialized constant Psych::Nodes::Stream::Elem
1659
+ # wrong constant name encoding
1660
+ # wrong constant name encoding=
1661
+ # wrong constant name initialize
1662
+ # wrong constant name <static-init>
1663
+ # wrong constant name <static-init>
1664
+ # uninitialized constant Psych::Omap::Elem
1665
+ # uninitialized constant Psych::Omap::K
1666
+ # uninitialized constant Psych::Omap::V
1667
+ # wrong constant name <static-init>
1668
+ # wrong constant name <Class:Mark>
1669
+ # wrong constant name external_encoding=
1670
+ # wrong constant name handler
1671
+ # wrong constant name handler=
1672
+ # wrong constant name initialize
1673
+ # wrong constant name mark
1674
+ # wrong constant name parse
1675
+ # wrong constant name <static-init>
1676
+ # wrong constant name <static-init>
1677
+ # wrong constant name class_loader
1678
+ # wrong constant name initialize
1679
+ # wrong constant name parse_int
1680
+ # wrong constant name parse_time
1681
+ # wrong constant name tokenize
1682
+ # wrong constant name <static-init>
1683
+ # uninitialized constant Psych::Set::Elem
1684
+ # uninitialized constant Psych::Set::K
1685
+ # uninitialized constant Psych::Set::V
1686
+ # wrong constant name <static-init>
1687
+ # uninitialized constant Psych::Stream::DISPATCH
1688
+ # wrong constant name <Class:Emitter>
1689
+ # uninitialized constant Psych::Stream::Emitter::EVENTS
1690
+ # uninitialized constant Psych::Stream::Emitter::OPTIONS
1691
+ # wrong constant name end_document
1692
+ # wrong constant name <static-init>
1693
+ # wrong constant name <static-init>
1694
+ # wrong constant name <Class:ClassMethods>
1695
+ # wrong constant name start
1696
+ # wrong constant name new
1697
+ # wrong constant name <static-init>
1698
+ # wrong constant name <static-init>
1699
+ # wrong constant name column
1700
+ # wrong constant name context
1701
+ # wrong constant name file
1702
+ # wrong constant name initialize
1703
+ # wrong constant name line
1704
+ # wrong constant name offset
1705
+ # wrong constant name problem
1706
+ # wrong constant name <static-init>
1707
+ # uninitialized constant Psych::TreeBuilder::EVENTS
1708
+ # uninitialized constant Psych::TreeBuilder::OPTIONS
1709
+ # wrong constant name end_document
1710
+ # wrong constant name root
1711
+ # wrong constant name <static-init>
1712
+ # wrong constant name <Class:DepthFirst>
1713
+ # wrong constant name <Class:Emitter>
1714
+ # wrong constant name <Class:JSONTree>
1715
+ # wrong constant name <Class:NoAliasRuby>
1716
+ # wrong constant name <Class:ToRuby>
1717
+ # wrong constant name <Class:Visitor>
1718
+ # wrong constant name <Class:YAMLTree>
1719
+ # uninitialized constant Psych::Visitors::DepthFirst::DISPATCH
1720
+ # wrong constant name initialize
1721
+ # wrong constant name <static-init>
1722
+ # uninitialized constant Psych::Visitors::Emitter::DISPATCH
1723
+ # wrong constant name initialize
1724
+ # wrong constant name visit_Psych_Nodes_Alias
1725
+ # wrong constant name visit_Psych_Nodes_Document
1726
+ # wrong constant name visit_Psych_Nodes_Mapping
1727
+ # wrong constant name visit_Psych_Nodes_Scalar
1728
+ # wrong constant name visit_Psych_Nodes_Sequence
1729
+ # wrong constant name visit_Psych_Nodes_Stream
1730
+ # wrong constant name <static-init>
1731
+ # uninitialized constant Psych::Visitors::JSONTree::DISPATCH
1732
+ # wrong constant name <static-init>
1733
+ # wrong constant name create
1734
+ # uninitialized constant Psych::Visitors::NoAliasRuby::DISPATCH
1735
+ # uninitialized constant Psych::Visitors::NoAliasRuby::SHOVEL
1736
+ # wrong constant name <static-init>
1737
+ # uninitialized constant Psych::Visitors::ToRuby::DISPATCH
1738
+ # wrong constant name class_loader
1739
+ # wrong constant name initialize
1740
+ # wrong constant name visit_Psych_Nodes_Alias
1741
+ # wrong constant name visit_Psych_Nodes_Document
1742
+ # wrong constant name visit_Psych_Nodes_Mapping
1743
+ # wrong constant name visit_Psych_Nodes_Scalar
1744
+ # wrong constant name visit_Psych_Nodes_Sequence
1745
+ # wrong constant name visit_Psych_Nodes_Stream
1746
+ # wrong constant name <static-init>
1747
+ # wrong constant name create
1748
+ # wrong constant name accept
1749
+ # wrong constant name <static-init>
1750
+ # wrong constant name <<
1751
+ # uninitialized constant Psych::Visitors::YAMLTree::DISPATCH
1752
+ # wrong constant name finish
1753
+ # wrong constant name finished
1754
+ # wrong constant name finished?
1755
+ # wrong constant name initialize
1756
+ # wrong constant name push
1757
+ # wrong constant name start
1758
+ # wrong constant name started
1759
+ # wrong constant name started?
1760
+ # wrong constant name tree
1761
+ # wrong constant name visit_Array
1762
+ # wrong constant name visit_BasicObject
1763
+ # wrong constant name visit_BigDecimal
1764
+ # wrong constant name visit_Class
1765
+ # wrong constant name visit_Complex
1766
+ # wrong constant name visit_Date
1767
+ # wrong constant name visit_DateTime
1768
+ # wrong constant name visit_Delegator
1769
+ # wrong constant name visit_Encoding
1770
+ # wrong constant name visit_Enumerator
1771
+ # wrong constant name visit_Exception
1772
+ # wrong constant name visit_FalseClass
1773
+ # wrong constant name visit_Float
1774
+ # wrong constant name visit_Hash
1775
+ # wrong constant name visit_Integer
1776
+ # wrong constant name visit_Module
1777
+ # wrong constant name visit_NameError
1778
+ # wrong constant name visit_NilClass
1779
+ # wrong constant name visit_Object
1780
+ # wrong constant name visit_Psych_Omap
1781
+ # wrong constant name visit_Psych_Set
1782
+ # wrong constant name visit_Range
1783
+ # wrong constant name visit_Rational
1784
+ # wrong constant name visit_Regexp
1785
+ # wrong constant name visit_String
1786
+ # wrong constant name visit_Struct
1787
+ # wrong constant name visit_Symbol
1788
+ # wrong constant name visit_Time
1789
+ # wrong constant name visit_TrueClass
1790
+ # wrong constant name <static-init>
1791
+ # wrong constant name create
1792
+ # wrong constant name <static-init>
1793
+ # wrong constant name <static-init>
1794
+ # wrong constant name add_builtin_type
1795
+ # wrong constant name add_domain_type
1796
+ # wrong constant name add_tag
1797
+ # wrong constant name domain_types
1798
+ # wrong constant name domain_types=
1799
+ # wrong constant name dump
1800
+ # wrong constant name dump_stream
1801
+ # wrong constant name dump_tags
1802
+ # wrong constant name dump_tags=
1803
+ # wrong constant name libyaml_version
1804
+ # wrong constant name load
1805
+ # wrong constant name load_file
1806
+ # wrong constant name load_stream
1807
+ # wrong constant name load_tags
1808
+ # wrong constant name load_tags=
1809
+ # wrong constant name parse
1810
+ # wrong constant name parse_file
1811
+ # wrong constant name parse_stream
1812
+ # wrong constant name parser
1813
+ # wrong constant name remove_type
1814
+ # wrong constant name safe_load
1815
+ # wrong constant name to_json
1816
+ # wrong constant name <Class:AttlistDecl>
1817
+ # wrong constant name <Class:Attribute>
1818
+ # wrong constant name <Class:Attributes>
1819
+ # wrong constant name <Class:CData>
1820
+ # wrong constant name <Class:Child>
1821
+ # wrong constant name <Class:Comment>
1822
+ # wrong constant name <Class:Declaration>
1823
+ # wrong constant name <Class:DocType>
1824
+ # wrong constant name <Class:Document>
1825
+ # wrong constant name <Class:Element>
1826
+ # wrong constant name <Class:ElementDecl>
1827
+ # wrong constant name <Class:Elements>
1828
+ # wrong constant name <Class:Encoding>
1829
+ # wrong constant name <Class:Entity>
1830
+ # wrong constant name <Class:EntityConst>
1831
+ # wrong constant name <Class:ExternalEntity>
1832
+ # wrong constant name <Class:Formatters>
1833
+ # wrong constant name <Class:Functions>
1834
+ # wrong constant name <Class:IOSource>
1835
+ # wrong constant name <Class:Instruction>
1836
+ # wrong constant name <Class:Light>
1837
+ # wrong constant name <Class:Namespace>
1838
+ # wrong constant name <Class:Node>
1839
+ # wrong constant name <Class:NotationDecl>
1840
+ # wrong constant name <Class:Output>
1841
+ # wrong constant name <Class:Parent>
1842
+ # wrong constant name <Class:ParseException>
1843
+ # wrong constant name <Class:Parsers>
1844
+ # wrong constant name <Class:Security>
1845
+ # wrong constant name <Class:Source>
1846
+ # wrong constant name <Class:SourceFactory>
1847
+ # wrong constant name <Class:SyncEnumerator>
1848
+ # wrong constant name <Class:Text>
1849
+ # wrong constant name <Class:UndefinedNamespaceException>
1850
+ # wrong constant name <Class:Validation>
1851
+ # wrong constant name <Class:XMLDecl>
1852
+ # wrong constant name <Class:XMLTokens>
1853
+ # wrong constant name <Class:XPath>
1854
+ # wrong constant name <Class:XPathNode>
1855
+ # wrong constant name <Class:XPathParser>
1856
+ # uninitialized constant REXML::AttlistDecl::Elem
1857
+ # Did you mean? REXML::Element
1858
+ # wrong constant name []
1859
+ # wrong constant name each
1860
+ # wrong constant name element_name
1861
+ # wrong constant name include?
1862
+ # wrong constant name initialize
1863
+ # wrong constant name node_type
1864
+ # wrong constant name write
1865
+ # wrong constant name <static-init>
1866
+ # wrong constant name ==
1867
+ # uninitialized constant REXML::Attribute::NAME
1868
+ # uninitialized constant REXML::Attribute::NAMECHAR
1869
+ # Did you mean? REXML::Attribute::NAME_CHAR
1870
+ # uninitialized constant REXML::Attribute::NAMESPLIT
1871
+ # Did you mean? REXML::Namespace
1872
+ # uninitialized constant REXML::Attribute::NAME_CHAR
1873
+ # Did you mean? REXML::Attribute::NAME_STR
1874
+ # REXML::Attribute::NAMECHAR
1875
+ # uninitialized constant REXML::Attribute::NAME_START_CHAR
1876
+ # uninitialized constant REXML::Attribute::NAME_STR
1877
+ # Did you mean? REXML::Attribute::NCNAME_STR
1878
+ # uninitialized constant REXML::Attribute::NCNAME_STR
1879
+ # Did you mean? REXML::Attribute::NAME_STR
1880
+ # uninitialized constant REXML::Attribute::NMTOKEN
1881
+ # Did you mean? REXML::Attribute::NMTOKENS
1882
+ # uninitialized constant REXML::Attribute::NMTOKENS
1883
+ # Did you mean? REXML::XMLTokens
1884
+ # uninitialized constant REXML::Attribute::REFERENCE
1885
+ # wrong constant name clone
1886
+ # wrong constant name doctype
1887
+ # wrong constant name element
1888
+ # wrong constant name element=
1889
+ # wrong constant name initialize
1890
+ # wrong constant name namespace
1891
+ # wrong constant name node_type
1892
+ # wrong constant name normalized=
1893
+ # wrong constant name remove
1894
+ # wrong constant name to_s
1895
+ # wrong constant name to_string
1896
+ # wrong constant name value
1897
+ # wrong constant name write
1898
+ # wrong constant name xpath
1899
+ # wrong constant name <static-init>
1900
+ # wrong constant name <<
1901
+ # uninitialized constant REXML::Attributes::Elem
1902
+ # Did you mean? REXML::Element
1903
+ # uninitialized constant REXML::Attributes::K
1904
+ # uninitialized constant REXML::Attributes::V
1905
+ # wrong constant name []
1906
+ # wrong constant name []=
1907
+ # wrong constant name add
1908
+ # wrong constant name delete
1909
+ # wrong constant name delete_all
1910
+ # wrong constant name each_attribute
1911
+ # wrong constant name get_attribute
1912
+ # wrong constant name get_attribute_ns
1913
+ # wrong constant name initialize
1914
+ # wrong constant name namespaces
1915
+ # wrong constant name prefixes
1916
+ # wrong constant name <static-init>
1917
+ # uninitialized constant REXML::CData::EREFERENCE
1918
+ # uninitialized constant REXML::CData::NEEDS_A_SECOND_CHECK
1919
+ # uninitialized constant REXML::CData::NUMERICENTITY
1920
+ # uninitialized constant REXML::CData::REFERENCE
1921
+ # uninitialized constant REXML::CData::SETUTITSBUS
1922
+ # uninitialized constant REXML::CData::SLAICEPS
1923
+ # uninitialized constant REXML::CData::SPECIALS
1924
+ # uninitialized constant REXML::CData::SUBSTITUTES
1925
+ # uninitialized constant REXML::CData::VALID_CHAR
1926
+ # uninitialized constant REXML::CData::VALID_XML_CHARS
1927
+ # wrong constant name initialize
1928
+ # wrong constant name write
1929
+ # wrong constant name <static-init>
1930
+ # wrong constant name bytes
1931
+ # wrong constant name document
1932
+ # wrong constant name initialize
1933
+ # wrong constant name next_sibling
1934
+ # wrong constant name next_sibling=
1935
+ # wrong constant name parent
1936
+ # wrong constant name parent=
1937
+ # wrong constant name previous_sibling
1938
+ # wrong constant name previous_sibling=
1939
+ # wrong constant name remove
1940
+ # wrong constant name replace_with
1941
+ # wrong constant name <static-init>
1942
+ # wrong constant name <=>
1943
+ # wrong constant name ==
1944
+ # wrong constant name clone
1945
+ # wrong constant name initialize
1946
+ # wrong constant name node_type
1947
+ # wrong constant name string
1948
+ # wrong constant name string=
1949
+ # wrong constant name to_s
1950
+ # wrong constant name write
1951
+ # wrong constant name <static-init>
1952
+ # wrong constant name initialize
1953
+ # wrong constant name to_s
1954
+ # wrong constant name write
1955
+ # wrong constant name <static-init>
1956
+ # uninitialized constant REXML::DocType::Elem
1957
+ # Did you mean? REXML::Element
1958
+ # uninitialized constant REXML::DocType::NAME
1959
+ # uninitialized constant REXML::DocType::NAMECHAR
1960
+ # Did you mean? REXML::DocType::NAME_CHAR
1961
+ # uninitialized constant REXML::DocType::NAME_CHAR
1962
+ # Did you mean? REXML::DocType::NAME_STR
1963
+ # REXML::DocType::NAMECHAR
1964
+ # uninitialized constant REXML::DocType::NAME_START_CHAR
1965
+ # uninitialized constant REXML::DocType::NAME_STR
1966
+ # Did you mean? REXML::DocType::NCNAME_STR
1967
+ # uninitialized constant REXML::DocType::NCNAME_STR
1968
+ # Did you mean? REXML::DocType::NAME_STR
1969
+ # uninitialized constant REXML::DocType::NMTOKEN
1970
+ # Did you mean? REXML::DocType::NMTOKENS
1971
+ # uninitialized constant REXML::DocType::NMTOKENS
1972
+ # Did you mean? REXML::XMLTokens
1973
+ # uninitialized constant REXML::DocType::REFERENCE
1974
+ # wrong constant name add
1975
+ # wrong constant name attribute_of
1976
+ # wrong constant name attributes_of
1977
+ # wrong constant name clone
1978
+ # wrong constant name context
1979
+ # wrong constant name entities
1980
+ # wrong constant name entity
1981
+ # wrong constant name external_id
1982
+ # wrong constant name initialize
1983
+ # wrong constant name name
1984
+ # wrong constant name namespaces
1985
+ # wrong constant name node_type
1986
+ # wrong constant name notation
1987
+ # wrong constant name notations
1988
+ # wrong constant name public
1989
+ # wrong constant name system
1990
+ # wrong constant name write
1991
+ # wrong constant name <static-init>
1992
+ # wrong constant name <<
1993
+ # uninitialized constant REXML::Document::Elem
1994
+ # Did you mean? REXML::Element
1995
+ # uninitialized constant REXML::Document::NAME
1996
+ # uninitialized constant REXML::Document::NAMECHAR
1997
+ # Did you mean? REXML::Document::NAME_CHAR
1998
+ # uninitialized constant REXML::Document::NAMESPLIT
1999
+ # Did you mean? REXML::Namespace
2000
+ # uninitialized constant REXML::Document::NAME_CHAR
2001
+ # Did you mean? REXML::Document::NAME_STR
2002
+ # REXML::Document::NAMECHAR
2003
+ # uninitialized constant REXML::Document::NAME_START_CHAR
2004
+ # uninitialized constant REXML::Document::NAME_STR
2005
+ # Did you mean? REXML::Document::NCNAME_STR
2006
+ # uninitialized constant REXML::Document::NCNAME_STR
2007
+ # Did you mean? REXML::Document::NAME_STR
2008
+ # uninitialized constant REXML::Document::NMTOKEN
2009
+ # Did you mean? REXML::Document::NMTOKENS
2010
+ # uninitialized constant REXML::Document::NMTOKENS
2011
+ # Did you mean? REXML::XMLTokens
2012
+ # uninitialized constant REXML::Document::REFERENCE
2013
+ # uninitialized constant REXML::Document::UNDEFINED
2014
+ # wrong constant name add
2015
+ # wrong constant name add_element
2016
+ # wrong constant name doctype
2017
+ # wrong constant name encoding
2018
+ # wrong constant name entity_expansion_count
2019
+ # wrong constant name initialize
2020
+ # wrong constant name record_entity_expansion
2021
+ # wrong constant name stand_alone?
2022
+ # wrong constant name version
2023
+ # wrong constant name write
2024
+ # wrong constant name xml_decl
2025
+ # wrong constant name <static-init>
2026
+ # wrong constant name entity_expansion_limit
2027
+ # wrong constant name entity_expansion_limit=
2028
+ # wrong constant name entity_expansion_text_limit
2029
+ # wrong constant name entity_expansion_text_limit=
2030
+ # wrong constant name parse_stream
2031
+ # uninitialized constant REXML::Element::Elem
2032
+ # uninitialized constant REXML::Element::NAME
2033
+ # uninitialized constant REXML::Element::NAMECHAR
2034
+ # Did you mean? REXML::Element::NAME_CHAR
2035
+ # uninitialized constant REXML::Element::NAMESPLIT
2036
+ # Did you mean? REXML::Namespace
2037
+ # uninitialized constant REXML::Element::NAME_CHAR
2038
+ # Did you mean? REXML::Element::NAME_STR
2039
+ # REXML::Element::NAMECHAR
2040
+ # uninitialized constant REXML::Element::NAME_START_CHAR
2041
+ # uninitialized constant REXML::Element::NAME_STR
2042
+ # Did you mean? REXML::Element::NCNAME_STR
2043
+ # uninitialized constant REXML::Element::NCNAME_STR
2044
+ # Did you mean? REXML::Element::NAME_STR
2045
+ # uninitialized constant REXML::Element::NMTOKEN
2046
+ # Did you mean? REXML::Element::NMTOKENS
2047
+ # uninitialized constant REXML::Element::NMTOKENS
2048
+ # Did you mean? REXML::XMLTokens
2049
+ # uninitialized constant REXML::Element::REFERENCE
2050
+ # wrong constant name []
2051
+ # wrong constant name add_attribute
2052
+ # wrong constant name add_attributes
2053
+ # wrong constant name add_element
2054
+ # wrong constant name add_namespace
2055
+ # wrong constant name add_text
2056
+ # wrong constant name attribute
2057
+ # wrong constant name attributes
2058
+ # wrong constant name cdatas
2059
+ # wrong constant name clone
2060
+ # wrong constant name comments
2061
+ # wrong constant name context
2062
+ # wrong constant name context=
2063
+ # wrong constant name delete_attribute
2064
+ # wrong constant name delete_element
2065
+ # wrong constant name delete_namespace
2066
+ # wrong constant name each_element
2067
+ # wrong constant name each_element_with_attribute
2068
+ # wrong constant name each_element_with_text
2069
+ # wrong constant name elements
2070
+ # wrong constant name get_elements
2071
+ # wrong constant name get_text
2072
+ # wrong constant name has_attributes?
2073
+ # wrong constant name has_elements?
2074
+ # wrong constant name has_text?
2075
+ # wrong constant name ignore_whitespace_nodes
2076
+ # wrong constant name initialize
2077
+ # wrong constant name instructions
2078
+ # wrong constant name namespace
2079
+ # wrong constant name namespaces
2080
+ # wrong constant name next_element
2081
+ # wrong constant name node_type
2082
+ # wrong constant name prefixes
2083
+ # wrong constant name previous_element
2084
+ # wrong constant name raw
2085
+ # wrong constant name root
2086
+ # wrong constant name root_node
2087
+ # wrong constant name text
2088
+ # wrong constant name text=
2089
+ # wrong constant name texts
2090
+ # wrong constant name whitespace
2091
+ # wrong constant name write
2092
+ # wrong constant name xpath
2093
+ # wrong constant name <static-init>
2094
+ # wrong constant name <static-init>
2095
+ # wrong constant name <<
2096
+ # uninitialized constant REXML::Elements::Elem
2097
+ # wrong constant name []
2098
+ # wrong constant name []=
2099
+ # wrong constant name add
2100
+ # wrong constant name collect
2101
+ # wrong constant name delete
2102
+ # wrong constant name delete_all
2103
+ # wrong constant name each
2104
+ # wrong constant name empty?
2105
+ # wrong constant name index
2106
+ # wrong constant name initialize
2107
+ # wrong constant name inject
2108
+ # wrong constant name size
2109
+ # wrong constant name to_a
2110
+ # wrong constant name <static-init>
2111
+ # wrong constant name decode
2112
+ # wrong constant name encode
2113
+ # wrong constant name encoding
2114
+ # wrong constant name encoding=
2115
+ # wrong constant name <static-init>
2116
+ # uninitialized constant REXML::Entity::NAME
2117
+ # uninitialized constant REXML::Entity::NAMECHAR
2118
+ # Did you mean? REXML::Entity::NAME_CHAR
2119
+ # uninitialized constant REXML::Entity::NAME_CHAR
2120
+ # Did you mean? REXML::Entity::NAME_STR
2121
+ # REXML::Entity::NAMECHAR
2122
+ # uninitialized constant REXML::Entity::NAME_START_CHAR
2123
+ # uninitialized constant REXML::Entity::NAME_STR
2124
+ # Did you mean? REXML::Entity::NCNAME_STR
2125
+ # uninitialized constant REXML::Entity::NCNAME_STR
2126
+ # Did you mean? REXML::Entity::NAME_STR
2127
+ # uninitialized constant REXML::Entity::NMTOKEN
2128
+ # Did you mean? REXML::Entity::NMTOKENS
2129
+ # uninitialized constant REXML::Entity::NMTOKENS
2130
+ # Did you mean? REXML::XMLTokens
2131
+ # uninitialized constant REXML::Entity::REFERENCE
2132
+ # wrong constant name external
2133
+ # wrong constant name initialize
2134
+ # wrong constant name name
2135
+ # wrong constant name ndata
2136
+ # wrong constant name normalized
2137
+ # wrong constant name pubid
2138
+ # wrong constant name ref
2139
+ # wrong constant name to_s
2140
+ # wrong constant name unnormalized
2141
+ # wrong constant name value
2142
+ # wrong constant name write
2143
+ # wrong constant name <static-init>
2144
+ # wrong constant name matches?
2145
+ # wrong constant name <static-init>
2146
+ # wrong constant name initialize
2147
+ # wrong constant name to_s
2148
+ # wrong constant name write
2149
+ # wrong constant name <static-init>
2150
+ # wrong constant name <Class:Default>
2151
+ # wrong constant name <Class:Pretty>
2152
+ # wrong constant name initialize
2153
+ # wrong constant name write
2154
+ # wrong constant name write_cdata
2155
+ # wrong constant name write_comment
2156
+ # wrong constant name write_document
2157
+ # wrong constant name write_element
2158
+ # wrong constant name write_instruction
2159
+ # wrong constant name write_text
2160
+ # wrong constant name <static-init>
2161
+ # wrong constant name compact
2162
+ # wrong constant name compact=
2163
+ # wrong constant name initialize
2164
+ # wrong constant name width
2165
+ # wrong constant name width=
2166
+ # wrong constant name <static-init>
2167
+ # wrong constant name <static-init>
2168
+ # wrong constant name <static-init>
2169
+ # wrong constant name boolean
2170
+ # wrong constant name ceiling
2171
+ # wrong constant name compare_language
2172
+ # wrong constant name concat
2173
+ # wrong constant name contains
2174
+ # wrong constant name context=
2175
+ # wrong constant name count
2176
+ # wrong constant name false
2177
+ # wrong constant name floor
2178
+ # wrong constant name get_namespace
2179
+ # wrong constant name id
2180
+ # wrong constant name lang
2181
+ # wrong constant name last
2182
+ # wrong constant name local_name
2183
+ # wrong constant name name
2184
+ # wrong constant name namespace_context
2185
+ # wrong constant name namespace_context=
2186
+ # wrong constant name namespace_uri
2187
+ # wrong constant name normalize_space
2188
+ # wrong constant name not
2189
+ # wrong constant name number
2190
+ # wrong constant name position
2191
+ # wrong constant name processing_instruction
2192
+ # wrong constant name round
2193
+ # wrong constant name send
2194
+ # wrong constant name singleton_method_added
2195
+ # wrong constant name starts_with
2196
+ # wrong constant name string
2197
+ # wrong constant name string_length
2198
+ # wrong constant name string_value
2199
+ # wrong constant name substring
2200
+ # wrong constant name substring_after
2201
+ # wrong constant name substring_before
2202
+ # wrong constant name sum
2203
+ # wrong constant name text
2204
+ # wrong constant name translate
2205
+ # wrong constant name true
2206
+ # wrong constant name variables
2207
+ # wrong constant name variables=
2208
+ # wrong constant name initialize
2209
+ # wrong constant name <static-init>
2210
+ # wrong constant name ==
2211
+ # wrong constant name clone
2212
+ # wrong constant name content
2213
+ # wrong constant name content=
2214
+ # wrong constant name initialize
2215
+ # wrong constant name node_type
2216
+ # wrong constant name target
2217
+ # wrong constant name target=
2218
+ # wrong constant name write
2219
+ # wrong constant name <static-init>
2220
+ # wrong constant name <Class:Node>
2221
+ # wrong constant name <<
2222
+ # wrong constant name =~
2223
+ # wrong constant name []
2224
+ # wrong constant name []=
2225
+ # wrong constant name children
2226
+ # wrong constant name each
2227
+ # wrong constant name has_name?
2228
+ # wrong constant name initialize
2229
+ # wrong constant name local_name
2230
+ # wrong constant name local_name=
2231
+ # wrong constant name name
2232
+ # wrong constant name name=
2233
+ # wrong constant name namespace
2234
+ # wrong constant name namespace=
2235
+ # wrong constant name node_type
2236
+ # wrong constant name parent
2237
+ # wrong constant name parent=
2238
+ # wrong constant name prefix
2239
+ # wrong constant name root
2240
+ # wrong constant name size
2241
+ # wrong constant name text=
2242
+ # wrong constant name <static-init>
2243
+ # wrong constant name <static-init>
2244
+ # uninitialized constant REXML::Namespace::NAME
2245
+ # uninitialized constant REXML::Namespace::NAMECHAR
2246
+ # Did you mean? REXML::Namespace::NAME_CHAR
2247
+ # uninitialized constant REXML::Namespace::NAME_CHAR
2248
+ # Did you mean? REXML::Namespace::NAME_STR
2249
+ # REXML::Namespace::NAMECHAR
2250
+ # uninitialized constant REXML::Namespace::NAME_START_CHAR
2251
+ # uninitialized constant REXML::Namespace::NAME_STR
2252
+ # Did you mean? REXML::Namespace::NCNAME_STR
2253
+ # uninitialized constant REXML::Namespace::NCNAME_STR
2254
+ # Did you mean? REXML::Namespace::NAME_STR
2255
+ # uninitialized constant REXML::Namespace::NMTOKEN
2256
+ # Did you mean? REXML::Namespace::NMTOKENS
2257
+ # uninitialized constant REXML::Namespace::NMTOKENS
2258
+ # Did you mean? REXML::XMLTokens
2259
+ # uninitialized constant REXML::Namespace::REFERENCE
2260
+ # wrong constant name expanded_name
2261
+ # wrong constant name fully_expanded_name
2262
+ # wrong constant name has_name?
2263
+ # wrong constant name local_name
2264
+ # wrong constant name name
2265
+ # wrong constant name name=
2266
+ # wrong constant name prefix
2267
+ # wrong constant name prefix=
2268
+ # wrong constant name <static-init>
2269
+ # wrong constant name each_recursive
2270
+ # wrong constant name find_first_recursive
2271
+ # wrong constant name indent
2272
+ # wrong constant name index_in_parent
2273
+ # wrong constant name next_sibling_node
2274
+ # wrong constant name parent?
2275
+ # wrong constant name previous_sibling_node
2276
+ # wrong constant name to_s
2277
+ # wrong constant name <static-init>
2278
+ # wrong constant name initialize
2279
+ # wrong constant name name
2280
+ # wrong constant name public
2281
+ # wrong constant name public=
2282
+ # wrong constant name system
2283
+ # wrong constant name system=
2284
+ # wrong constant name to_s
2285
+ # wrong constant name write
2286
+ # wrong constant name <static-init>
2287
+ # wrong constant name <<
2288
+ # wrong constant name initialize
2289
+ # wrong constant name <static-init>
2290
+ # wrong constant name <<
2291
+ # uninitialized constant REXML::Parent::Elem
2292
+ # Did you mean? REXML::Element
2293
+ # wrong constant name []
2294
+ # wrong constant name []=
2295
+ # wrong constant name add
2296
+ # wrong constant name children
2297
+ # wrong constant name deep_clone
2298
+ # wrong constant name delete
2299
+ # wrong constant name delete_at
2300
+ # wrong constant name delete_if
2301
+ # wrong constant name each
2302
+ # wrong constant name each_child
2303
+ # wrong constant name each_index
2304
+ # wrong constant name index
2305
+ # wrong constant name insert_after
2306
+ # wrong constant name insert_before
2307
+ # wrong constant name length
2308
+ # wrong constant name push
2309
+ # wrong constant name replace_child
2310
+ # wrong constant name size
2311
+ # wrong constant name to_a
2312
+ # wrong constant name unshift
2313
+ # wrong constant name <static-init>
2314
+ # wrong constant name context
2315
+ # wrong constant name continued_exception
2316
+ # wrong constant name continued_exception=
2317
+ # wrong constant name initialize
2318
+ # wrong constant name line
2319
+ # wrong constant name parser
2320
+ # wrong constant name parser=
2321
+ # wrong constant name position
2322
+ # wrong constant name source
2323
+ # wrong constant name source=
2324
+ # wrong constant name <static-init>
2325
+ # wrong constant name <Class:BaseParser>
2326
+ # wrong constant name <Class:StreamParser>
2327
+ # wrong constant name <Class:TreeParser>
2328
+ # wrong constant name <Class:XPathParser>
2329
+ # wrong constant name add_listener
2330
+ # wrong constant name empty?
2331
+ # wrong constant name entity
2332
+ # wrong constant name has_next?
2333
+ # wrong constant name initialize
2334
+ # wrong constant name normalize
2335
+ # wrong constant name peek
2336
+ # wrong constant name position
2337
+ # wrong constant name pull
2338
+ # wrong constant name source
2339
+ # wrong constant name stream=
2340
+ # wrong constant name unnormalize
2341
+ # wrong constant name unshift
2342
+ # wrong constant name <static-init>
2343
+ # wrong constant name add_listener
2344
+ # wrong constant name initialize
2345
+ # wrong constant name parse
2346
+ # wrong constant name <static-init>
2347
+ # wrong constant name add_listener
2348
+ # wrong constant name initialize
2349
+ # wrong constant name parse
2350
+ # wrong constant name <static-init>
2351
+ # uninitialized constant REXML::Parsers::XPathParser::NAME
2352
+ # Did you mean? REXML::Parsers::XPathParser::QNAME
2353
+ # uninitialized constant REXML::Parsers::XPathParser::NAMECHAR
2354
+ # Did you mean? REXML::Parsers::XPathParser::NAME_CHAR
2355
+ # uninitialized constant REXML::Parsers::XPathParser::NAME_CHAR
2356
+ # Did you mean? REXML::Parsers::XPathParser::NAME_STR
2357
+ # REXML::Parsers::XPathParser::NAMECHAR
2358
+ # uninitialized constant REXML::Parsers::XPathParser::NAME_START_CHAR
2359
+ # uninitialized constant REXML::Parsers::XPathParser::NAME_STR
2360
+ # Did you mean? REXML::Parsers::XPathParser::NCNAME_STR
2361
+ # uninitialized constant REXML::Parsers::XPathParser::NCNAME_STR
2362
+ # Did you mean? REXML::Parsers::XPathParser::NAME_STR
2363
+ # uninitialized constant REXML::Parsers::XPathParser::NMTOKEN
2364
+ # Did you mean? REXML::Parsers::XPathParser::NMTOKENS
2365
+ # uninitialized constant REXML::Parsers::XPathParser::NMTOKENS
2366
+ # Did you mean? REXML::XMLTokens
2367
+ # uninitialized constant REXML::Parsers::XPathParser::REFERENCE
2368
+ # wrong constant name abbreviate
2369
+ # wrong constant name expand
2370
+ # wrong constant name namespaces=
2371
+ # wrong constant name parse
2372
+ # wrong constant name predicate
2373
+ # wrong constant name predicate_to_string
2374
+ # wrong constant name <static-init>
2375
+ # wrong constant name <static-init>
2376
+ # wrong constant name <static-init>
2377
+ # wrong constant name entity_expansion_limit
2378
+ # wrong constant name entity_expansion_limit=
2379
+ # wrong constant name entity_expansion_text_limit
2380
+ # wrong constant name entity_expansion_text_limit=
2381
+ # wrong constant name buffer
2382
+ # wrong constant name consume
2383
+ # wrong constant name current_line
2384
+ # wrong constant name empty?
2385
+ # wrong constant name encoding=
2386
+ # wrong constant name initialize
2387
+ # wrong constant name line
2388
+ # wrong constant name match
2389
+ # wrong constant name match_to
2390
+ # wrong constant name match_to_consume
2391
+ # wrong constant name position
2392
+ # wrong constant name read
2393
+ # wrong constant name scan
2394
+ # wrong constant name <static-init>
2395
+ # wrong constant name <static-init>
2396
+ # wrong constant name create_from
2397
+ # uninitialized constant REXML::SyncEnumerator::Elem
2398
+ # Did you mean? REXML::Element
2399
+ # wrong constant name each
2400
+ # wrong constant name initialize
2401
+ # wrong constant name length
2402
+ # wrong constant name size
2403
+ # wrong constant name <static-init>
2404
+ # wrong constant name <<
2405
+ # wrong constant name <=>
2406
+ # wrong constant name clone
2407
+ # wrong constant name doctype
2408
+ # wrong constant name empty?
2409
+ # wrong constant name indent_text
2410
+ # wrong constant name initialize
2411
+ # wrong constant name node_type
2412
+ # wrong constant name parent=
2413
+ # wrong constant name raw
2414
+ # wrong constant name raw=
2415
+ # wrong constant name to_s
2416
+ # wrong constant name value
2417
+ # wrong constant name value=
2418
+ # wrong constant name wrap
2419
+ # wrong constant name write
2420
+ # wrong constant name write_with_substitution
2421
+ # wrong constant name xpath
2422
+ # wrong constant name <static-init>
2423
+ # wrong constant name check
2424
+ # wrong constant name expand
2425
+ # wrong constant name normalize
2426
+ # wrong constant name read_with_substitution
2427
+ # wrong constant name unnormalize
2428
+ # wrong constant name initialize
2429
+ # wrong constant name <static-init>
2430
+ # wrong constant name <Class:ValidationException>
2431
+ # wrong constant name initialize
2432
+ # wrong constant name <static-init>
2433
+ # wrong constant name <static-init>
2434
+ # wrong constant name ==
2435
+ # wrong constant name clone
2436
+ # wrong constant name dowrite
2437
+ # wrong constant name encoding=
2438
+ # wrong constant name initialize
2439
+ # wrong constant name node_type
2440
+ # wrong constant name nowrite
2441
+ # wrong constant name old_enc=
2442
+ # wrong constant name stand_alone?
2443
+ # wrong constant name standalone
2444
+ # wrong constant name standalone=
2445
+ # wrong constant name version
2446
+ # wrong constant name version=
2447
+ # wrong constant name write
2448
+ # wrong constant name writeencoding
2449
+ # wrong constant name writethis
2450
+ # wrong constant name xmldecl
2451
+ # wrong constant name <static-init>
2452
+ # wrong constant name default
2453
+ # wrong constant name <static-init>
2454
+ # uninitialized constant REXML::XPath::INTERNAL_METHODS
2455
+ # wrong constant name <static-init>
2456
+ # wrong constant name each
2457
+ # wrong constant name first
2458
+ # wrong constant name match
2459
+ # wrong constant name context
2460
+ # wrong constant name initialize
2461
+ # wrong constant name position
2462
+ # wrong constant name raw_node
2463
+ # wrong constant name <static-init>
2464
+ # uninitialized constant REXML::XPathParser::NAME
2465
+ # uninitialized constant REXML::XPathParser::NAMECHAR
2466
+ # Did you mean? REXML::XPathParser::NAME_CHAR
2467
+ # uninitialized constant REXML::XPathParser::NAME_CHAR
2468
+ # Did you mean? REXML::XPathParser::NAME_STR
2469
+ # REXML::XPathParser::NAMECHAR
2470
+ # uninitialized constant REXML::XPathParser::NAME_START_CHAR
2471
+ # uninitialized constant REXML::XPathParser::NAME_STR
2472
+ # Did you mean? REXML::XPathParser::NCNAME_STR
2473
+ # uninitialized constant REXML::XPathParser::NCNAME_STR
2474
+ # Did you mean? REXML::XPathParser::NAME_STR
2475
+ # uninitialized constant REXML::XPathParser::NMTOKEN
2476
+ # Did you mean? REXML::XPathParser::NMTOKENS
2477
+ # uninitialized constant REXML::XPathParser::NMTOKENS
2478
+ # Did you mean? REXML::XMLTokens
2479
+ # uninitialized constant REXML::XPathParser::REFERENCE
2480
+ # wrong constant name []=
2481
+ # wrong constant name first
2482
+ # wrong constant name get_first
2483
+ # wrong constant name initialize
2484
+ # wrong constant name match
2485
+ # wrong constant name namespaces=
2486
+ # wrong constant name parse
2487
+ # wrong constant name predicate
2488
+ # wrong constant name variables=
2489
+ # wrong constant name <static-init>
2490
+ # wrong constant name <static-init>
2491
+ # uninitialized constant RSpec::Core::ExampleGroup::NOT_YET_IMPLEMENTED
2492
+ # uninitialized constant RSpec::Core::ExampleGroup::NO_REASON_GIVEN
2493
+ # wrong constant name initialize
2494
+ # wrong constant name persist
2495
+ # wrong constant name <static-init>
2496
+ # wrong constant name load_from
2497
+ # wrong constant name persist
2498
+ # wrong constant name example_failed
2499
+ # wrong constant name example_finished
2500
+ # wrong constant name initialize
2501
+ # wrong constant name start_dump
2502
+ # wrong constant name <static-init>
2503
+ # wrong constant name inherited
2504
+ # wrong constant name close
2505
+ # wrong constant name example_group
2506
+ # wrong constant name example_group=
2507
+ # wrong constant name example_group_started
2508
+ # wrong constant name initialize
2509
+ # wrong constant name output
2510
+ # wrong constant name start
2511
+ # wrong constant name <static-init>
2512
+ # wrong constant name dump_failures
2513
+ # wrong constant name dump_pending
2514
+ # wrong constant name dump_summary
2515
+ # wrong constant name message
2516
+ # wrong constant name seed
2517
+ # wrong constant name <static-init>
2518
+ # wrong constant name initialize
2519
+ # wrong constant name notify_results
2520
+ # wrong constant name <static-init>
2521
+ # wrong constant name example_failed
2522
+ # wrong constant name example_group_finished
2523
+ # wrong constant name example_passed
2524
+ # wrong constant name example_pending
2525
+ # wrong constant name <static-init>
2526
+ # wrong constant name initialize
2527
+ # wrong constant name message
2528
+ # wrong constant name output
2529
+ # wrong constant name <static-init>
2530
+ # wrong constant name dump_summary
2531
+ # wrong constant name example_failed
2532
+ # wrong constant name example_passed
2533
+ # wrong constant name example_pending
2534
+ # wrong constant name example_started
2535
+ # wrong constant name start_dump
2536
+ # wrong constant name <static-init>
2537
+ # wrong constant name dump_profile
2538
+ # wrong constant name dump_profile_slowest_example_groups
2539
+ # wrong constant name dump_profile_slowest_examples
2540
+ # wrong constant name dump_summary
2541
+ # wrong constant name message
2542
+ # wrong constant name output_hash
2543
+ # wrong constant name seed
2544
+ # wrong constant name stop
2545
+ # wrong constant name <static-init>
2546
+ # wrong constant name dump_profile
2547
+ # wrong constant name initialize
2548
+ # wrong constant name output
2549
+ # wrong constant name <static-init>
2550
+ # wrong constant name example_failed
2551
+ # wrong constant name example_passed
2552
+ # wrong constant name example_pending
2553
+ # wrong constant name start_dump
2554
+ # wrong constant name <static-init>
2555
+ # wrong constant name example_group_finished
2556
+ # wrong constant name example_group_started
2557
+ # wrong constant name example_groups
2558
+ # wrong constant name example_started
2559
+ # wrong constant name <static-init>
2560
+ # wrong constant name <Class:Recording>
2561
+ # wrong constant name __shared_context_recordings
2562
+ # wrong constant name after
2563
+ # wrong constant name append_after
2564
+ # wrong constant name append_before
2565
+ # wrong constant name around
2566
+ # wrong constant name before
2567
+ # wrong constant name context
2568
+ # wrong constant name describe
2569
+ # wrong constant name hooks
2570
+ # wrong constant name included
2571
+ # wrong constant name let
2572
+ # wrong constant name let!
2573
+ # wrong constant name prepend_after
2574
+ # wrong constant name prepend_before
2575
+ # wrong constant name subject
2576
+ # wrong constant name subject!
2577
+ # uninitialized constant RSpec::Core::SharedContext::Recording::Elem
2578
+ # wrong constant name args
2579
+ # wrong constant name args=
2580
+ # wrong constant name block
2581
+ # wrong constant name block=
2582
+ # wrong constant name method_name
2583
+ # wrong constant name method_name=
2584
+ # wrong constant name playback_onto
2585
+ # wrong constant name <static-init>
2586
+ # wrong constant name []
2587
+ # wrong constant name members
2588
+ # wrong constant name <static-init>
2589
+ # wrong constant name record
2590
+ # wrong constant name <Class:Differ>
2591
+ # wrong constant name color?
2592
+ # wrong constant name diff
2593
+ # wrong constant name diff_as_object
2594
+ # wrong constant name diff_as_string
2595
+ # wrong constant name initialize
2596
+ # wrong constant name <static-init>
2597
+ # wrong constant name deregister_matcher_definition
2598
+ # wrong constant name is_a_matcher?
2599
+ # wrong constant name matcher_definitions
2600
+ # wrong constant name register_matcher_definition
2601
+ # wrong constant name rspec_description_for_object
2602
+ # wrong constant name <Class:CparseParams>
2603
+ # wrong constant name <static-init>
2604
+ # wrong constant name alphanumeric
2605
+ # wrong constant name bytes
2606
+ # wrong constant name urandom
2607
+ # wrong constant name %
2608
+ # wrong constant name entries
2609
+ # wrong constant name to_a
2610
+ # wrong constant name expand
2611
+ # wrong constant name fire_update!
2612
+ # wrong constant name ruby
2613
+ # wrong constant name match?
2614
+ # wrong constant name union
2615
+ # wrong constant name <Class:Config>
2616
+ # wrong constant name <Class:Label>
2617
+ # wrong constant name <Class:Message>
2618
+ # wrong constant name <Class:OpCode>
2619
+ # wrong constant name <Class:RCode>
2620
+ # wrong constant name <Class:Requester>
2621
+ # wrong constant name extract_resources
2622
+ # wrong constant name fetch_resource
2623
+ # wrong constant name lazy_initialize
2624
+ # wrong constant name make_tcp_requester
2625
+ # wrong constant name make_udp_requester
2626
+ # wrong constant name <Class:NXDomain>
2627
+ # wrong constant name <Class:OtherResolvError>
2628
+ # wrong constant name generate_candidates
2629
+ # wrong constant name generate_timeouts
2630
+ # wrong constant name initialize
2631
+ # wrong constant name lazy_initialize
2632
+ # wrong constant name nameserver_port
2633
+ # wrong constant name resolv
2634
+ # wrong constant name single?
2635
+ # wrong constant name timeouts=
2636
+ # wrong constant name <static-init>
2637
+ # wrong constant name <static-init>
2638
+ # wrong constant name <static-init>
2639
+ # wrong constant name default_config_hash
2640
+ # wrong constant name parse_resolv_conf
2641
+ # wrong constant name <Class:Str>
2642
+ # wrong constant name ==
2643
+ # wrong constant name downcase
2644
+ # wrong constant name eql?
2645
+ # wrong constant name initialize
2646
+ # wrong constant name string
2647
+ # wrong constant name <static-init>
2648
+ # wrong constant name <static-init>
2649
+ # wrong constant name split
2650
+ # wrong constant name ==
2651
+ # wrong constant name <Class:MessageDecoder>
2652
+ # wrong constant name <Class:MessageEncoder>
2653
+ # wrong constant name aa
2654
+ # wrong constant name aa=
2655
+ # wrong constant name add_additional
2656
+ # wrong constant name add_answer
2657
+ # wrong constant name add_authority
2658
+ # wrong constant name add_question
2659
+ # wrong constant name additional
2660
+ # wrong constant name answer
2661
+ # wrong constant name authority
2662
+ # wrong constant name each_additional
2663
+ # wrong constant name each_answer
2664
+ # wrong constant name each_authority
2665
+ # wrong constant name each_question
2666
+ # wrong constant name each_resource
2667
+ # wrong constant name encode
2668
+ # wrong constant name id
2669
+ # wrong constant name id=
2670
+ # wrong constant name initialize
2671
+ # wrong constant name opcode
2672
+ # wrong constant name opcode=
2673
+ # wrong constant name qr
2674
+ # wrong constant name qr=
2675
+ # wrong constant name question
2676
+ # wrong constant name ra
2677
+ # wrong constant name ra=
2678
+ # wrong constant name rcode
2679
+ # wrong constant name rcode=
2680
+ # wrong constant name rd
2681
+ # wrong constant name rd=
2682
+ # wrong constant name tc
2683
+ # wrong constant name tc=
2684
+ # wrong constant name get_bytes
2685
+ # wrong constant name get_label
2686
+ # wrong constant name get_labels
2687
+ # wrong constant name get_length16
2688
+ # wrong constant name get_name
2689
+ # wrong constant name get_question
2690
+ # wrong constant name get_rr
2691
+ # wrong constant name get_string
2692
+ # wrong constant name get_string_list
2693
+ # wrong constant name get_unpack
2694
+ # wrong constant name initialize
2695
+ # wrong constant name <static-init>
2696
+ # wrong constant name put_bytes
2697
+ # wrong constant name put_label
2698
+ # wrong constant name put_labels
2699
+ # wrong constant name put_length16
2700
+ # wrong constant name put_name
2701
+ # wrong constant name put_pack
2702
+ # wrong constant name put_string
2703
+ # wrong constant name put_string_list
2704
+ # wrong constant name <static-init>
2705
+ # wrong constant name <static-init>
2706
+ # wrong constant name decode
2707
+ # wrong constant name ==
2708
+ # wrong constant name []
2709
+ # wrong constant name eql?
2710
+ # wrong constant name length
2711
+ # wrong constant name to_a
2712
+ # wrong constant name <static-init>
2713
+ # wrong constant name encode_rdata
2714
+ # wrong constant name decode_rdata
2715
+ # wrong constant name <static-init>
2716
+ # wrong constant name <Class:ConnectedUDP>
2717
+ # wrong constant name <Class:MDNSOneShot>
2718
+ # wrong constant name <Class:RequestError>
2719
+ # wrong constant name <Class:Sender>
2720
+ # wrong constant name <Class:TCP>
2721
+ # wrong constant name <Class:UnconnectedUDP>
2722
+ # wrong constant name close
2723
+ # wrong constant name request
2724
+ # wrong constant name sender_for
2725
+ # wrong constant name <Class:Sender>
2726
+ # wrong constant name initialize
2727
+ # wrong constant name lazy_initialize
2728
+ # wrong constant name recv_reply
2729
+ # wrong constant name sender
2730
+ # wrong constant name data
2731
+ # wrong constant name send
2732
+ # wrong constant name <static-init>
2733
+ # wrong constant name <static-init>
2734
+ # wrong constant name <static-init>
2735
+ # wrong constant name <static-init>
2736
+ # wrong constant name initialize
2737
+ # wrong constant name <static-init>
2738
+ # wrong constant name <Class:Sender>
2739
+ # wrong constant name initialize
2740
+ # wrong constant name recv_reply
2741
+ # wrong constant name sender
2742
+ # wrong constant name data
2743
+ # wrong constant name send
2744
+ # wrong constant name <static-init>
2745
+ # wrong constant name <static-init>
2746
+ # wrong constant name <Class:Sender>
2747
+ # wrong constant name initialize
2748
+ # wrong constant name lazy_initialize
2749
+ # wrong constant name recv_reply
2750
+ # wrong constant name sender
2751
+ # wrong constant name data
2752
+ # wrong constant name initialize
2753
+ # wrong constant name send
2754
+ # wrong constant name <static-init>
2755
+ # wrong constant name <static-init>
2756
+ # wrong constant name <static-init>
2757
+ # wrong constant name ==
2758
+ # wrong constant name eql?
2759
+ # uninitialized constant Resolv::DNS::Resource::CNAME::ClassHash
2760
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2761
+ # uninitialized constant Resolv::DNS::Resource::CNAME::ClassInsensitiveTypes
2762
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2763
+ # uninitialized constant Resolv::DNS::Resource::CNAME::ClassValue
2764
+ # Did you mean? Resolv::DNS::Resource::ClassValue
2765
+ # wrong constant name create
2766
+ # uninitialized constant Resolv::DNS::Resource::HINFO::ClassHash
2767
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2768
+ # uninitialized constant Resolv::DNS::Resource::HINFO::ClassInsensitiveTypes
2769
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2770
+ # uninitialized constant Resolv::DNS::Resource::HINFO::ClassValue
2771
+ # Did you mean? Resolv::DNS::Resource::ClassValue
2772
+ # wrong constant name <Class:ANY>
2773
+ # wrong constant name <Class:CNAME>
2774
+ # wrong constant name <Class:HINFO>
2775
+ # wrong constant name <Class:LOC>
2776
+ # wrong constant name <Class:MINFO>
2777
+ # wrong constant name <Class:MX>
2778
+ # wrong constant name <Class:NS>
2779
+ # wrong constant name <Class:PTR>
2780
+ # wrong constant name <Class:SOA>
2781
+ # wrong constant name <Class:TXT>
2782
+ # uninitialized constant Resolv::DNS::Resource::IN::A::ClassHash
2783
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2784
+ # uninitialized constant Resolv::DNS::Resource::IN::A::ClassInsensitiveTypes
2785
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2786
+ # uninitialized constant Resolv::DNS::Resource::IN::AAAA::ClassHash
2787
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2788
+ # uninitialized constant Resolv::DNS::Resource::IN::AAAA::ClassInsensitiveTypes
2789
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2790
+ # wrong constant name <static-init>
2791
+ # uninitialized constant Resolv::DNS::Resource::IN::CNAME::ClassHash
2792
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2793
+ # uninitialized constant Resolv::DNS::Resource::IN::CNAME::ClassInsensitiveTypes
2794
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2795
+ # wrong constant name <static-init>
2796
+ # uninitialized constant Resolv::DNS::Resource::IN::HINFO::ClassHash
2797
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2798
+ # uninitialized constant Resolv::DNS::Resource::IN::HINFO::ClassInsensitiveTypes
2799
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2800
+ # wrong constant name <static-init>
2801
+ # uninitialized constant Resolv::DNS::Resource::IN::LOC::ClassHash
2802
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2803
+ # uninitialized constant Resolv::DNS::Resource::IN::LOC::ClassInsensitiveTypes
2804
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2805
+ # wrong constant name <static-init>
2806
+ # uninitialized constant Resolv::DNS::Resource::IN::MINFO::ClassHash
2807
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2808
+ # uninitialized constant Resolv::DNS::Resource::IN::MINFO::ClassInsensitiveTypes
2809
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2810
+ # wrong constant name <static-init>
2811
+ # uninitialized constant Resolv::DNS::Resource::IN::MX::ClassHash
2812
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2813
+ # uninitialized constant Resolv::DNS::Resource::IN::MX::ClassInsensitiveTypes
2814
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2815
+ # wrong constant name <static-init>
2816
+ # uninitialized constant Resolv::DNS::Resource::IN::NS::ClassHash
2817
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2818
+ # uninitialized constant Resolv::DNS::Resource::IN::NS::ClassInsensitiveTypes
2819
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2820
+ # wrong constant name <static-init>
2821
+ # uninitialized constant Resolv::DNS::Resource::IN::PTR::ClassHash
2822
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2823
+ # uninitialized constant Resolv::DNS::Resource::IN::PTR::ClassInsensitiveTypes
2824
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2825
+ # wrong constant name <static-init>
2826
+ # uninitialized constant Resolv::DNS::Resource::IN::SOA::ClassHash
2827
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2828
+ # uninitialized constant Resolv::DNS::Resource::IN::SOA::ClassInsensitiveTypes
2829
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2830
+ # wrong constant name <static-init>
2831
+ # uninitialized constant Resolv::DNS::Resource::IN::SRV::ClassHash
2832
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2833
+ # uninitialized constant Resolv::DNS::Resource::IN::SRV::ClassInsensitiveTypes
2834
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2835
+ # uninitialized constant Resolv::DNS::Resource::IN::TXT::ClassHash
2836
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2837
+ # uninitialized constant Resolv::DNS::Resource::IN::TXT::ClassInsensitiveTypes
2838
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2839
+ # wrong constant name <static-init>
2840
+ # uninitialized constant Resolv::DNS::Resource::IN::WKS::ClassHash
2841
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2842
+ # uninitialized constant Resolv::DNS::Resource::IN::WKS::ClassInsensitiveTypes
2843
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2844
+ # uninitialized constant Resolv::DNS::Resource::LOC::ClassHash
2845
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2846
+ # uninitialized constant Resolv::DNS::Resource::LOC::ClassInsensitiveTypes
2847
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2848
+ # uninitialized constant Resolv::DNS::Resource::LOC::ClassValue
2849
+ # Did you mean? Resolv::DNS::Resource::ClassValue
2850
+ # uninitialized constant Resolv::DNS::Resource::MINFO::ClassHash
2851
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2852
+ # uninitialized constant Resolv::DNS::Resource::MINFO::ClassInsensitiveTypes
2853
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2854
+ # uninitialized constant Resolv::DNS::Resource::MINFO::ClassValue
2855
+ # Did you mean? Resolv::DNS::Resource::ClassValue
2856
+ # uninitialized constant Resolv::DNS::Resource::MX::ClassHash
2857
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2858
+ # uninitialized constant Resolv::DNS::Resource::MX::ClassInsensitiveTypes
2859
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2860
+ # uninitialized constant Resolv::DNS::Resource::MX::ClassValue
2861
+ # Did you mean? Resolv::DNS::Resource::ClassValue
2862
+ # uninitialized constant Resolv::DNS::Resource::NS::ClassHash
2863
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2864
+ # uninitialized constant Resolv::DNS::Resource::NS::ClassInsensitiveTypes
2865
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2866
+ # uninitialized constant Resolv::DNS::Resource::NS::ClassValue
2867
+ # Did you mean? Resolv::DNS::Resource::ClassValue
2868
+ # uninitialized constant Resolv::DNS::Resource::PTR::ClassHash
2869
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2870
+ # uninitialized constant Resolv::DNS::Resource::PTR::ClassInsensitiveTypes
2871
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2872
+ # uninitialized constant Resolv::DNS::Resource::PTR::ClassValue
2873
+ # Did you mean? Resolv::DNS::Resource::ClassValue
2874
+ # uninitialized constant Resolv::DNS::Resource::SOA::ClassHash
2875
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2876
+ # uninitialized constant Resolv::DNS::Resource::SOA::ClassInsensitiveTypes
2877
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2878
+ # uninitialized constant Resolv::DNS::Resource::SOA::ClassValue
2879
+ # Did you mean? Resolv::DNS::Resource::ClassValue
2880
+ # uninitialized constant Resolv::DNS::Resource::TXT::ClassHash
2881
+ # Did you mean? Resolv::DNS::Resource::ClassHash
2882
+ # uninitialized constant Resolv::DNS::Resource::TXT::ClassInsensitiveTypes
2883
+ # Did you mean? Resolv::DNS::Resource::ClassInsensitiveTypes
2884
+ # uninitialized constant Resolv::DNS::Resource::TXT::ClassValue
2885
+ # Did you mean? Resolv::DNS::Resource::ClassValue
2886
+ # wrong constant name get_class
2887
+ # wrong constant name allocate_request_id
2888
+ # wrong constant name bind_random_port
2889
+ # wrong constant name free_request_id
2890
+ # wrong constant name random
2891
+ # wrong constant name lazy_initialize
2892
+ # wrong constant name ==
2893
+ # wrong constant name eql?
2894
+ # wrong constant name ==
2895
+ # wrong constant name eql?
2896
+ # wrong constant name ==
2897
+ # wrong constant name eql?
2898
+ # wrong constant name ==
2899
+ # wrong constant name eql?
2900
+ # wrong constant name ==
2901
+ # wrong constant name eql?
2902
+ # uninitialized constant Ripper
2903
+ # uninitialized constant Ripper
2904
+ # uninitialized constant RuboCop::AST::ArrayNode::ASSIGNMENTS
2905
+ # uninitialized constant RuboCop::AST::ArrayNode::BASIC_CONDITIONALS
2906
+ # uninitialized constant RuboCop::AST::ArrayNode::BASIC_LITERALS
2907
+ # uninitialized constant RuboCop::AST::ArrayNode::COMPARISON_OPERATORS
2908
+ # uninitialized constant RuboCop::AST::ArrayNode::COMPOSITE_LITERALS
2909
+ # uninitialized constant RuboCop::AST::ArrayNode::CONDITIONALS
2910
+ # uninitialized constant RuboCop::AST::ArrayNode::EQUALS_ASSIGNMENTS
2911
+ # uninitialized constant RuboCop::AST::ArrayNode::FALSEY_LITERALS
2912
+ # uninitialized constant RuboCop::AST::ArrayNode::IMMUTABLE_LITERALS
2913
+ # Did you mean? RuboCop::AST::ArrayNode::MUTABLE_LITERALS
2914
+ # uninitialized constant RuboCop::AST::ArrayNode::KEYWORDS
2915
+ # uninitialized constant RuboCop::AST::ArrayNode::LITERALS
2916
+ # uninitialized constant RuboCop::AST::ArrayNode::MUTABLE_LITERALS
2917
+ # Did you mean? RuboCop::AST::ArrayNode::IMMUTABLE_LITERALS
2918
+ # uninitialized constant RuboCop::AST::ArrayNode::OPERATOR_KEYWORDS
2919
+ # uninitialized constant RuboCop::AST::ArrayNode::REFERENCES
2920
+ # uninitialized constant RuboCop::AST::ArrayNode::SHORTHAND_ASSIGNMENTS
2921
+ # uninitialized constant RuboCop::AST::ArrayNode::SPECIAL_KEYWORDS
2922
+ # uninitialized constant RuboCop::AST::ArrayNode::TRUTHY_LITERALS
2923
+ # uninitialized constant RuboCop::AST::ArrayNode::VARIABLES
2924
+ # uninitialized constant RuboCop::AST::BlockNode::ASSIGNMENTS
2925
+ # uninitialized constant RuboCop::AST::BlockNode::BASIC_CONDITIONALS
2926
+ # uninitialized constant RuboCop::AST::BlockNode::BASIC_LITERALS
2927
+ # uninitialized constant RuboCop::AST::BlockNode::COMPARISON_OPERATORS
2928
+ # uninitialized constant RuboCop::AST::BlockNode::COMPOSITE_LITERALS
2929
+ # uninitialized constant RuboCop::AST::BlockNode::CONDITIONALS
2930
+ # uninitialized constant RuboCop::AST::BlockNode::EQUALS_ASSIGNMENTS
2931
+ # uninitialized constant RuboCop::AST::BlockNode::FALSEY_LITERALS
2932
+ # uninitialized constant RuboCop::AST::BlockNode::IMMUTABLE_LITERALS
2933
+ # Did you mean? RuboCop::AST::BlockNode::MUTABLE_LITERALS
2934
+ # uninitialized constant RuboCop::AST::BlockNode::KEYWORDS
2935
+ # uninitialized constant RuboCop::AST::BlockNode::LITERALS
2936
+ # uninitialized constant RuboCop::AST::BlockNode::MUTABLE_LITERALS
2937
+ # Did you mean? RuboCop::AST::BlockNode::IMMUTABLE_LITERALS
2938
+ # uninitialized constant RuboCop::AST::BlockNode::OPERATOR_KEYWORDS
2939
+ # uninitialized constant RuboCop::AST::BlockNode::REFERENCES
2940
+ # uninitialized constant RuboCop::AST::BlockNode::SHORTHAND_ASSIGNMENTS
2941
+ # uninitialized constant RuboCop::AST::BlockNode::SPECIAL_KEYWORDS
2942
+ # uninitialized constant RuboCop::AST::BlockNode::TRUTHY_LITERALS
2943
+ # uninitialized constant RuboCop::AST::BlockNode::VARIABLES
2944
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::ASSIGNMENTS
2945
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::BASIC_CONDITIONALS
2946
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::BASIC_LITERALS
2947
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::COMPARISON_OPERATORS
2948
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::COMPOSITE_LITERALS
2949
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::CONDITIONALS
2950
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::EQUALS_ASSIGNMENTS
2951
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::FALSEY_LITERALS
2952
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::IMMUTABLE_LITERALS
2953
+ # Did you mean? RuboCop::AST::KeywordSplatNode::MUTABLE_LITERALS
2954
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::KEYWORDS
2955
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::LITERALS
2956
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::MUTABLE_LITERALS
2957
+ # Did you mean? RuboCop::AST::KeywordSplatNode::IMMUTABLE_LITERALS
2958
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::OPERATOR_KEYWORDS
2959
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::REFERENCES
2960
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::SHORTHAND_ASSIGNMENTS
2961
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::SPECIAL_KEYWORDS
2962
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::TRUTHY_LITERALS
2963
+ # uninitialized constant RuboCop::AST::KeywordSplatNode::VARIABLES
2964
+ # uninitialized constant RuboCop::AST::MethodDispatchNode::ENUMERATOR_METHODS
2965
+ # uninitialized constant RuboCop::AST::MethodDispatchNode::OPERATOR_METHODS
2966
+ # uninitialized constant RuboCop::AST::PairNode::ASSIGNMENTS
2967
+ # uninitialized constant RuboCop::AST::PairNode::BASIC_CONDITIONALS
2968
+ # uninitialized constant RuboCop::AST::PairNode::BASIC_LITERALS
2969
+ # uninitialized constant RuboCop::AST::PairNode::COMPARISON_OPERATORS
2970
+ # uninitialized constant RuboCop::AST::PairNode::COMPOSITE_LITERALS
2971
+ # uninitialized constant RuboCop::AST::PairNode::CONDITIONALS
2972
+ # uninitialized constant RuboCop::AST::PairNode::EQUALS_ASSIGNMENTS
2973
+ # uninitialized constant RuboCop::AST::PairNode::FALSEY_LITERALS
2974
+ # uninitialized constant RuboCop::AST::PairNode::IMMUTABLE_LITERALS
2975
+ # Did you mean? RuboCop::AST::PairNode::MUTABLE_LITERALS
2976
+ # uninitialized constant RuboCop::AST::PairNode::KEYWORDS
2977
+ # uninitialized constant RuboCop::AST::PairNode::LITERALS
2978
+ # uninitialized constant RuboCop::AST::PairNode::MUTABLE_LITERALS
2979
+ # Did you mean? RuboCop::AST::PairNode::IMMUTABLE_LITERALS
2980
+ # uninitialized constant RuboCop::AST::PairNode::OPERATOR_KEYWORDS
2981
+ # uninitialized constant RuboCop::AST::PairNode::REFERENCES
2982
+ # uninitialized constant RuboCop::AST::PairNode::SHORTHAND_ASSIGNMENTS
2983
+ # uninitialized constant RuboCop::AST::PairNode::SPECIAL_KEYWORDS
2984
+ # uninitialized constant RuboCop::AST::PairNode::TRUTHY_LITERALS
2985
+ # uninitialized constant RuboCop::AST::PairNode::VARIABLES
2986
+ # uninitialized constant RuboCop::AST::RegexpNode::ASSIGNMENTS
2987
+ # uninitialized constant RuboCop::AST::RegexpNode::BASIC_CONDITIONALS
2988
+ # uninitialized constant RuboCop::AST::RegexpNode::BASIC_LITERALS
2989
+ # uninitialized constant RuboCop::AST::RegexpNode::COMPARISON_OPERATORS
2990
+ # uninitialized constant RuboCop::AST::RegexpNode::COMPOSITE_LITERALS
2991
+ # uninitialized constant RuboCop::AST::RegexpNode::CONDITIONALS
2992
+ # uninitialized constant RuboCop::AST::RegexpNode::EQUALS_ASSIGNMENTS
2993
+ # uninitialized constant RuboCop::AST::RegexpNode::FALSEY_LITERALS
2994
+ # uninitialized constant RuboCop::AST::RegexpNode::IMMUTABLE_LITERALS
2995
+ # Did you mean? RuboCop::AST::RegexpNode::MUTABLE_LITERALS
2996
+ # uninitialized constant RuboCop::AST::RegexpNode::KEYWORDS
2997
+ # uninitialized constant RuboCop::AST::RegexpNode::LITERALS
2998
+ # uninitialized constant RuboCop::AST::RegexpNode::MUTABLE_LITERALS
2999
+ # Did you mean? RuboCop::AST::RegexpNode::IMMUTABLE_LITERALS
3000
+ # uninitialized constant RuboCop::AST::RegexpNode::OPERATOR_KEYWORDS
3001
+ # uninitialized constant RuboCop::AST::RegexpNode::REFERENCES
3002
+ # uninitialized constant RuboCop::AST::RegexpNode::SHORTHAND_ASSIGNMENTS
3003
+ # uninitialized constant RuboCop::AST::RegexpNode::SPECIAL_KEYWORDS
3004
+ # uninitialized constant RuboCop::AST::RegexpNode::TRUTHY_LITERALS
3005
+ # uninitialized constant RuboCop::AST::RegexpNode::VARIABLES
3006
+ # uninitialized constant RuboCop::Cop::Bundler::DuplicatedGem::BYTE_ORDER_MARK
3007
+ # uninitialized constant RuboCop::Cop::Bundler::DuplicatedGem::LITERAL_REGEX
3008
+ # uninitialized constant RuboCop::Cop::Bundler::GemComment::LITERAL_REGEX
3009
+ # uninitialized constant RuboCop::Cop::Bundler::GemComment::NON_PUBLIC_MODIFIERS
3010
+ # uninitialized constant RuboCop::Cop::Bundler::InsecureProtocolSource::BYTE_ORDER_MARK
3011
+ # uninitialized constant RuboCop::Cop::Bundler::InsecureProtocolSource::LITERAL_REGEX
3012
+ # uninitialized constant RuboCop::Cop::Bundler::OrderedGems::LITERAL_REGEX
3013
+ # uninitialized constant RuboCop::Cop::EndKeywordAlignment::BYTE_ORDER_MARK
3014
+ # uninitialized constant RuboCop::Cop::Gemspec::DuplicatedAssignment::BYTE_ORDER_MARK
3015
+ # uninitialized constant RuboCop::Cop::Gemspec::DuplicatedAssignment::LITERAL_REGEX
3016
+ # uninitialized constant RuboCop::Cop::Gemspec::OrderedDependencies::LITERAL_REGEX
3017
+ # uninitialized constant RuboCop::Cop::Gemspec::RequiredRubyVersion::LITERAL_REGEX
3018
+ # uninitialized constant RuboCop::Cop::Gemspec::RubyVersionGlobalsUsage::LITERAL_REGEX
3019
+ # uninitialized constant RuboCop::Cop::Layout::AccessModifierIndentation::BYTE_ORDER_MARK
3020
+ # uninitialized constant RuboCop::Cop::Layout::AccessModifierIndentation::LITERAL_REGEX
3021
+ # uninitialized constant RuboCop::Cop::Layout::AccessModifierIndentation::SPACE
3022
+ # uninitialized constant RuboCop::Cop::Layout::AlignArguments::LITERAL_REGEX
3023
+ # uninitialized constant RuboCop::Cop::Layout::AlignArguments::SPACE
3024
+ # uninitialized constant RuboCop::Cop::Layout::AlignArray::LITERAL_REGEX
3025
+ # uninitialized constant RuboCop::Cop::Layout::AlignArray::SPACE
3026
+ # uninitialized constant RuboCop::Cop::Layout::AlignHash::BYTE_ORDER_MARK
3027
+ # uninitialized constant RuboCop::Cop::Layout::AlignHash::LITERAL_REGEX
3028
+ # uninitialized constant RuboCop::Cop::Layout::AlignParameters::LITERAL_REGEX
3029
+ # uninitialized constant RuboCop::Cop::Layout::AlignParameters::SPACE
3030
+ # uninitialized constant RuboCop::Cop::Layout::BlockAlignment::BYTE_ORDER_MARK
3031
+ # uninitialized constant RuboCop::Cop::Layout::BlockAlignment::LITERAL_REGEX
3032
+ # uninitialized constant RuboCop::Cop::Layout::BlockEndNewline::LITERAL_REGEX
3033
+ # uninitialized constant RuboCop::Cop::Layout::BlockEndNewline::SPACE
3034
+ # uninitialized constant RuboCop::Cop::Layout::CaseIndentation::BYTE_ORDER_MARK
3035
+ # uninitialized constant RuboCop::Cop::Layout::CaseIndentation::LITERAL_REGEX
3036
+ # uninitialized constant RuboCop::Cop::Layout::CaseIndentation::SPACE
3037
+ # uninitialized constant RuboCop::Cop::Layout::ClassStructure::LITERAL_REGEX
3038
+ # uninitialized constant RuboCop::Cop::Layout::ClosingHeredocIndentation::LITERAL_REGEX
3039
+ # uninitialized constant RuboCop::Cop::Layout::ClosingHeredocIndentation::OPENING_DELIMITER
3040
+ # uninitialized constant RuboCop::Cop::Layout::ClosingParenthesisIndentation::LITERAL_REGEX
3041
+ # uninitialized constant RuboCop::Cop::Layout::ClosingParenthesisIndentation::SPACE
3042
+ # uninitialized constant RuboCop::Cop::Layout::CommentIndentation::LITERAL_REGEX
3043
+ # uninitialized constant RuboCop::Cop::Layout::CommentIndentation::SPACE
3044
+ # uninitialized constant RuboCop::Cop::Layout::ConditionPosition::LITERAL_REGEX
3045
+ # uninitialized constant RuboCop::Cop::Layout::DefEndAlignment::BYTE_ORDER_MARK
3046
+ # uninitialized constant RuboCop::Cop::Layout::DefEndAlignment::LITERAL_REGEX
3047
+ # uninitialized constant RuboCop::Cop::Layout::ElseAlignment::BYTE_ORDER_MARK
3048
+ # uninitialized constant RuboCop::Cop::Layout::ElseAlignment::LITERAL_REGEX
3049
+ # uninitialized constant RuboCop::Cop::Layout::ElseAlignment::SPACE
3050
+ # uninitialized constant RuboCop::Cop::Layout::EmptyComment::BYTE_ORDER_MARK
3051
+ # uninitialized constant RuboCop::Cop::Layout::EmptyComment::LITERAL_REGEX
3052
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLineAfterGuardClause::BYTE_ORDER_MARK
3053
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLineAfterGuardClause::LITERAL_REGEX
3054
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLineAfterMagicComment::BYTE_ORDER_MARK
3055
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLineAfterMagicComment::LITERAL_REGEX
3056
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLineBetweenDefs::BYTE_ORDER_MARK
3057
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLineBetweenDefs::LITERAL_REGEX
3058
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLines::BYTE_ORDER_MARK
3059
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLines::LITERAL_REGEX
3060
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier::BYTE_ORDER_MARK
3061
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier::LITERAL_REGEX
3062
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundArguments::BYTE_ORDER_MARK
3063
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundArguments::LITERAL_REGEX
3064
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBeginBody::BYTE_ORDER_MARK
3065
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBeginBody::LITERAL_REGEX
3066
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBeginBody::MSG_DEFERRED
3067
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBeginBody::MSG_EXTRA
3068
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBeginBody::MSG_MISSING
3069
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBlockBody::BYTE_ORDER_MARK
3070
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBlockBody::LITERAL_REGEX
3071
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBlockBody::MSG_DEFERRED
3072
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBlockBody::MSG_EXTRA
3073
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBlockBody::MSG_MISSING
3074
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundBody::BYTE_ORDER_MARK
3075
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundClassBody::BYTE_ORDER_MARK
3076
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundClassBody::LITERAL_REGEX
3077
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundClassBody::MSG_DEFERRED
3078
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundClassBody::MSG_EXTRA
3079
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundClassBody::MSG_MISSING
3080
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords::BYTE_ORDER_MARK
3081
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords::LITERAL_REGEX
3082
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords::MSG_DEFERRED
3083
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords::MSG_EXTRA
3084
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords::MSG_MISSING
3085
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundMethodBody::BYTE_ORDER_MARK
3086
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundMethodBody::LITERAL_REGEX
3087
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundMethodBody::MSG_DEFERRED
3088
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundMethodBody::MSG_EXTRA
3089
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundMethodBody::MSG_MISSING
3090
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundModuleBody::BYTE_ORDER_MARK
3091
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundModuleBody::LITERAL_REGEX
3092
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundModuleBody::MSG_DEFERRED
3093
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundModuleBody::MSG_EXTRA
3094
+ # uninitialized constant RuboCop::Cop::Layout::EmptyLinesAroundModuleBody::MSG_MISSING
3095
+ # uninitialized constant RuboCop::Cop::Layout::EndOfLine::BYTE_ORDER_MARK
3096
+ # uninitialized constant RuboCop::Cop::Layout::EndOfLine::LITERAL_REGEX
3097
+ # uninitialized constant RuboCop::Cop::Layout::ExtraSpacing::BYTE_ORDER_MARK
3098
+ # uninitialized constant RuboCop::Cop::Layout::ExtraSpacing::LITERAL_REGEX
3099
+ # uninitialized constant RuboCop::Cop::Layout::FirstArrayElementLineBreak::LITERAL_REGEX
3100
+ # uninitialized constant RuboCop::Cop::Layout::FirstHashElementLineBreak::LITERAL_REGEX
3101
+ # uninitialized constant RuboCop::Cop::Layout::FirstMethodArgumentLineBreak::LITERAL_REGEX
3102
+ # uninitialized constant RuboCop::Cop::Layout::FirstMethodParameterLineBreak::LITERAL_REGEX
3103
+ # uninitialized constant RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis::BYTE_ORDER_MARK
3104
+ # uninitialized constant RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis::LITERAL_REGEX
3105
+ # uninitialized constant RuboCop::Cop::Layout::IndentAssignment::LITERAL_REGEX
3106
+ # uninitialized constant RuboCop::Cop::Layout::IndentAssignment::SPACE
3107
+ # uninitialized constant RuboCop::Cop::Layout::IndentFirstArgument::BYTE_ORDER_MARK
3108
+ # uninitialized constant RuboCop::Cop::Layout::IndentFirstArgument::LITERAL_REGEX
3109
+ # uninitialized constant RuboCop::Cop::Layout::IndentFirstArgument::SPACE
3110
+ # uninitialized constant RuboCop::Cop::Layout::IndentFirstArrayElement::LITERAL_REGEX
3111
+ # uninitialized constant RuboCop::Cop::Layout::IndentFirstArrayElement::SPACE
3112
+ # uninitialized constant RuboCop::Cop::Layout::IndentFirstHashElement::LITERAL_REGEX
3113
+ # uninitialized constant RuboCop::Cop::Layout::IndentFirstHashElement::SPACE
3114
+ # uninitialized constant RuboCop::Cop::Layout::IndentFirstParameter::LITERAL_REGEX
3115
+ # uninitialized constant RuboCop::Cop::Layout::IndentFirstParameter::SPACE
3116
+ # uninitialized constant RuboCop::Cop::Layout::IndentHeredoc::LITERAL_REGEX
3117
+ # uninitialized constant RuboCop::Cop::Layout::IndentHeredoc::OPENING_DELIMITER
3118
+ # uninitialized constant RuboCop::Cop::Layout::IndentationConsistency::LITERAL_REGEX
3119
+ # uninitialized constant RuboCop::Cop::Layout::IndentationConsistency::SPACE
3120
+ # uninitialized constant RuboCop::Cop::Layout::IndentationWidth::BYTE_ORDER_MARK
3121
+ # uninitialized constant RuboCop::Cop::Layout::IndentationWidth::LITERAL_REGEX
3122
+ # uninitialized constant RuboCop::Cop::Layout::IndentationWidth::SPACE
3123
+ # uninitialized constant RuboCop::Cop::Layout::InitialIndentation::BYTE_ORDER_MARK
3124
+ # uninitialized constant RuboCop::Cop::Layout::InitialIndentation::LITERAL_REGEX
3125
+ # uninitialized constant RuboCop::Cop::Layout::LeadingBlankLines::LITERAL_REGEX
3126
+ # uninitialized constant RuboCop::Cop::Layout::LeadingCommentSpace::BYTE_ORDER_MARK
3127
+ # uninitialized constant RuboCop::Cop::Layout::LeadingCommentSpace::LITERAL_REGEX
3128
+ # uninitialized constant RuboCop::Cop::Layout::MultilineArrayBraceLayout::LITERAL_REGEX
3129
+ # uninitialized constant RuboCop::Cop::Layout::MultilineArrayLineBreaks::LITERAL_REGEX
3130
+ # uninitialized constant RuboCop::Cop::Layout::MultilineAssignmentLayout::BYTE_ORDER_MARK
3131
+ # uninitialized constant RuboCop::Cop::Layout::MultilineAssignmentLayout::LITERAL_REGEX
3132
+ # uninitialized constant RuboCop::Cop::Layout::MultilineBlockLayout::BYTE_ORDER_MARK
3133
+ # uninitialized constant RuboCop::Cop::Layout::MultilineBlockLayout::LITERAL_REGEX
3134
+ # uninitialized constant RuboCop::Cop::Layout::MultilineHashBraceLayout::LITERAL_REGEX
3135
+ # uninitialized constant RuboCop::Cop::Layout::MultilineHashKeyLineBreaks::LITERAL_REGEX
3136
+ # uninitialized constant RuboCop::Cop::Layout::MultilineMethodArgumentLineBreaks::LITERAL_REGEX
3137
+ # uninitialized constant RuboCop::Cop::Layout::MultilineMethodCallBraceLayout::LITERAL_REGEX
3138
+ # uninitialized constant RuboCop::Cop::Layout::MultilineMethodDefinitionBraceLayout::LITERAL_REGEX
3139
+ # uninitialized constant RuboCop::Cop::Layout::RescueEnsureAlignment::BYTE_ORDER_MARK
3140
+ # uninitialized constant RuboCop::Cop::Layout::RescueEnsureAlignment::LITERAL_REGEX
3141
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAfterColon::LITERAL_REGEX
3142
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAfterMethodName::BYTE_ORDER_MARK
3143
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAfterMethodName::LITERAL_REGEX
3144
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAfterNot::BYTE_ORDER_MARK
3145
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAfterNot::LITERAL_REGEX
3146
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAroundEqualsInParameterDefault::BYTE_ORDER_MARK
3147
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAroundEqualsInParameterDefault::LITERAL_REGEX
3148
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAroundEqualsInParameterDefault::NO_SPACE_COMMAND
3149
+ # Did you mean? RuboCop::Cop::Layout::SpaceAroundEqualsInParameterDefault::SPACE_COMMAND
3150
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAroundEqualsInParameterDefault::SINGLE_SPACE_REGEXP
3151
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAroundEqualsInParameterDefault::SPACE_COMMAND
3152
+ # Did you mean? RuboCop::Cop::Layout::SpaceAroundEqualsInParameterDefault::NO_SPACE_COMMAND
3153
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAroundKeyword::LITERAL_REGEX
3154
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAroundOperators::BYTE_ORDER_MARK
3155
+ # uninitialized constant RuboCop::Cop::Layout::SpaceAroundOperators::LITERAL_REGEX
3156
+ # uninitialized constant RuboCop::Cop::Layout::SpaceBeforeBlockBraces::BYTE_ORDER_MARK
3157
+ # uninitialized constant RuboCop::Cop::Layout::SpaceBeforeBlockBraces::LITERAL_REGEX
3158
+ # uninitialized constant RuboCop::Cop::Layout::SpaceBeforeComment::LITERAL_REGEX
3159
+ # uninitialized constant RuboCop::Cop::Layout::SpaceBeforeFirstArg::BYTE_ORDER_MARK
3160
+ # uninitialized constant RuboCop::Cop::Layout::SpaceBeforeFirstArg::LITERAL_REGEX
3161
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInLambdaLiteral::BYTE_ORDER_MARK
3162
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInLambdaLiteral::LITERAL_REGEX
3163
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideArrayLiteralBrackets::BYTE_ORDER_MARK
3164
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideArrayLiteralBrackets::LITERAL_REGEX
3165
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideArrayLiteralBrackets::NO_SPACE_COMMAND
3166
+ # Did you mean? RuboCop::Cop::Layout::SpaceInsideArrayLiteralBrackets::SPACE_COMMAND
3167
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideArrayLiteralBrackets::SINGLE_SPACE_REGEXP
3168
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideArrayLiteralBrackets::SPACE_COMMAND
3169
+ # Did you mean? RuboCop::Cop::Layout::SpaceInsideArrayLiteralBrackets::NO_SPACE_COMMAND
3170
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideArrayPercentLiteral::BYTE_ORDER_MARK
3171
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideArrayPercentLiteral::LITERAL_REGEX
3172
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideHashLiteralBraces::BYTE_ORDER_MARK
3173
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideHashLiteralBraces::LITERAL_REGEX
3174
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideHashLiteralBraces::NO_SPACE_COMMAND
3175
+ # Did you mean? RuboCop::Cop::Layout::SpaceInsideHashLiteralBraces::SPACE_COMMAND
3176
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideHashLiteralBraces::SINGLE_SPACE_REGEXP
3177
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideHashLiteralBraces::SPACE_COMMAND
3178
+ # Did you mean? RuboCop::Cop::Layout::SpaceInsideHashLiteralBraces::NO_SPACE_COMMAND
3179
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideParens::BYTE_ORDER_MARK
3180
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideParens::LITERAL_REGEX
3181
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideParens::NO_SPACE_COMMAND
3182
+ # Did you mean? RuboCop::Cop::Layout::SpaceInsideParens::SPACE_COMMAND
3183
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideParens::SINGLE_SPACE_REGEXP
3184
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideParens::SPACE_COMMAND
3185
+ # Did you mean? RuboCop::Cop::Layout::SpaceInsideParens::NO_SPACE_COMMAND
3186
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsidePercentLiteralDelimiters::BYTE_ORDER_MARK
3187
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsidePercentLiteralDelimiters::LITERAL_REGEX
3188
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideRangeLiteral::LITERAL_REGEX
3189
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideReferenceBrackets::BYTE_ORDER_MARK
3190
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideReferenceBrackets::LITERAL_REGEX
3191
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideReferenceBrackets::NO_SPACE_COMMAND
3192
+ # Did you mean? RuboCop::Cop::Layout::SpaceInsideReferenceBrackets::SPACE_COMMAND
3193
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideReferenceBrackets::SINGLE_SPACE_REGEXP
3194
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideReferenceBrackets::SPACE_COMMAND
3195
+ # Did you mean? RuboCop::Cop::Layout::SpaceInsideReferenceBrackets::NO_SPACE_COMMAND
3196
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideStringInterpolation::BYTE_ORDER_MARK
3197
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideStringInterpolation::LITERAL_REGEX
3198
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideStringInterpolation::NO_SPACE_COMMAND
3199
+ # Did you mean? RuboCop::Cop::Layout::SpaceInsideStringInterpolation::SPACE_COMMAND
3200
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideStringInterpolation::SINGLE_SPACE_REGEXP
3201
+ # uninitialized constant RuboCop::Cop::Layout::SpaceInsideStringInterpolation::SPACE_COMMAND
3202
+ # Did you mean? RuboCop::Cop::Layout::SpaceInsideStringInterpolation::NO_SPACE_COMMAND
3203
+ # uninitialized constant RuboCop::Cop::Layout::Tab::BYTE_ORDER_MARK
3204
+ # uninitialized constant RuboCop::Cop::Layout::Tab::LITERAL_REGEX
3205
+ # uninitialized constant RuboCop::Cop::Layout::Tab::SPACE
3206
+ # uninitialized constant RuboCop::Cop::Layout::TrailingWhitespace::BYTE_ORDER_MARK
3207
+ # uninitialized constant RuboCop::Cop::Layout::TrailingWhitespace::LITERAL_REGEX
3208
+ # uninitialized constant RuboCop::Cop::Lint::AmbiguousBlockAssociation::LITERAL_REGEX
3209
+ # uninitialized constant RuboCop::Cop::Lint::AmbiguousOperator::LITERAL_REGEX
3210
+ # uninitialized constant RuboCop::Cop::Lint::AmbiguousRegexpLiteral::LITERAL_REGEX
3211
+ # uninitialized constant RuboCop::Cop::Lint::AssignmentInCondition::LITERAL_REGEX
3212
+ # uninitialized constant RuboCop::Cop::Lint::BigDecimalNew::LITERAL_REGEX
3213
+ # uninitialized constant RuboCop::Cop::Lint::BooleanSymbol::LITERAL_REGEX
3214
+ # uninitialized constant RuboCop::Cop::Lint::CircularArgumentReference::LITERAL_REGEX
3215
+ # uninitialized constant RuboCop::Cop::Lint::Debugger::LITERAL_REGEX
3216
+ # uninitialized constant RuboCop::Cop::Lint::DeprecatedClassMethods::LITERAL_REGEX
3217
+ # uninitialized constant RuboCop::Cop::Lint::DisjunctiveAssignmentInConstructor::LITERAL_REGEX
3218
+ # uninitialized constant RuboCop::Cop::Lint::DuplicateCaseCondition::LITERAL_REGEX
3219
+ # uninitialized constant RuboCop::Cop::Lint::DuplicateMethods::LITERAL_REGEX
3220
+ # uninitialized constant RuboCop::Cop::Lint::DuplicatedKey::LITERAL_REGEX
3221
+ # uninitialized constant RuboCop::Cop::Lint::EachWithObjectArgument::LITERAL_REGEX
3222
+ # uninitialized constant RuboCop::Cop::Lint::ElseLayout::LITERAL_REGEX
3223
+ # uninitialized constant RuboCop::Cop::Lint::EmptyEnsure::LITERAL_REGEX
3224
+ # uninitialized constant RuboCop::Cop::Lint::EmptyExpression::LITERAL_REGEX
3225
+ # uninitialized constant RuboCop::Cop::Lint::EmptyInterpolation::LITERAL_REGEX
3226
+ # uninitialized constant RuboCop::Cop::Lint::EmptyWhen::LITERAL_REGEX
3227
+ # uninitialized constant RuboCop::Cop::Lint::EndInMethod::LITERAL_REGEX
3228
+ # uninitialized constant RuboCop::Cop::Lint::EnsureReturn::LITERAL_REGEX
3229
+ # uninitialized constant RuboCop::Cop::Lint::ErbNewArguments::BYTE_ORDER_MARK
3230
+ # uninitialized constant RuboCop::Cop::Lint::ErbNewArguments::LITERAL_REGEX
3231
+ # uninitialized constant RuboCop::Cop::Lint::FlipFlop::LITERAL_REGEX
3232
+ # uninitialized constant RuboCop::Cop::Lint::FloatOutOfRange::LITERAL_REGEX
3233
+ # uninitialized constant RuboCop::Cop::Lint::FormatParameterMismatch::LITERAL_REGEX
3234
+ # uninitialized constant RuboCop::Cop::Lint::HandleExceptions::LITERAL_REGEX
3235
+ # uninitialized constant RuboCop::Cop::Lint::HeredocMethodCallPosition::BYTE_ORDER_MARK
3236
+ # uninitialized constant RuboCop::Cop::Lint::HeredocMethodCallPosition::LITERAL_REGEX
3237
+ # uninitialized constant RuboCop::Cop::Lint::ImplicitStringConcatenation::LITERAL_REGEX
3238
+ # uninitialized constant RuboCop::Cop::Lint::IneffectiveAccessModifier::LITERAL_REGEX
3239
+ # uninitialized constant RuboCop::Cop::Lint::InheritException::LITERAL_REGEX
3240
+ # uninitialized constant RuboCop::Cop::Lint::InterpolationCheck::LITERAL_REGEX
3241
+ # uninitialized constant RuboCop::Cop::Lint::LiteralAsCondition::LITERAL_REGEX
3242
+ # uninitialized constant RuboCop::Cop::Lint::LiteralInInterpolation::BYTE_ORDER_MARK
3243
+ # uninitialized constant RuboCop::Cop::Lint::LiteralInInterpolation::LITERAL_REGEX
3244
+ # uninitialized constant RuboCop::Cop::Lint::Loop::LITERAL_REGEX
3245
+ # uninitialized constant RuboCop::Cop::Lint::MissingCopEnableDirective::BYTE_ORDER_MARK
3246
+ # uninitialized constant RuboCop::Cop::Lint::MissingCopEnableDirective::LITERAL_REGEX
3247
+ # uninitialized constant RuboCop::Cop::Lint::MultipleCompare::LITERAL_REGEX
3248
+ # uninitialized constant RuboCop::Cop::Lint::NestedMethodDefinition::LITERAL_REGEX
3249
+ # uninitialized constant RuboCop::Cop::Lint::NestedPercentLiteral::BYTE_ORDER_MARK
3250
+ # uninitialized constant RuboCop::Cop::Lint::NestedPercentLiteral::LITERAL_REGEX
3251
+ # uninitialized constant RuboCop::Cop::Lint::NextWithoutAccumulator::LITERAL_REGEX
3252
+ # uninitialized constant RuboCop::Cop::Lint::NonLocalExitFromIterator::LITERAL_REGEX
3253
+ # uninitialized constant RuboCop::Cop::Lint::NumberConversion::LITERAL_REGEX
3254
+ # uninitialized constant RuboCop::Cop::Lint::OrderedMagicComments::FROZEN_STRING_LITERAL
3255
+ # Did you mean? RuboCop::Cop::FrozenStringLiteral
3256
+ # RuboCop::Cop::Lint::OrderedMagicComments::FROZEN_STRING_LITERAL_TYPES
3257
+ # uninitialized constant RuboCop::Cop::Lint::OrderedMagicComments::FROZEN_STRING_LITERAL_ENABLED
3258
+ # Did you mean? RuboCop::Cop::Lint::OrderedMagicComments::FROZEN_STRING_LITERAL_TYPES
3259
+ # uninitialized constant RuboCop::Cop::Lint::OrderedMagicComments::FROZEN_STRING_LITERAL_TYPES
3260
+ # Did you mean? RuboCop::Cop::Lint::OrderedMagicComments::FROZEN_STRING_LITERAL_ENABLED
3261
+ # uninitialized constant RuboCop::Cop::Lint::OrderedMagicComments::LITERAL_REGEX
3262
+ # uninitialized constant RuboCop::Cop::Lint::ParenthesesAsGroupedExpression::BYTE_ORDER_MARK
3263
+ # uninitialized constant RuboCop::Cop::Lint::ParenthesesAsGroupedExpression::LITERAL_REGEX
3264
+ # uninitialized constant RuboCop::Cop::Lint::PercentStringArray::BYTE_ORDER_MARK
3265
+ # uninitialized constant RuboCop::Cop::Lint::PercentStringArray::LITERAL_REGEX
3266
+ # uninitialized constant RuboCop::Cop::Lint::PercentSymbolArray::BYTE_ORDER_MARK
3267
+ # uninitialized constant RuboCop::Cop::Lint::PercentSymbolArray::LITERAL_REGEX
3268
+ # uninitialized constant RuboCop::Cop::Lint::RandOne::LITERAL_REGEX
3269
+ # uninitialized constant RuboCop::Cop::Lint::RedundantWithIndex::BYTE_ORDER_MARK
3270
+ # uninitialized constant RuboCop::Cop::Lint::RedundantWithIndex::LITERAL_REGEX
3271
+ # uninitialized constant RuboCop::Cop::Lint::RedundantWithObject::BYTE_ORDER_MARK
3272
+ # uninitialized constant RuboCop::Cop::Lint::RedundantWithObject::LITERAL_REGEX
3273
+ # uninitialized constant RuboCop::Cop::Lint::RegexpAsCondition::LITERAL_REGEX
3274
+ # uninitialized constant RuboCop::Cop::Lint::RequireParentheses::BYTE_ORDER_MARK
3275
+ # uninitialized constant RuboCop::Cop::Lint::RequireParentheses::LITERAL_REGEX
3276
+ # uninitialized constant RuboCop::Cop::Lint::RescueException::LITERAL_REGEX
3277
+ # uninitialized constant RuboCop::Cop::Lint::RescueType::LITERAL_REGEX
3278
+ # uninitialized constant RuboCop::Cop::Lint::ReturnInVoidContext::LITERAL_REGEX
3279
+ # uninitialized constant RuboCop::Cop::Lint::SafeNavigationChain::LITERAL_REGEX
3280
+ # uninitialized constant RuboCop::Cop::Lint::SafeNavigationConsistency::LITERAL_REGEX
3281
+ # uninitialized constant RuboCop::Cop::Lint::SafeNavigationWithEmpty::LITERAL_REGEX
3282
+ # uninitialized constant RuboCop::Cop::Lint::ScriptPermission::LITERAL_REGEX
3283
+ # uninitialized constant RuboCop::Cop::Lint::ShadowedArgument::LITERAL_REGEX
3284
+ # uninitialized constant RuboCop::Cop::Lint::ShadowedException::BYTE_ORDER_MARK
3285
+ # uninitialized constant RuboCop::Cop::Lint::ShadowedException::LITERAL_REGEX
3286
+ # uninitialized constant RuboCop::Cop::Lint::ShadowingOuterLocalVariable::LITERAL_REGEX
3287
+ # uninitialized constant RuboCop::Cop::Lint::StringConversionInInterpolation::LITERAL_REGEX
3288
+ # uninitialized constant RuboCop::Cop::Lint::Syntax::LITERAL_REGEX
3289
+ # uninitialized constant RuboCop::Cop::Lint::ToJSON::LITERAL_REGEX
3290
+ # uninitialized constant RuboCop::Cop::Lint::UnderscorePrefixedVariableName::LITERAL_REGEX
3291
+ # uninitialized constant RuboCop::Cop::Lint::UnifiedInteger::LITERAL_REGEX
3292
+ # uninitialized constant RuboCop::Cop::Lint::UnneededCopDisableDirective::BYTE_ORDER_MARK
3293
+ # uninitialized constant RuboCop::Cop::Lint::UnneededCopDisableDirective::LITERAL_REGEX
3294
+ # uninitialized constant RuboCop::Cop::Lint::UnneededCopDisableDirective::MINIMUM_SIMILARITY_TO_SUGGEST
3295
+ # uninitialized constant RuboCop::Cop::Lint::UnneededCopEnableDirective::BYTE_ORDER_MARK
3296
+ # uninitialized constant RuboCop::Cop::Lint::UnneededCopEnableDirective::LITERAL_REGEX
3297
+ # uninitialized constant RuboCop::Cop::Lint::UnneededCopEnableDirective::NO_SPACE_COMMAND
3298
+ # Did you mean? RuboCop::Cop::Lint::UnneededCopEnableDirective::SPACE_COMMAND
3299
+ # uninitialized constant RuboCop::Cop::Lint::UnneededCopEnableDirective::SINGLE_SPACE_REGEXP
3300
+ # uninitialized constant RuboCop::Cop::Lint::UnneededCopEnableDirective::SPACE_COMMAND
3301
+ # Did you mean? RuboCop::Cop::Lint::UnneededCopEnableDirective::NO_SPACE_COMMAND
3302
+ # uninitialized constant RuboCop::Cop::Lint::UnneededRequireStatement::BYTE_ORDER_MARK
3303
+ # uninitialized constant RuboCop::Cop::Lint::UnneededRequireStatement::LITERAL_REGEX
3304
+ # uninitialized constant RuboCop::Cop::Lint::UnneededSplatExpansion::LITERAL_REGEX
3305
+ # uninitialized constant RuboCop::Cop::Lint::UnreachableCode::LITERAL_REGEX
3306
+ # uninitialized constant RuboCop::Cop::Lint::UriEscapeUnescape::LITERAL_REGEX
3307
+ # uninitialized constant RuboCop::Cop::Lint::UriRegexp::LITERAL_REGEX
3308
+ # uninitialized constant RuboCop::Cop::Lint::UselessAccessModifier::LITERAL_REGEX
3309
+ # uninitialized constant RuboCop::Cop::Lint::UselessAssignment::LITERAL_REGEX
3310
+ # uninitialized constant RuboCop::Cop::Lint::UselessAssignment::MINIMUM_SIMILARITY_TO_SUGGEST
3311
+ # uninitialized constant RuboCop::Cop::Lint::UselessComparison::LITERAL_REGEX
3312
+ # uninitialized constant RuboCop::Cop::Lint::UselessElseWithoutRescue::LITERAL_REGEX
3313
+ # uninitialized constant RuboCop::Cop::Lint::UselessSetterCall::LITERAL_REGEX
3314
+ # uninitialized constant RuboCop::Cop::Lint::Void::LITERAL_REGEX
3315
+ # uninitialized constant RuboCop::Cop::Metrics::AbcSize::LITERAL_REGEX
3316
+ # uninitialized constant RuboCop::Cop::Metrics::BlockLength::LITERAL_REGEX
3317
+ # uninitialized constant RuboCop::Cop::Metrics::BlockLength::MSG
3318
+ # uninitialized constant RuboCop::Cop::Metrics::BlockNesting::LITERAL_REGEX
3319
+ # uninitialized constant RuboCop::Cop::Metrics::CyclomaticComplexity::LITERAL_REGEX
3320
+ # uninitialized constant RuboCop::Cop::Metrics::LineLength::BYTE_ORDER_MARK
3321
+ # uninitialized constant RuboCop::Cop::Metrics::LineLength::LITERAL_REGEX
3322
+ # uninitialized constant RuboCop::Cop::Metrics::MethodLength::LITERAL_REGEX
3323
+ # uninitialized constant RuboCop::Cop::Metrics::MethodLength::MSG
3324
+ # uninitialized constant RuboCop::Cop::Metrics::ParameterLists::LITERAL_REGEX
3325
+ # uninitialized constant RuboCop::Cop::Metrics::PerceivedComplexity::LITERAL_REGEX
3326
+ # uninitialized constant RuboCop::Cop::Naming::AccessorMethodName::LITERAL_REGEX
3327
+ # uninitialized constant RuboCop::Cop::Naming::AsciiIdentifiers::BYTE_ORDER_MARK
3328
+ # uninitialized constant RuboCop::Cop::Naming::AsciiIdentifiers::LITERAL_REGEX
3329
+ # uninitialized constant RuboCop::Cop::Naming::BinaryOperatorParameterName::LITERAL_REGEX
3330
+ # uninitialized constant RuboCop::Cop::Naming::ClassAndModuleCamelCase::LITERAL_REGEX
3331
+ # uninitialized constant RuboCop::Cop::Naming::ConstantName::LITERAL_REGEX
3332
+ # uninitialized constant RuboCop::Cop::Naming::FileName::BYTE_ORDER_MARK
3333
+ # uninitialized constant RuboCop::Cop::Naming::FileName::LITERAL_REGEX
3334
+ # uninitialized constant RuboCop::Cop::Naming::HeredocDelimiterCase::LITERAL_REGEX
3335
+ # uninitialized constant RuboCop::Cop::Naming::HeredocDelimiterCase::OPENING_DELIMITER
3336
+ # uninitialized constant RuboCop::Cop::Naming::HeredocDelimiterNaming::LITERAL_REGEX
3337
+ # uninitialized constant RuboCop::Cop::Naming::HeredocDelimiterNaming::OPENING_DELIMITER
3338
+ # uninitialized constant RuboCop::Cop::Naming::MemoizedInstanceVariableName::LITERAL_REGEX
3339
+ # uninitialized constant RuboCop::Cop::Naming::MethodName::FORMATS
3340
+ # uninitialized constant RuboCop::Cop::Naming::MethodName::LITERAL_REGEX
3341
+ # uninitialized constant RuboCop::Cop::Naming::RescuedExceptionsVariableName::LITERAL_REGEX
3342
+ # uninitialized constant RuboCop::Cop::Naming::VariableName::FORMATS
3343
+ # uninitialized constant RuboCop::Cop::Naming::VariableName::LITERAL_REGEX
3344
+ # uninitialized constant RuboCop::Cop::Naming::VariableNumber::FORMATS
3345
+ # uninitialized constant RuboCop::Cop::Naming::VariableNumber::LITERAL_REGEX
3346
+ # uninitialized constant RuboCop::Cop::Performance::Caller::LITERAL_REGEX
3347
+ # uninitialized constant RuboCop::Cop::Performance::CaseWhenSplat::BYTE_ORDER_MARK
3348
+ # uninitialized constant RuboCop::Cop::Performance::CaseWhenSplat::LITERAL_REGEX
3349
+ # uninitialized constant RuboCop::Cop::Performance::CaseWhenSplat::SPACE
3350
+ # uninitialized constant RuboCop::Cop::Performance::Casecmp::LITERAL_REGEX
3351
+ # uninitialized constant RuboCop::Cop::Performance::ChainArrayAllocation::BYTE_ORDER_MARK
3352
+ # uninitialized constant RuboCop::Cop::Performance::ChainArrayAllocation::LITERAL_REGEX
3353
+ # uninitialized constant RuboCop::Cop::Performance::CompareWithBlock::BYTE_ORDER_MARK
3354
+ # uninitialized constant RuboCop::Cop::Performance::CompareWithBlock::LITERAL_REGEX
3355
+ # uninitialized constant RuboCop::Cop::Performance::Count::BYTE_ORDER_MARK
3356
+ # uninitialized constant RuboCop::Cop::Performance::Count::LITERAL_REGEX
3357
+ # uninitialized constant RuboCop::Cop::Performance::Detect::LITERAL_REGEX
3358
+ # uninitialized constant RuboCop::Cop::Performance::DoubleStartEndWith::LITERAL_REGEX
3359
+ # uninitialized constant RuboCop::Cop::Performance::EndWith::LITERAL_REGEX
3360
+ # uninitialized constant RuboCop::Cop::Performance::FixedSize::LITERAL_REGEX
3361
+ # uninitialized constant RuboCop::Cop::Performance::FlatMap::BYTE_ORDER_MARK
3362
+ # uninitialized constant RuboCop::Cop::Performance::FlatMap::LITERAL_REGEX
3363
+ # uninitialized constant RuboCop::Cop::Performance::OpenStruct::LITERAL_REGEX
3364
+ # uninitialized constant RuboCop::Cop::Performance::RangeInclude::LITERAL_REGEX
3365
+ # uninitialized constant RuboCop::Cop::Performance::RedundantBlockCall::LITERAL_REGEX
3366
+ # uninitialized constant RuboCop::Cop::Performance::RedundantMatch::LITERAL_REGEX
3367
+ # uninitialized constant RuboCop::Cop::Performance::RedundantMerge::LITERAL_REGEX
3368
+ # uninitialized constant RuboCop::Cop::Performance::RegexpMatch::LITERAL_REGEX
3369
+ # uninitialized constant RuboCop::Cop::Performance::ReverseEach::BYTE_ORDER_MARK
3370
+ # uninitialized constant RuboCop::Cop::Performance::ReverseEach::LITERAL_REGEX
3371
+ # uninitialized constant RuboCop::Cop::Performance::Size::LITERAL_REGEX
3372
+ # uninitialized constant RuboCop::Cop::Performance::StartWith::LITERAL_REGEX
3373
+ # uninitialized constant RuboCop::Cop::Performance::StringReplacement::BYTE_ORDER_MARK
3374
+ # uninitialized constant RuboCop::Cop::Performance::StringReplacement::LITERAL_REGEX
3375
+ # uninitialized constant RuboCop::Cop::Performance::TimesMap::LITERAL_REGEX
3376
+ # uninitialized constant RuboCop::Cop::Performance::UnfreezeString::LITERAL_REGEX
3377
+ # uninitialized constant RuboCop::Cop::Performance::UriDefaultParser::LITERAL_REGEX
3378
+ # uninitialized constant RuboCop::Cop::RSpec::AlignLeftLetBrace::ALL
3379
+ # uninitialized constant RuboCop::Cop::RSpec::AlignLeftLetBrace::DEFAULT_CONFIGURATION
3380
+ # uninitialized constant RuboCop::Cop::RSpec::AlignLeftLetBrace::DEFAULT_PATTERN_RE
3381
+ # uninitialized constant RuboCop::Cop::RSpec::AlignLeftLetBrace::LITERAL_REGEX
3382
+ # uninitialized constant RuboCop::Cop::RSpec::AlignLeftLetBrace::RSPEC
3383
+ # Did you mean? RuboCop::RSpec
3384
+ # uninitialized constant RuboCop::Cop::RSpec::AlignRightLetBrace::ALL
3385
+ # uninitialized constant RuboCop::Cop::RSpec::AlignRightLetBrace::DEFAULT_CONFIGURATION
3386
+ # uninitialized constant RuboCop::Cop::RSpec::AlignRightLetBrace::DEFAULT_PATTERN_RE
3387
+ # uninitialized constant RuboCop::Cop::RSpec::AlignRightLetBrace::LITERAL_REGEX
3388
+ # uninitialized constant RuboCop::Cop::RSpec::AlignRightLetBrace::RSPEC
3389
+ # Did you mean? RuboCop::RSpec
3390
+ # uninitialized constant RuboCop::Cop::RSpec::AnyInstance::ALL
3391
+ # uninitialized constant RuboCop::Cop::RSpec::AnyInstance::DEFAULT_CONFIGURATION
3392
+ # uninitialized constant RuboCop::Cop::RSpec::AnyInstance::DEFAULT_PATTERN_RE
3393
+ # uninitialized constant RuboCop::Cop::RSpec::AnyInstance::LITERAL_REGEX
3394
+ # uninitialized constant RuboCop::Cop::RSpec::AnyInstance::RSPEC
3395
+ # Did you mean? RuboCop::RSpec
3396
+ # uninitialized constant RuboCop::Cop::RSpec::AroundBlock::ALL
3397
+ # uninitialized constant RuboCop::Cop::RSpec::AroundBlock::DEFAULT_CONFIGURATION
3398
+ # uninitialized constant RuboCop::Cop::RSpec::AroundBlock::DEFAULT_PATTERN_RE
3399
+ # uninitialized constant RuboCop::Cop::RSpec::AroundBlock::LITERAL_REGEX
3400
+ # uninitialized constant RuboCop::Cop::RSpec::AroundBlock::RSPEC
3401
+ # Did you mean? RuboCop::RSpec
3402
+ # uninitialized constant RuboCop::Cop::RSpec::Be::ALL
3403
+ # uninitialized constant RuboCop::Cop::RSpec::Be::DEFAULT_CONFIGURATION
3404
+ # uninitialized constant RuboCop::Cop::RSpec::Be::DEFAULT_PATTERN_RE
3405
+ # uninitialized constant RuboCop::Cop::RSpec::Be::LITERAL_REGEX
3406
+ # uninitialized constant RuboCop::Cop::RSpec::Be::RSPEC
3407
+ # Did you mean? RuboCop::RSpec
3408
+ # uninitialized constant RuboCop::Cop::RSpec::BeEql::ALL
3409
+ # uninitialized constant RuboCop::Cop::RSpec::BeEql::DEFAULT_CONFIGURATION
3410
+ # uninitialized constant RuboCop::Cop::RSpec::BeEql::DEFAULT_PATTERN_RE
3411
+ # uninitialized constant RuboCop::Cop::RSpec::BeEql::LITERAL_REGEX
3412
+ # uninitialized constant RuboCop::Cop::RSpec::BeEql::RSPEC
3413
+ # Did you mean? RuboCop::RSpec
3414
+ # uninitialized constant RuboCop::Cop::RSpec::BeforeAfterAll::ALL
3415
+ # uninitialized constant RuboCop::Cop::RSpec::BeforeAfterAll::DEFAULT_CONFIGURATION
3416
+ # uninitialized constant RuboCop::Cop::RSpec::BeforeAfterAll::DEFAULT_PATTERN_RE
3417
+ # uninitialized constant RuboCop::Cop::RSpec::BeforeAfterAll::LITERAL_REGEX
3418
+ # uninitialized constant RuboCop::Cop::RSpec::BeforeAfterAll::RSPEC
3419
+ # Did you mean? RuboCop::RSpec
3420
+ # uninitialized constant RuboCop::Cop::RSpec::Capybara::CurrentPathExpectation::ALL
3421
+ # uninitialized constant RuboCop::Cop::RSpec::Capybara::CurrentPathExpectation::DEFAULT_CONFIGURATION
3422
+ # uninitialized constant RuboCop::Cop::RSpec::Capybara::CurrentPathExpectation::DEFAULT_PATTERN_RE
3423
+ # uninitialized constant RuboCop::Cop::RSpec::Capybara::CurrentPathExpectation::LITERAL_REGEX
3424
+ # uninitialized constant RuboCop::Cop::RSpec::Capybara::CurrentPathExpectation::RSPEC
3425
+ # Did you mean? RuboCop::RSpec
3426
+ # uninitialized constant RuboCop::Cop::RSpec::Capybara::FeatureMethods::ALL
3427
+ # uninitialized constant RuboCop::Cop::RSpec::Capybara::FeatureMethods::DEFAULT_CONFIGURATION
3428
+ # uninitialized constant RuboCop::Cop::RSpec::Capybara::FeatureMethods::DEFAULT_PATTERN_RE
3429
+ # uninitialized constant RuboCop::Cop::RSpec::Capybara::FeatureMethods::LITERAL_REGEX
3430
+ # uninitialized constant RuboCop::Cop::RSpec::Capybara::FeatureMethods::RSPEC
3431
+ # Did you mean? RuboCop::RSpec
3432
+ # uninitialized constant RuboCop::Cop::RSpec::ContextWording::ALL
3433
+ # uninitialized constant RuboCop::Cop::RSpec::ContextWording::DEFAULT_CONFIGURATION
3434
+ # uninitialized constant RuboCop::Cop::RSpec::ContextWording::DEFAULT_PATTERN_RE
3435
+ # uninitialized constant RuboCop::Cop::RSpec::ContextWording::LITERAL_REGEX
3436
+ # uninitialized constant RuboCop::Cop::RSpec::ContextWording::RSPEC
3437
+ # Did you mean? RuboCop::RSpec
3438
+ # uninitialized constant RuboCop::Cop::RSpec::Cop::ALL
3439
+ # uninitialized constant RuboCop::Cop::RSpec::Cop::LITERAL_REGEX
3440
+ # uninitialized constant RuboCop::Cop::RSpec::Cop::RSPEC
3441
+ # Did you mean? RuboCop::RSpec
3442
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeClass::ALL
3443
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeClass::DEFAULT_CONFIGURATION
3444
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeClass::DEFAULT_PATTERN_RE
3445
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeClass::LITERAL_REGEX
3446
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeClass::RSPEC
3447
+ # Did you mean? RuboCop::RSpec
3448
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeMethod::ALL
3449
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeMethod::DEFAULT_CONFIGURATION
3450
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeMethod::DEFAULT_PATTERN_RE
3451
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeMethod::LITERAL_REGEX
3452
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeMethod::RSPEC
3453
+ # Did you mean? RuboCop::RSpec
3454
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeSymbol::ALL
3455
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeSymbol::DEFAULT_CONFIGURATION
3456
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeSymbol::DEFAULT_PATTERN_RE
3457
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeSymbol::LITERAL_REGEX
3458
+ # uninitialized constant RuboCop::Cop::RSpec::DescribeSymbol::RSPEC
3459
+ # Did you mean? RuboCop::RSpec
3460
+ # uninitialized constant RuboCop::Cop::RSpec::DescribedClass::ALL
3461
+ # uninitialized constant RuboCop::Cop::RSpec::DescribedClass::DEFAULT_CONFIGURATION
3462
+ # uninitialized constant RuboCop::Cop::RSpec::DescribedClass::DEFAULT_PATTERN_RE
3463
+ # uninitialized constant RuboCop::Cop::RSpec::DescribedClass::LITERAL_REGEX
3464
+ # uninitialized constant RuboCop::Cop::RSpec::DescribedClass::RSPEC
3465
+ # Did you mean? RuboCop::RSpec
3466
+ # uninitialized constant RuboCop::Cop::RSpec::Dialect::ALL
3467
+ # uninitialized constant RuboCop::Cop::RSpec::Dialect::DEFAULT_CONFIGURATION
3468
+ # uninitialized constant RuboCop::Cop::RSpec::Dialect::DEFAULT_PATTERN_RE
3469
+ # uninitialized constant RuboCop::Cop::RSpec::Dialect::LITERAL_REGEX
3470
+ # uninitialized constant RuboCop::Cop::RSpec::Dialect::RSPEC
3471
+ # Did you mean? RuboCop::RSpec
3472
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyExampleGroup::ALL
3473
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyExampleGroup::DEFAULT_CONFIGURATION
3474
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyExampleGroup::DEFAULT_PATTERN_RE
3475
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyExampleGroup::LITERAL_REGEX
3476
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyExampleGroup::RSPEC
3477
+ # Did you mean? RuboCop::RSpec
3478
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterExampleGroup::ALL
3479
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterExampleGroup::BYTE_ORDER_MARK
3480
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterExampleGroup::DEFAULT_CONFIGURATION
3481
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterExampleGroup::DEFAULT_PATTERN_RE
3482
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterExampleGroup::LITERAL_REGEX
3483
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterExampleGroup::RSPEC
3484
+ # Did you mean? RuboCop::RSpec
3485
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterFinalLet::ALL
3486
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterFinalLet::BYTE_ORDER_MARK
3487
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterFinalLet::DEFAULT_CONFIGURATION
3488
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterFinalLet::DEFAULT_PATTERN_RE
3489
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterFinalLet::LITERAL_REGEX
3490
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterFinalLet::RSPEC
3491
+ # Did you mean? RuboCop::RSpec
3492
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterHook::ALL
3493
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterHook::BYTE_ORDER_MARK
3494
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterHook::DEFAULT_CONFIGURATION
3495
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterHook::DEFAULT_PATTERN_RE
3496
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterHook::LITERAL_REGEX
3497
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterHook::RSPEC
3498
+ # Did you mean? RuboCop::RSpec
3499
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterSubject::ALL
3500
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterSubject::BYTE_ORDER_MARK
3501
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterSubject::DEFAULT_CONFIGURATION
3502
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterSubject::DEFAULT_PATTERN_RE
3503
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterSubject::LITERAL_REGEX
3504
+ # uninitialized constant RuboCop::Cop::RSpec::EmptyLineAfterSubject::RSPEC
3505
+ # Did you mean? RuboCop::RSpec
3506
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleLength::ALL
3507
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleLength::DEFAULT_CONFIGURATION
3508
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleLength::DEFAULT_PATTERN_RE
3509
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleLength::LITERAL_REGEX
3510
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleLength::RSPEC
3511
+ # Did you mean? RuboCop::RSpec
3512
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleWithoutDescription::ALL
3513
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleWithoutDescription::DEFAULT_CONFIGURATION
3514
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleWithoutDescription::DEFAULT_PATTERN_RE
3515
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleWithoutDescription::LITERAL_REGEX
3516
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleWithoutDescription::RSPEC
3517
+ # Did you mean? RuboCop::RSpec
3518
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleWording::ALL
3519
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleWording::DEFAULT_CONFIGURATION
3520
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleWording::DEFAULT_PATTERN_RE
3521
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleWording::LITERAL_REGEX
3522
+ # uninitialized constant RuboCop::Cop::RSpec::ExampleWording::RSPEC
3523
+ # Did you mean? RuboCop::RSpec
3524
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectActual::ALL
3525
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectActual::DEFAULT_CONFIGURATION
3526
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectActual::DEFAULT_PATTERN_RE
3527
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectActual::LITERAL_REGEX
3528
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectActual::RSPEC
3529
+ # Did you mean? RuboCop::RSpec
3530
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectChange::ALL
3531
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectChange::DEFAULT_CONFIGURATION
3532
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectChange::DEFAULT_PATTERN_RE
3533
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectChange::LITERAL_REGEX
3534
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectChange::RSPEC
3535
+ # Did you mean? RuboCop::RSpec
3536
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectInHook::ALL
3537
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectInHook::DEFAULT_CONFIGURATION
3538
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectInHook::DEFAULT_PATTERN_RE
3539
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectInHook::LITERAL_REGEX
3540
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectInHook::RSPEC
3541
+ # Did you mean? RuboCop::RSpec
3542
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectOutput::ALL
3543
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectOutput::DEFAULT_CONFIGURATION
3544
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectOutput::DEFAULT_PATTERN_RE
3545
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectOutput::LITERAL_REGEX
3546
+ # uninitialized constant RuboCop::Cop::RSpec::ExpectOutput::RSPEC
3547
+ # Did you mean? RuboCop::RSpec
3548
+ # uninitialized constant RuboCop::Cop::RSpec::ExplicitHelper::ALL
3549
+ # uninitialized constant RuboCop::Cop::RSpec::ExplicitHelper::RSPEC
3550
+ # Did you mean? RuboCop::RSpec
3551
+ # uninitialized constant RuboCop::Cop::RSpec::FactoryBot::AttributeDefinedStatically::ALL
3552
+ # uninitialized constant RuboCop::Cop::RSpec::FactoryBot::AttributeDefinedStatically::DEFAULT_CONFIGURATION
3553
+ # uninitialized constant RuboCop::Cop::RSpec::FactoryBot::AttributeDefinedStatically::DEFAULT_PATTERN_RE
3554
+ # uninitialized constant RuboCop::Cop::RSpec::FactoryBot::AttributeDefinedStatically::LITERAL_REGEX
3555
+ # uninitialized constant RuboCop::Cop::RSpec::FactoryBot::AttributeDefinedStatically::RSPEC
3556
+ # Did you mean? RuboCop::RSpec
3557
+ # uninitialized constant RuboCop::Cop::RSpec::FactoryBot::CreateList::ALL
3558
+ # uninitialized constant RuboCop::Cop::RSpec::FactoryBot::CreateList::DEFAULT_CONFIGURATION
3559
+ # uninitialized constant RuboCop::Cop::RSpec::FactoryBot::CreateList::DEFAULT_PATTERN_RE
3560
+ # uninitialized constant RuboCop::Cop::RSpec::FactoryBot::CreateList::LITERAL_REGEX
3561
+ # uninitialized constant RuboCop::Cop::RSpec::FactoryBot::CreateList::RSPEC
3562
+ # Did you mean? RuboCop::RSpec
3563
+ # uninitialized constant RuboCop::Cop::RSpec::FilePath::ALL
3564
+ # uninitialized constant RuboCop::Cop::RSpec::FilePath::DEFAULT_CONFIGURATION
3565
+ # uninitialized constant RuboCop::Cop::RSpec::FilePath::DEFAULT_PATTERN_RE
3566
+ # uninitialized constant RuboCop::Cop::RSpec::FilePath::LITERAL_REGEX
3567
+ # uninitialized constant RuboCop::Cop::RSpec::FilePath::RSPEC
3568
+ # Did you mean? RuboCop::RSpec
3569
+ # uninitialized constant RuboCop::Cop::RSpec::Focus::ALL
3570
+ # uninitialized constant RuboCop::Cop::RSpec::Focus::DEFAULT_CONFIGURATION
3571
+ # uninitialized constant RuboCop::Cop::RSpec::Focus::DEFAULT_PATTERN_RE
3572
+ # uninitialized constant RuboCop::Cop::RSpec::Focus::LITERAL_REGEX
3573
+ # uninitialized constant RuboCop::Cop::RSpec::Focus::RSPEC
3574
+ # Did you mean? RuboCop::RSpec
3575
+ # uninitialized constant RuboCop::Cop::RSpec::HookArgument::ALL
3576
+ # uninitialized constant RuboCop::Cop::RSpec::HookArgument::DEFAULT_CONFIGURATION
3577
+ # uninitialized constant RuboCop::Cop::RSpec::HookArgument::DEFAULT_PATTERN_RE
3578
+ # uninitialized constant RuboCop::Cop::RSpec::HookArgument::LITERAL_REGEX
3579
+ # uninitialized constant RuboCop::Cop::RSpec::HookArgument::RSPEC
3580
+ # Did you mean? RuboCop::RSpec
3581
+ # uninitialized constant RuboCop::Cop::RSpec::HooksBeforeExamples::ALL
3582
+ # uninitialized constant RuboCop::Cop::RSpec::HooksBeforeExamples::BYTE_ORDER_MARK
3583
+ # uninitialized constant RuboCop::Cop::RSpec::HooksBeforeExamples::DEFAULT_CONFIGURATION
3584
+ # uninitialized constant RuboCop::Cop::RSpec::HooksBeforeExamples::DEFAULT_PATTERN_RE
3585
+ # uninitialized constant RuboCop::Cop::RSpec::HooksBeforeExamples::LITERAL_REGEX
3586
+ # uninitialized constant RuboCop::Cop::RSpec::HooksBeforeExamples::RSPEC
3587
+ # Did you mean? RuboCop::RSpec
3588
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitBlockExpectation::ALL
3589
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitBlockExpectation::DEFAULT_CONFIGURATION
3590
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitBlockExpectation::DEFAULT_PATTERN_RE
3591
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitBlockExpectation::LITERAL_REGEX
3592
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitBlockExpectation::RSPEC
3593
+ # Did you mean? RuboCop::RSpec
3594
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitExpect::ALL
3595
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitExpect::DEFAULT_CONFIGURATION
3596
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitExpect::DEFAULT_PATTERN_RE
3597
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitExpect::LITERAL_REGEX
3598
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitExpect::RSPEC
3599
+ # Did you mean? RuboCop::RSpec
3600
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitSubject::ALL
3601
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitSubject::DEFAULT_CONFIGURATION
3602
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitSubject::DEFAULT_PATTERN_RE
3603
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitSubject::LITERAL_REGEX
3604
+ # uninitialized constant RuboCop::Cop::RSpec::ImplicitSubject::RSPEC
3605
+ # Did you mean? RuboCop::RSpec
3606
+ # uninitialized constant RuboCop::Cop::RSpec::InflectedHelper::ALL
3607
+ # uninitialized constant RuboCop::Cop::RSpec::InflectedHelper::RSPEC
3608
+ # Did you mean? RuboCop::RSpec
3609
+ # uninitialized constant RuboCop::Cop::RSpec::InstanceSpy::ALL
3610
+ # uninitialized constant RuboCop::Cop::RSpec::InstanceSpy::DEFAULT_CONFIGURATION
3611
+ # uninitialized constant RuboCop::Cop::RSpec::InstanceSpy::DEFAULT_PATTERN_RE
3612
+ # uninitialized constant RuboCop::Cop::RSpec::InstanceSpy::LITERAL_REGEX
3613
+ # uninitialized constant RuboCop::Cop::RSpec::InstanceSpy::RSPEC
3614
+ # Did you mean? RuboCop::RSpec
3615
+ # uninitialized constant RuboCop::Cop::RSpec::InstanceVariable::ALL
3616
+ # uninitialized constant RuboCop::Cop::RSpec::InstanceVariable::DEFAULT_CONFIGURATION
3617
+ # uninitialized constant RuboCop::Cop::RSpec::InstanceVariable::DEFAULT_PATTERN_RE
3618
+ # uninitialized constant RuboCop::Cop::RSpec::InstanceVariable::LITERAL_REGEX
3619
+ # uninitialized constant RuboCop::Cop::RSpec::InstanceVariable::RSPEC
3620
+ # Did you mean? RuboCop::RSpec
3621
+ # uninitialized constant RuboCop::Cop::RSpec::InvalidPredicateMatcher::ALL
3622
+ # uninitialized constant RuboCop::Cop::RSpec::InvalidPredicateMatcher::DEFAULT_CONFIGURATION
3623
+ # uninitialized constant RuboCop::Cop::RSpec::InvalidPredicateMatcher::DEFAULT_PATTERN_RE
3624
+ # uninitialized constant RuboCop::Cop::RSpec::InvalidPredicateMatcher::LITERAL_REGEX
3625
+ # uninitialized constant RuboCop::Cop::RSpec::InvalidPredicateMatcher::RSPEC
3626
+ # Did you mean? RuboCop::RSpec
3627
+ # uninitialized constant RuboCop::Cop::RSpec::ItBehavesLike::ALL
3628
+ # uninitialized constant RuboCop::Cop::RSpec::ItBehavesLike::DEFAULT_CONFIGURATION
3629
+ # uninitialized constant RuboCop::Cop::RSpec::ItBehavesLike::DEFAULT_PATTERN_RE
3630
+ # uninitialized constant RuboCop::Cop::RSpec::ItBehavesLike::LITERAL_REGEX
3631
+ # uninitialized constant RuboCop::Cop::RSpec::ItBehavesLike::RSPEC
3632
+ # Did you mean? RuboCop::RSpec
3633
+ # uninitialized constant RuboCop::Cop::RSpec::IteratedExpectation::ALL
3634
+ # uninitialized constant RuboCop::Cop::RSpec::IteratedExpectation::DEFAULT_CONFIGURATION
3635
+ # uninitialized constant RuboCop::Cop::RSpec::IteratedExpectation::DEFAULT_PATTERN_RE
3636
+ # uninitialized constant RuboCop::Cop::RSpec::IteratedExpectation::LITERAL_REGEX
3637
+ # uninitialized constant RuboCop::Cop::RSpec::IteratedExpectation::RSPEC
3638
+ # Did you mean? RuboCop::RSpec
3639
+ # uninitialized constant RuboCop::Cop::RSpec::LeadingSubject::ALL
3640
+ # uninitialized constant RuboCop::Cop::RSpec::LeadingSubject::BYTE_ORDER_MARK
3641
+ # uninitialized constant RuboCop::Cop::RSpec::LeadingSubject::DEFAULT_CONFIGURATION
3642
+ # uninitialized constant RuboCop::Cop::RSpec::LeadingSubject::DEFAULT_PATTERN_RE
3643
+ # uninitialized constant RuboCop::Cop::RSpec::LeadingSubject::LITERAL_REGEX
3644
+ # uninitialized constant RuboCop::Cop::RSpec::LeadingSubject::RSPEC
3645
+ # Did you mean? RuboCop::RSpec
3646
+ # uninitialized constant RuboCop::Cop::RSpec::LeakyConstantDeclaration::ALL
3647
+ # uninitialized constant RuboCop::Cop::RSpec::LeakyConstantDeclaration::DEFAULT_CONFIGURATION
3648
+ # uninitialized constant RuboCop::Cop::RSpec::LeakyConstantDeclaration::DEFAULT_PATTERN_RE
3649
+ # uninitialized constant RuboCop::Cop::RSpec::LeakyConstantDeclaration::LITERAL_REGEX
3650
+ # uninitialized constant RuboCop::Cop::RSpec::LeakyConstantDeclaration::RSPEC
3651
+ # Did you mean? RuboCop::RSpec
3652
+ # uninitialized constant RuboCop::Cop::RSpec::LetBeforeExamples::ALL
3653
+ # uninitialized constant RuboCop::Cop::RSpec::LetBeforeExamples::BYTE_ORDER_MARK
3654
+ # uninitialized constant RuboCop::Cop::RSpec::LetBeforeExamples::DEFAULT_CONFIGURATION
3655
+ # uninitialized constant RuboCop::Cop::RSpec::LetBeforeExamples::DEFAULT_PATTERN_RE
3656
+ # uninitialized constant RuboCop::Cop::RSpec::LetBeforeExamples::LITERAL_REGEX
3657
+ # uninitialized constant RuboCop::Cop::RSpec::LetBeforeExamples::RSPEC
3658
+ # Did you mean? RuboCop::RSpec
3659
+ # uninitialized constant RuboCop::Cop::RSpec::LetSetup::ALL
3660
+ # uninitialized constant RuboCop::Cop::RSpec::LetSetup::DEFAULT_CONFIGURATION
3661
+ # uninitialized constant RuboCop::Cop::RSpec::LetSetup::DEFAULT_PATTERN_RE
3662
+ # uninitialized constant RuboCop::Cop::RSpec::LetSetup::LITERAL_REGEX
3663
+ # uninitialized constant RuboCop::Cop::RSpec::LetSetup::RSPEC
3664
+ # Did you mean? RuboCop::RSpec
3665
+ # uninitialized constant RuboCop::Cop::RSpec::MessageChain::ALL
3666
+ # uninitialized constant RuboCop::Cop::RSpec::MessageChain::DEFAULT_CONFIGURATION
3667
+ # uninitialized constant RuboCop::Cop::RSpec::MessageChain::DEFAULT_PATTERN_RE
3668
+ # uninitialized constant RuboCop::Cop::RSpec::MessageChain::LITERAL_REGEX
3669
+ # uninitialized constant RuboCop::Cop::RSpec::MessageChain::RSPEC
3670
+ # Did you mean? RuboCop::RSpec
3671
+ # uninitialized constant RuboCop::Cop::RSpec::MessageExpectation::ALL
3672
+ # uninitialized constant RuboCop::Cop::RSpec::MessageExpectation::DEFAULT_CONFIGURATION
3673
+ # uninitialized constant RuboCop::Cop::RSpec::MessageExpectation::DEFAULT_PATTERN_RE
3674
+ # uninitialized constant RuboCop::Cop::RSpec::MessageExpectation::LITERAL_REGEX
3675
+ # uninitialized constant RuboCop::Cop::RSpec::MessageExpectation::RSPEC
3676
+ # Did you mean? RuboCop::RSpec
3677
+ # uninitialized constant RuboCop::Cop::RSpec::MessageSpies::ALL
3678
+ # uninitialized constant RuboCop::Cop::RSpec::MessageSpies::DEFAULT_CONFIGURATION
3679
+ # uninitialized constant RuboCop::Cop::RSpec::MessageSpies::DEFAULT_PATTERN_RE
3680
+ # uninitialized constant RuboCop::Cop::RSpec::MessageSpies::LITERAL_REGEX
3681
+ # uninitialized constant RuboCop::Cop::RSpec::MessageSpies::RSPEC
3682
+ # Did you mean? RuboCop::RSpec
3683
+ # uninitialized constant RuboCop::Cop::RSpec::MissingExampleGroupArgument::ALL
3684
+ # uninitialized constant RuboCop::Cop::RSpec::MissingExampleGroupArgument::DEFAULT_CONFIGURATION
3685
+ # uninitialized constant RuboCop::Cop::RSpec::MissingExampleGroupArgument::DEFAULT_PATTERN_RE
3686
+ # uninitialized constant RuboCop::Cop::RSpec::MissingExampleGroupArgument::LITERAL_REGEX
3687
+ # uninitialized constant RuboCop::Cop::RSpec::MissingExampleGroupArgument::RSPEC
3688
+ # Did you mean? RuboCop::RSpec
3689
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleDescribes::ALL
3690
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleDescribes::DEFAULT_CONFIGURATION
3691
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleDescribes::DEFAULT_PATTERN_RE
3692
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleDescribes::LITERAL_REGEX
3693
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleDescribes::RSPEC
3694
+ # Did you mean? RuboCop::RSpec
3695
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleExpectations::ALL
3696
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleExpectations::DEFAULT_CONFIGURATION
3697
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleExpectations::DEFAULT_PATTERN_RE
3698
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleExpectations::LITERAL_REGEX
3699
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleExpectations::RSPEC
3700
+ # Did you mean? RuboCop::RSpec
3701
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleSubjects::ALL
3702
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleSubjects::BYTE_ORDER_MARK
3703
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleSubjects::DEFAULT_CONFIGURATION
3704
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleSubjects::DEFAULT_PATTERN_RE
3705
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleSubjects::LITERAL_REGEX
3706
+ # uninitialized constant RuboCop::Cop::RSpec::MultipleSubjects::RSPEC
3707
+ # Did you mean? RuboCop::RSpec
3708
+ # uninitialized constant RuboCop::Cop::RSpec::NamedSubject::ALL
3709
+ # uninitialized constant RuboCop::Cop::RSpec::NamedSubject::DEFAULT_CONFIGURATION
3710
+ # uninitialized constant RuboCop::Cop::RSpec::NamedSubject::DEFAULT_PATTERN_RE
3711
+ # uninitialized constant RuboCop::Cop::RSpec::NamedSubject::LITERAL_REGEX
3712
+ # uninitialized constant RuboCop::Cop::RSpec::NamedSubject::RSPEC
3713
+ # Did you mean? RuboCop::RSpec
3714
+ # uninitialized constant RuboCop::Cop::RSpec::NestedGroups::ALL
3715
+ # uninitialized constant RuboCop::Cop::RSpec::NestedGroups::DEFAULT_CONFIGURATION
3716
+ # uninitialized constant RuboCop::Cop::RSpec::NestedGroups::DEFAULT_PATTERN_RE
3717
+ # uninitialized constant RuboCop::Cop::RSpec::NestedGroups::LITERAL_REGEX
3718
+ # uninitialized constant RuboCop::Cop::RSpec::NestedGroups::RSPEC
3719
+ # Did you mean? RuboCop::RSpec
3720
+ # uninitialized constant RuboCop::Cop::RSpec::NotToNot::ALL
3721
+ # uninitialized constant RuboCop::Cop::RSpec::NotToNot::DEFAULT_CONFIGURATION
3722
+ # uninitialized constant RuboCop::Cop::RSpec::NotToNot::DEFAULT_PATTERN_RE
3723
+ # uninitialized constant RuboCop::Cop::RSpec::NotToNot::LITERAL_REGEX
3724
+ # uninitialized constant RuboCop::Cop::RSpec::NotToNot::RSPEC
3725
+ # Did you mean? RuboCop::RSpec
3726
+ # uninitialized constant RuboCop::Cop::RSpec::OverwritingSetup::ALL
3727
+ # uninitialized constant RuboCop::Cop::RSpec::OverwritingSetup::DEFAULT_CONFIGURATION
3728
+ # uninitialized constant RuboCop::Cop::RSpec::OverwritingSetup::DEFAULT_PATTERN_RE
3729
+ # uninitialized constant RuboCop::Cop::RSpec::OverwritingSetup::LITERAL_REGEX
3730
+ # uninitialized constant RuboCop::Cop::RSpec::OverwritingSetup::RSPEC
3731
+ # Did you mean? RuboCop::RSpec
3732
+ # uninitialized constant RuboCop::Cop::RSpec::Pending::ALL
3733
+ # uninitialized constant RuboCop::Cop::RSpec::Pending::DEFAULT_CONFIGURATION
3734
+ # uninitialized constant RuboCop::Cop::RSpec::Pending::DEFAULT_PATTERN_RE
3735
+ # uninitialized constant RuboCop::Cop::RSpec::Pending::LITERAL_REGEX
3736
+ # uninitialized constant RuboCop::Cop::RSpec::Pending::RSPEC
3737
+ # Did you mean? RuboCop::RSpec
3738
+ # uninitialized constant RuboCop::Cop::RSpec::ReceiveCounts::ALL
3739
+ # uninitialized constant RuboCop::Cop::RSpec::ReceiveCounts::DEFAULT_CONFIGURATION
3740
+ # uninitialized constant RuboCop::Cop::RSpec::ReceiveCounts::DEFAULT_PATTERN_RE
3741
+ # uninitialized constant RuboCop::Cop::RSpec::ReceiveCounts::LITERAL_REGEX
3742
+ # uninitialized constant RuboCop::Cop::RSpec::ReceiveCounts::RSPEC
3743
+ # Did you mean? RuboCop::RSpec
3744
+ # uninitialized constant RuboCop::Cop::RSpec::ReceiveNever::ALL
3745
+ # uninitialized constant RuboCop::Cop::RSpec::ReceiveNever::DEFAULT_CONFIGURATION
3746
+ # uninitialized constant RuboCop::Cop::RSpec::ReceiveNever::DEFAULT_PATTERN_RE
3747
+ # uninitialized constant RuboCop::Cop::RSpec::ReceiveNever::LITERAL_REGEX
3748
+ # uninitialized constant RuboCop::Cop::RSpec::ReceiveNever::RSPEC
3749
+ # Did you mean? RuboCop::RSpec
3750
+ # uninitialized constant RuboCop::Cop::RSpec::RepeatedDescription::ALL
3751
+ # uninitialized constant RuboCop::Cop::RSpec::RepeatedDescription::DEFAULT_CONFIGURATION
3752
+ # uninitialized constant RuboCop::Cop::RSpec::RepeatedDescription::DEFAULT_PATTERN_RE
3753
+ # uninitialized constant RuboCop::Cop::RSpec::RepeatedDescription::LITERAL_REGEX
3754
+ # uninitialized constant RuboCop::Cop::RSpec::RepeatedDescription::RSPEC
3755
+ # Did you mean? RuboCop::RSpec
3756
+ # uninitialized constant RuboCop::Cop::RSpec::RepeatedExample::ALL
3757
+ # uninitialized constant RuboCop::Cop::RSpec::RepeatedExample::DEFAULT_CONFIGURATION
3758
+ # uninitialized constant RuboCop::Cop::RSpec::RepeatedExample::DEFAULT_PATTERN_RE
3759
+ # uninitialized constant RuboCop::Cop::RSpec::RepeatedExample::LITERAL_REGEX
3760
+ # uninitialized constant RuboCop::Cop::RSpec::RepeatedExample::RSPEC
3761
+ # Did you mean? RuboCop::RSpec
3762
+ # uninitialized constant RuboCop::Cop::RSpec::ReturnFromStub::ALL
3763
+ # uninitialized constant RuboCop::Cop::RSpec::ReturnFromStub::DEFAULT_CONFIGURATION
3764
+ # uninitialized constant RuboCop::Cop::RSpec::ReturnFromStub::DEFAULT_PATTERN_RE
3765
+ # uninitialized constant RuboCop::Cop::RSpec::ReturnFromStub::LITERAL_REGEX
3766
+ # uninitialized constant RuboCop::Cop::RSpec::ReturnFromStub::RSPEC
3767
+ # Did you mean? RuboCop::RSpec
3768
+ # uninitialized constant RuboCop::Cop::RSpec::ScatteredLet::ALL
3769
+ # uninitialized constant RuboCop::Cop::RSpec::ScatteredLet::DEFAULT_CONFIGURATION
3770
+ # uninitialized constant RuboCop::Cop::RSpec::ScatteredLet::DEFAULT_PATTERN_RE
3771
+ # uninitialized constant RuboCop::Cop::RSpec::ScatteredLet::LITERAL_REGEX
3772
+ # uninitialized constant RuboCop::Cop::RSpec::ScatteredLet::RSPEC
3773
+ # Did you mean? RuboCop::RSpec
3774
+ # uninitialized constant RuboCop::Cop::RSpec::ScatteredSetup::ALL
3775
+ # uninitialized constant RuboCop::Cop::RSpec::ScatteredSetup::DEFAULT_CONFIGURATION
3776
+ # uninitialized constant RuboCop::Cop::RSpec::ScatteredSetup::DEFAULT_PATTERN_RE
3777
+ # uninitialized constant RuboCop::Cop::RSpec::ScatteredSetup::LITERAL_REGEX
3778
+ # uninitialized constant RuboCop::Cop::RSpec::ScatteredSetup::RSPEC
3779
+ # Did you mean? RuboCop::RSpec
3780
+ # uninitialized constant RuboCop::Cop::RSpec::SharedContext::ALL
3781
+ # uninitialized constant RuboCop::Cop::RSpec::SharedContext::DEFAULT_CONFIGURATION
3782
+ # uninitialized constant RuboCop::Cop::RSpec::SharedContext::DEFAULT_PATTERN_RE
3783
+ # uninitialized constant RuboCop::Cop::RSpec::SharedContext::LITERAL_REGEX
3784
+ # uninitialized constant RuboCop::Cop::RSpec::SharedContext::RSPEC
3785
+ # Did you mean? RuboCop::RSpec
3786
+ # uninitialized constant RuboCop::Cop::RSpec::SingleArgumentMessageChain::ALL
3787
+ # uninitialized constant RuboCop::Cop::RSpec::SingleArgumentMessageChain::DEFAULT_CONFIGURATION
3788
+ # uninitialized constant RuboCop::Cop::RSpec::SingleArgumentMessageChain::DEFAULT_PATTERN_RE
3789
+ # uninitialized constant RuboCop::Cop::RSpec::SingleArgumentMessageChain::LITERAL_REGEX
3790
+ # uninitialized constant RuboCop::Cop::RSpec::SingleArgumentMessageChain::RSPEC
3791
+ # Did you mean? RuboCop::RSpec
3792
+ # uninitialized constant RuboCop::Cop::RSpec::SubjectStub::ALL
3793
+ # uninitialized constant RuboCop::Cop::RSpec::SubjectStub::DEFAULT_CONFIGURATION
3794
+ # uninitialized constant RuboCop::Cop::RSpec::SubjectStub::DEFAULT_PATTERN_RE
3795
+ # uninitialized constant RuboCop::Cop::RSpec::SubjectStub::LITERAL_REGEX
3796
+ # uninitialized constant RuboCop::Cop::RSpec::SubjectStub::RSPEC
3797
+ # Did you mean? RuboCop::RSpec
3798
+ # uninitialized constant RuboCop::Cop::RSpec::UnspecifiedException::ALL
3799
+ # uninitialized constant RuboCop::Cop::RSpec::UnspecifiedException::DEFAULT_CONFIGURATION
3800
+ # uninitialized constant RuboCop::Cop::RSpec::UnspecifiedException::DEFAULT_PATTERN_RE
3801
+ # uninitialized constant RuboCop::Cop::RSpec::UnspecifiedException::LITERAL_REGEX
3802
+ # uninitialized constant RuboCop::Cop::RSpec::UnspecifiedException::RSPEC
3803
+ # Did you mean? RuboCop::RSpec
3804
+ # uninitialized constant RuboCop::Cop::RSpec::VerifiedDoubles::ALL
3805
+ # uninitialized constant RuboCop::Cop::RSpec::VerifiedDoubles::DEFAULT_CONFIGURATION
3806
+ # uninitialized constant RuboCop::Cop::RSpec::VerifiedDoubles::DEFAULT_PATTERN_RE
3807
+ # uninitialized constant RuboCop::Cop::RSpec::VerifiedDoubles::LITERAL_REGEX
3808
+ # uninitialized constant RuboCop::Cop::RSpec::VerifiedDoubles::RSPEC
3809
+ # Did you mean? RuboCop::RSpec
3810
+ # uninitialized constant RuboCop::Cop::RSpec::VoidExpect::ALL
3811
+ # uninitialized constant RuboCop::Cop::RSpec::VoidExpect::DEFAULT_CONFIGURATION
3812
+ # uninitialized constant RuboCop::Cop::RSpec::VoidExpect::DEFAULT_PATTERN_RE
3813
+ # uninitialized constant RuboCop::Cop::RSpec::VoidExpect::LITERAL_REGEX
3814
+ # uninitialized constant RuboCop::Cop::RSpec::VoidExpect::RSPEC
3815
+ # Did you mean? RuboCop::RSpec
3816
+ # uninitialized constant RuboCop::Cop::RSpec::Yield::ALL
3817
+ # uninitialized constant RuboCop::Cop::RSpec::Yield::BYTE_ORDER_MARK
3818
+ # uninitialized constant RuboCop::Cop::RSpec::Yield::DEFAULT_CONFIGURATION
3819
+ # uninitialized constant RuboCop::Cop::RSpec::Yield::DEFAULT_PATTERN_RE
3820
+ # uninitialized constant RuboCop::Cop::RSpec::Yield::LITERAL_REGEX
3821
+ # uninitialized constant RuboCop::Cop::RSpec::Yield::RSPEC
3822
+ # Did you mean? RuboCop::RSpec
3823
+ # uninitialized constant RuboCop::Cop::Security::Eval::LITERAL_REGEX
3824
+ # uninitialized constant RuboCop::Cop::Security::JSONLoad::LITERAL_REGEX
3825
+ # uninitialized constant RuboCop::Cop::Security::MarshalLoad::LITERAL_REGEX
3826
+ # uninitialized constant RuboCop::Cop::Security::Open::LITERAL_REGEX
3827
+ # uninitialized constant RuboCop::Cop::Security::YAMLLoad::LITERAL_REGEX
3828
+ # uninitialized constant RuboCop::Cop::SpaceBeforePunctuation::BYTE_ORDER_MARK
3829
+ # uninitialized constant RuboCop::Cop::Style::AccessModifierDeclarations::LITERAL_REGEX
3830
+ # uninitialized constant RuboCop::Cop::Style::Alias::LITERAL_REGEX
3831
+ # uninitialized constant RuboCop::Cop::Style::AndOr::BYTE_ORDER_MARK
3832
+ # uninitialized constant RuboCop::Cop::Style::AndOr::LITERAL_REGEX
3833
+ # uninitialized constant RuboCop::Cop::Style::ArrayJoin::LITERAL_REGEX
3834
+ # uninitialized constant RuboCop::Cop::Style::AsciiComments::BYTE_ORDER_MARK
3835
+ # uninitialized constant RuboCop::Cop::Style::AsciiComments::LITERAL_REGEX
3836
+ # uninitialized constant RuboCop::Cop::Style::Attr::BYTE_ORDER_MARK
3837
+ # uninitialized constant RuboCop::Cop::Style::Attr::LITERAL_REGEX
3838
+ # uninitialized constant RuboCop::Cop::Style::AutoResourceCleanup::LITERAL_REGEX
3839
+ # uninitialized constant RuboCop::Cop::Style::BarePercentLiterals::LITERAL_REGEX
3840
+ # uninitialized constant RuboCop::Cop::Style::BeginBlock::LITERAL_REGEX
3841
+ # uninitialized constant RuboCop::Cop::Style::BlockComments::BYTE_ORDER_MARK
3842
+ # uninitialized constant RuboCop::Cop::Style::BlockComments::LITERAL_REGEX
3843
+ # uninitialized constant RuboCop::Cop::Style::BlockDelimiters::LITERAL_REGEX
3844
+ # uninitialized constant RuboCop::Cop::Style::BracesAroundHashParameters::BYTE_ORDER_MARK
3845
+ # uninitialized constant RuboCop::Cop::Style::BracesAroundHashParameters::LITERAL_REGEX
3846
+ # uninitialized constant RuboCop::Cop::Style::CaseEquality::LITERAL_REGEX
3847
+ # uninitialized constant RuboCop::Cop::Style::CharacterLiteral::LITERAL_REGEX
3848
+ # uninitialized constant RuboCop::Cop::Style::ClassAndModuleChildren::BYTE_ORDER_MARK
3849
+ # uninitialized constant RuboCop::Cop::Style::ClassAndModuleChildren::LITERAL_REGEX
3850
+ # uninitialized constant RuboCop::Cop::Style::ClassCheck::LITERAL_REGEX
3851
+ # uninitialized constant RuboCop::Cop::Style::ClassMethods::LITERAL_REGEX
3852
+ # uninitialized constant RuboCop::Cop::Style::ClassVars::LITERAL_REGEX
3853
+ # uninitialized constant RuboCop::Cop::Style::CollectionMethods::LITERAL_REGEX
3854
+ # uninitialized constant RuboCop::Cop::Style::ColonMethodCall::LITERAL_REGEX
3855
+ # uninitialized constant RuboCop::Cop::Style::ColonMethodDefinition::LITERAL_REGEX
3856
+ # uninitialized constant RuboCop::Cop::Style::CommandLiteral::LITERAL_REGEX
3857
+ # uninitialized constant RuboCop::Cop::Style::CommentAnnotation::BYTE_ORDER_MARK
3858
+ # uninitialized constant RuboCop::Cop::Style::CommentAnnotation::LITERAL_REGEX
3859
+ # uninitialized constant RuboCop::Cop::Style::CommentedKeyword::LITERAL_REGEX
3860
+ # uninitialized constant RuboCop::Cop::Style::ConditionalAssignment::ALIGN_WITH
3861
+ # uninitialized constant RuboCop::Cop::Style::ConditionalAssignment::END_ALIGNMENT
3862
+ # uninitialized constant RuboCop::Cop::Style::ConditionalAssignment::EQUAL
3863
+ # uninitialized constant RuboCop::Cop::Style::ConditionalAssignment::KEYWORD
3864
+ # uninitialized constant RuboCop::Cop::Style::ConditionalAssignment::LITERAL_REGEX
3865
+ # uninitialized constant RuboCop::Cop::Style::ConstantVisibility::LITERAL_REGEX
3866
+ # uninitialized constant RuboCop::Cop::Style::Copyright::BYTE_ORDER_MARK
3867
+ # uninitialized constant RuboCop::Cop::Style::Copyright::LITERAL_REGEX
3868
+ # uninitialized constant RuboCop::Cop::Style::DateTime::LITERAL_REGEX
3869
+ # uninitialized constant RuboCop::Cop::Style::DefWithParentheses::LITERAL_REGEX
3870
+ # uninitialized constant RuboCop::Cop::Style::Dir::LITERAL_REGEX
3871
+ # uninitialized constant RuboCop::Cop::Style::Documentation::LITERAL_REGEX
3872
+ # uninitialized constant RuboCop::Cop::Style::DocumentationMethod::LITERAL_REGEX
3873
+ # uninitialized constant RuboCop::Cop::Style::DocumentationMethod::NON_PUBLIC_MODIFIERS
3874
+ # uninitialized constant RuboCop::Cop::Style::DoubleCopDisableDirective::LITERAL_REGEX
3875
+ # uninitialized constant RuboCop::Cop::Style::DoubleNegation::LITERAL_REGEX
3876
+ # uninitialized constant RuboCop::Cop::Style::EachForSimpleLoop::LITERAL_REGEX
3877
+ # uninitialized constant RuboCop::Cop::Style::EachWithObject::BYTE_ORDER_MARK
3878
+ # uninitialized constant RuboCop::Cop::Style::EachWithObject::LITERAL_REGEX
3879
+ # uninitialized constant RuboCop::Cop::Style::EmptyBlockParameter::BYTE_ORDER_MARK
3880
+ # uninitialized constant RuboCop::Cop::Style::EmptyBlockParameter::LITERAL_REGEX
3881
+ # uninitialized constant RuboCop::Cop::Style::EmptyCaseCondition::BYTE_ORDER_MARK
3882
+ # uninitialized constant RuboCop::Cop::Style::EmptyCaseCondition::LITERAL_REGEX
3883
+ # uninitialized constant RuboCop::Cop::Style::EmptyElse::BYTE_ORDER_MARK
3884
+ # uninitialized constant RuboCop::Cop::Style::EmptyElse::LITERAL_REGEX
3885
+ # uninitialized constant RuboCop::Cop::Style::EmptyLambdaParameter::BYTE_ORDER_MARK
3886
+ # uninitialized constant RuboCop::Cop::Style::EmptyLambdaParameter::LITERAL_REGEX
3887
+ # uninitialized constant RuboCop::Cop::Style::EmptyLiteral::BYTE_ORDER_MARK
3888
+ # uninitialized constant RuboCop::Cop::Style::EmptyLiteral::FROZEN_STRING_LITERAL
3889
+ # Did you mean? RuboCop::Cop::FrozenStringLiteral
3890
+ # RuboCop::Cop::Style::EmptyLiteral::FROZEN_STRING_LITERAL_TYPES
3891
+ # uninitialized constant RuboCop::Cop::Style::EmptyLiteral::FROZEN_STRING_LITERAL_ENABLED
3892
+ # Did you mean? RuboCop::Cop::Style::EmptyLiteral::FROZEN_STRING_LITERAL_TYPES
3893
+ # uninitialized constant RuboCop::Cop::Style::EmptyLiteral::FROZEN_STRING_LITERAL_TYPES
3894
+ # Did you mean? RuboCop::Cop::Style::EmptyLiteral::FROZEN_STRING_LITERAL_ENABLED
3895
+ # uninitialized constant RuboCop::Cop::Style::EmptyLiteral::LITERAL_REGEX
3896
+ # uninitialized constant RuboCop::Cop::Style::EmptyMethod::LITERAL_REGEX
3897
+ # uninitialized constant RuboCop::Cop::Style::Encoding::BYTE_ORDER_MARK
3898
+ # uninitialized constant RuboCop::Cop::Style::Encoding::LITERAL_REGEX
3899
+ # uninitialized constant RuboCop::Cop::Style::EndBlock::LITERAL_REGEX
3900
+ # uninitialized constant RuboCop::Cop::Style::EvalWithLocation::LITERAL_REGEX
3901
+ # uninitialized constant RuboCop::Cop::Style::EvenOdd::LITERAL_REGEX
3902
+ # uninitialized constant RuboCop::Cop::Style::ExpandPathArguments::BYTE_ORDER_MARK
3903
+ # uninitialized constant RuboCop::Cop::Style::ExpandPathArguments::LITERAL_REGEX
3904
+ # uninitialized constant RuboCop::Cop::Style::For::BYTE_ORDER_MARK
3905
+ # uninitialized constant RuboCop::Cop::Style::For::LITERAL_REGEX
3906
+ # uninitialized constant RuboCop::Cop::Style::FormatString::LITERAL_REGEX
3907
+ # uninitialized constant RuboCop::Cop::Style::FormatStringToken::LITERAL_REGEX
3908
+ # uninitialized constant RuboCop::Cop::Style::FrozenStringLiteralComment::BYTE_ORDER_MARK
3909
+ # uninitialized constant RuboCop::Cop::Style::FrozenStringLiteralComment::FROZEN_STRING_LITERAL
3910
+ # Did you mean? RuboCop::Cop::FrozenStringLiteral
3911
+ # RuboCop::Cop::Style::FrozenStringLiteralComment::FROZEN_STRING_LITERAL_TYPES
3912
+ # uninitialized constant RuboCop::Cop::Style::FrozenStringLiteralComment::FROZEN_STRING_LITERAL_ENABLED
3913
+ # Did you mean? RuboCop::Cop::Style::FrozenStringLiteralComment::FROZEN_STRING_LITERAL_TYPES
3914
+ # uninitialized constant RuboCop::Cop::Style::FrozenStringLiteralComment::FROZEN_STRING_LITERAL_TYPES
3915
+ # Did you mean? RuboCop::Cop::Style::FrozenStringLiteralComment::FROZEN_STRING_LITERAL_ENABLED
3916
+ # uninitialized constant RuboCop::Cop::Style::FrozenStringLiteralComment::LITERAL_REGEX
3917
+ # uninitialized constant RuboCop::Cop::Style::GlobalVars::LITERAL_REGEX
3918
+ # uninitialized constant RuboCop::Cop::Style::GuardClause::LITERAL_REGEX
3919
+ # uninitialized constant RuboCop::Cop::Style::HashSyntax::BYTE_ORDER_MARK
3920
+ # uninitialized constant RuboCop::Cop::Style::HashSyntax::LITERAL_REGEX
3921
+ # uninitialized constant RuboCop::Cop::Style::IdenticalConditionalBranches::LITERAL_REGEX
3922
+ # uninitialized constant RuboCop::Cop::Style::IfInsideElse::LITERAL_REGEX
3923
+ # uninitialized constant RuboCop::Cop::Style::IfUnlessModifier::LITERAL_REGEX
3924
+ # uninitialized constant RuboCop::Cop::Style::IfUnlessModifierOfIfUnless::LITERAL_REGEX
3925
+ # uninitialized constant RuboCop::Cop::Style::IfWithSemicolon::LITERAL_REGEX
3926
+ # uninitialized constant RuboCop::Cop::Style::ImplicitRuntimeError::LITERAL_REGEX
3927
+ # uninitialized constant RuboCop::Cop::Style::InfiniteLoop::LITERAL_REGEX
3928
+ # uninitialized constant RuboCop::Cop::Style::InlineComment::LITERAL_REGEX
3929
+ # uninitialized constant RuboCop::Cop::Style::InverseMethods::BYTE_ORDER_MARK
3930
+ # uninitialized constant RuboCop::Cop::Style::InverseMethods::LITERAL_REGEX
3931
+ # uninitialized constant RuboCop::Cop::Style::IpAddresses::LITERAL_REGEX
3932
+ # uninitialized constant RuboCop::Cop::Style::Lambda::LITERAL_REGEX
3933
+ # uninitialized constant RuboCop::Cop::Style::LineEndConcatenation::BYTE_ORDER_MARK
3934
+ # uninitialized constant RuboCop::Cop::Style::LineEndConcatenation::LITERAL_REGEX
3935
+ # uninitialized constant RuboCop::Cop::Style::MethodCallWithArgsParentheses::LITERAL_REGEX
3936
+ # uninitialized constant RuboCop::Cop::Style::MethodCallWithoutArgsParentheses::LITERAL_REGEX
3937
+ # uninitialized constant RuboCop::Cop::Style::MethodCalledOnDoEndBlock::BYTE_ORDER_MARK
3938
+ # uninitialized constant RuboCop::Cop::Style::MethodCalledOnDoEndBlock::LITERAL_REGEX
3939
+ # uninitialized constant RuboCop::Cop::Style::MethodDefParentheses::BYTE_ORDER_MARK
3940
+ # uninitialized constant RuboCop::Cop::Style::MethodDefParentheses::LITERAL_REGEX
3941
+ # uninitialized constant RuboCop::Cop::Style::MethodMissingSuper::LITERAL_REGEX
3942
+ # uninitialized constant RuboCop::Cop::Style::MinMax::LITERAL_REGEX
3943
+ # uninitialized constant RuboCop::Cop::Style::MissingElse::LITERAL_REGEX
3944
+ # uninitialized constant RuboCop::Cop::Style::MissingRespondToMissing::LITERAL_REGEX
3945
+ # uninitialized constant RuboCop::Cop::Style::MixinGrouping::LITERAL_REGEX
3946
+ # uninitialized constant RuboCop::Cop::Style::MixinUsage::LITERAL_REGEX
3947
+ # uninitialized constant RuboCop::Cop::Style::ModuleFunction::LITERAL_REGEX
3948
+ # uninitialized constant RuboCop::Cop::Style::MultilineBlockChain::BYTE_ORDER_MARK
3949
+ # uninitialized constant RuboCop::Cop::Style::MultilineBlockChain::LITERAL_REGEX
3950
+ # uninitialized constant RuboCop::Cop::Style::MultilineIfModifier::LITERAL_REGEX
3951
+ # uninitialized constant RuboCop::Cop::Style::MultilineIfModifier::SPACE
3952
+ # uninitialized constant RuboCop::Cop::Style::MultilineIfThen::BYTE_ORDER_MARK
3953
+ # uninitialized constant RuboCop::Cop::Style::MultilineIfThen::LITERAL_REGEX
3954
+ # uninitialized constant RuboCop::Cop::Style::MultilineMemoization::LITERAL_REGEX
3955
+ # uninitialized constant RuboCop::Cop::Style::MultilineMethodSignature::LITERAL_REGEX
3956
+ # uninitialized constant RuboCop::Cop::Style::MultilineTernaryOperator::LITERAL_REGEX
3957
+ # uninitialized constant RuboCop::Cop::Style::MultilineWhenThen::BYTE_ORDER_MARK
3958
+ # uninitialized constant RuboCop::Cop::Style::MultilineWhenThen::LITERAL_REGEX
3959
+ # uninitialized constant RuboCop::Cop::Style::MultipleComparison::LITERAL_REGEX
3960
+ # uninitialized constant RuboCop::Cop::Style::MutableConstant::FROZEN_STRING_LITERAL
3961
+ # Did you mean? RuboCop::Cop::FrozenStringLiteral
3962
+ # RuboCop::Cop::Style::MutableConstant::FROZEN_STRING_LITERAL_TYPES
3963
+ # uninitialized constant RuboCop::Cop::Style::MutableConstant::FROZEN_STRING_LITERAL_ENABLED
3964
+ # Did you mean? RuboCop::Cop::Style::MutableConstant::FROZEN_STRING_LITERAL_TYPES
3965
+ # uninitialized constant RuboCop::Cop::Style::MutableConstant::FROZEN_STRING_LITERAL_TYPES
3966
+ # Did you mean? RuboCop::Cop::Style::MutableConstant::FROZEN_STRING_LITERAL_ENABLED
3967
+ # uninitialized constant RuboCop::Cop::Style::MutableConstant::LITERAL_REGEX
3968
+ # uninitialized constant RuboCop::Cop::Style::NestedModifier::BYTE_ORDER_MARK
3969
+ # uninitialized constant RuboCop::Cop::Style::NestedModifier::LITERAL_REGEX
3970
+ # uninitialized constant RuboCop::Cop::Style::NestedParenthesizedCalls::BYTE_ORDER_MARK
3971
+ # uninitialized constant RuboCop::Cop::Style::NestedParenthesizedCalls::LITERAL_REGEX
3972
+ # uninitialized constant RuboCop::Cop::Style::NestedTernaryOperator::LITERAL_REGEX
3973
+ # uninitialized constant RuboCop::Cop::Style::Next::BYTE_ORDER_MARK
3974
+ # uninitialized constant RuboCop::Cop::Style::Next::LITERAL_REGEX
3975
+ # uninitialized constant RuboCop::Cop::Style::NilComparison::LITERAL_REGEX
3976
+ # uninitialized constant RuboCop::Cop::Style::Not::BYTE_ORDER_MARK
3977
+ # uninitialized constant RuboCop::Cop::Style::Not::LITERAL_REGEX
3978
+ # uninitialized constant RuboCop::Cop::Style::NumericLiteralPrefix::LITERAL_REGEX
3979
+ # uninitialized constant RuboCop::Cop::Style::NumericLiterals::LITERAL_REGEX
3980
+ # uninitialized constant RuboCop::Cop::Style::NumericPredicate::LITERAL_REGEX
3981
+ # uninitialized constant RuboCop::Cop::Style::OneLineConditional::LITERAL_REGEX
3982
+ # uninitialized constant RuboCop::Cop::Style::OptionHash::LITERAL_REGEX
3983
+ # uninitialized constant RuboCop::Cop::Style::OptionalArguments::LITERAL_REGEX
3984
+ # uninitialized constant RuboCop::Cop::Style::OrAssignment::LITERAL_REGEX
3985
+ # uninitialized constant RuboCop::Cop::Style::ParallelAssignment::LITERAL_REGEX
3986
+ # uninitialized constant RuboCop::Cop::Style::PercentQLiterals::BYTE_ORDER_MARK
3987
+ # uninitialized constant RuboCop::Cop::Style::PercentQLiterals::LITERAL_REGEX
3988
+ # uninitialized constant RuboCop::Cop::Style::PerlBackrefs::LITERAL_REGEX
3989
+ # uninitialized constant RuboCop::Cop::Style::PreferredHashMethods::LITERAL_REGEX
3990
+ # uninitialized constant RuboCop::Cop::Style::Proc::LITERAL_REGEX
3991
+ # uninitialized constant RuboCop::Cop::Style::RaiseArgs::LITERAL_REGEX
3992
+ # uninitialized constant RuboCop::Cop::Style::RandomWithOffset::LITERAL_REGEX
3993
+ # uninitialized constant RuboCop::Cop::Style::RedundantBegin::LITERAL_REGEX
3994
+ # uninitialized constant RuboCop::Cop::Style::RedundantConditional::LITERAL_REGEX
3995
+ # uninitialized constant RuboCop::Cop::Style::RedundantConditional::SPACE
3996
+ # uninitialized constant RuboCop::Cop::Style::RedundantException::LITERAL_REGEX
3997
+ # uninitialized constant RuboCop::Cop::Style::RedundantFreeze::FROZEN_STRING_LITERAL
3998
+ # Did you mean? RuboCop::Cop::FrozenStringLiteral
3999
+ # RuboCop::Cop::Style::RedundantFreeze::FROZEN_STRING_LITERAL_TYPES
4000
+ # uninitialized constant RuboCop::Cop::Style::RedundantFreeze::FROZEN_STRING_LITERAL_ENABLED
4001
+ # Did you mean? RuboCop::Cop::Style::RedundantFreeze::FROZEN_STRING_LITERAL_TYPES
4002
+ # uninitialized constant RuboCop::Cop::Style::RedundantFreeze::FROZEN_STRING_LITERAL_TYPES
4003
+ # Did you mean? RuboCop::Cop::Style::RedundantFreeze::FROZEN_STRING_LITERAL_ENABLED
4004
+ # uninitialized constant RuboCop::Cop::Style::RedundantFreeze::LITERAL_REGEX
4005
+ # uninitialized constant RuboCop::Cop::Style::RedundantReturn::BYTE_ORDER_MARK
4006
+ # uninitialized constant RuboCop::Cop::Style::RedundantReturn::LITERAL_REGEX
4007
+ # uninitialized constant RuboCop::Cop::Style::RedundantSelf::LITERAL_REGEX
4008
+ # uninitialized constant RuboCop::Cop::Style::RedundantSortBy::BYTE_ORDER_MARK
4009
+ # uninitialized constant RuboCop::Cop::Style::RedundantSortBy::LITERAL_REGEX
4010
+ # uninitialized constant RuboCop::Cop::Style::RegexpLiteral::BYTE_ORDER_MARK
4011
+ # uninitialized constant RuboCop::Cop::Style::RegexpLiteral::LITERAL_REGEX
4012
+ # uninitialized constant RuboCop::Cop::Style::RescueModifier::LITERAL_REGEX
4013
+ # uninitialized constant RuboCop::Cop::Style::RescueModifier::SPACE
4014
+ # uninitialized constant RuboCop::Cop::Style::RescueStandardError::BYTE_ORDER_MARK
4015
+ # uninitialized constant RuboCop::Cop::Style::RescueStandardError::LITERAL_REGEX
4016
+ # uninitialized constant RuboCop::Cop::Style::ReturnNil::LITERAL_REGEX
4017
+ # uninitialized constant RuboCop::Cop::Style::SafeNavigation::BYTE_ORDER_MARK
4018
+ # uninitialized constant RuboCop::Cop::Style::SafeNavigation::LITERAL_REGEX
4019
+ # uninitialized constant RuboCop::Cop::Style::Sample::LITERAL_REGEX
4020
+ # uninitialized constant RuboCop::Cop::Style::SelfAssignment::LITERAL_REGEX
4021
+ # uninitialized constant RuboCop::Cop::Style::Semicolon::BYTE_ORDER_MARK
4022
+ # uninitialized constant RuboCop::Cop::Style::Semicolon::LITERAL_REGEX
4023
+ # uninitialized constant RuboCop::Cop::Style::Send::LITERAL_REGEX
4024
+ # uninitialized constant RuboCop::Cop::Style::SignalException::LITERAL_REGEX
4025
+ # uninitialized constant RuboCop::Cop::Style::SingleLineBlockParams::LITERAL_REGEX
4026
+ # uninitialized constant RuboCop::Cop::Style::SingleLineMethods::LITERAL_REGEX
4027
+ # uninitialized constant RuboCop::Cop::Style::SingleLineMethods::SPACE
4028
+ # uninitialized constant RuboCop::Cop::Style::SpecialGlobalVars::LITERAL_REGEX
4029
+ # uninitialized constant RuboCop::Cop::Style::StabbyLambdaParentheses::LITERAL_REGEX
4030
+ # uninitialized constant RuboCop::Cop::Style::StderrPuts::BYTE_ORDER_MARK
4031
+ # uninitialized constant RuboCop::Cop::Style::StderrPuts::LITERAL_REGEX
4032
+ # uninitialized constant RuboCop::Cop::Style::StringHashKeys::LITERAL_REGEX
4033
+ # uninitialized constant RuboCop::Cop::Style::StringLiterals::LITERAL_REGEX
4034
+ # uninitialized constant RuboCop::Cop::Style::StringMethods::LITERAL_REGEX
4035
+ # uninitialized constant RuboCop::Cop::Style::Strip::BYTE_ORDER_MARK
4036
+ # uninitialized constant RuboCop::Cop::Style::Strip::LITERAL_REGEX
4037
+ # uninitialized constant RuboCop::Cop::Style::StructInheritance::LITERAL_REGEX
4038
+ # uninitialized constant RuboCop::Cop::Style::SymbolArray::LITERAL_REGEX
4039
+ # uninitialized constant RuboCop::Cop::Style::SymbolLiteral::LITERAL_REGEX
4040
+ # uninitialized constant RuboCop::Cop::Style::SymbolProc::BYTE_ORDER_MARK
4041
+ # uninitialized constant RuboCop::Cop::Style::SymbolProc::LITERAL_REGEX
4042
+ # uninitialized constant RuboCop::Cop::Style::TernaryParentheses::BYTE_ORDER_MARK
4043
+ # uninitialized constant RuboCop::Cop::Style::TernaryParentheses::LITERAL_REGEX
4044
+ # uninitialized constant RuboCop::Cop::Style::TernaryParentheses::NO_SPACE_COMMAND
4045
+ # Did you mean? RuboCop::Cop::Style::TernaryParentheses::SPACE_COMMAND
4046
+ # uninitialized constant RuboCop::Cop::Style::TernaryParentheses::SINGLE_SPACE_REGEXP
4047
+ # uninitialized constant RuboCop::Cop::Style::TernaryParentheses::SPACE_COMMAND
4048
+ # Did you mean? RuboCop::Cop::Style::TernaryParentheses::NO_SPACE_COMMAND
4049
+ # uninitialized constant RuboCop::Cop::Style::TrailingBodyOnClass::LITERAL_REGEX
4050
+ # uninitialized constant RuboCop::Cop::Style::TrailingBodyOnClass::SPACE
4051
+ # uninitialized constant RuboCop::Cop::Style::TrailingBodyOnMethodDefinition::LITERAL_REGEX
4052
+ # uninitialized constant RuboCop::Cop::Style::TrailingBodyOnMethodDefinition::SPACE
4053
+ # uninitialized constant RuboCop::Cop::Style::TrailingBodyOnModule::LITERAL_REGEX
4054
+ # uninitialized constant RuboCop::Cop::Style::TrailingBodyOnModule::SPACE
4055
+ # uninitialized constant RuboCop::Cop::Style::TrailingMethodEndStatement::LITERAL_REGEX
4056
+ # uninitialized constant RuboCop::Cop::Style::TrailingMethodEndStatement::SPACE
4057
+ # uninitialized constant RuboCop::Cop::Style::TrailingUnderscoreVariable::BYTE_ORDER_MARK
4058
+ # uninitialized constant RuboCop::Cop::Style::TrailingUnderscoreVariable::LITERAL_REGEX
4059
+ # uninitialized constant RuboCop::Cop::Style::TrailingUnderscoreVariable::NO_SPACE_COMMAND
4060
+ # Did you mean? RuboCop::Cop::Style::TrailingUnderscoreVariable::SPACE_COMMAND
4061
+ # uninitialized constant RuboCop::Cop::Style::TrailingUnderscoreVariable::SINGLE_SPACE_REGEXP
4062
+ # uninitialized constant RuboCop::Cop::Style::TrailingUnderscoreVariable::SPACE_COMMAND
4063
+ # Did you mean? RuboCop::Cop::Style::TrailingUnderscoreVariable::NO_SPACE_COMMAND
4064
+ # uninitialized constant RuboCop::Cop::Style::TrivialAccessors::LITERAL_REGEX
4065
+ # uninitialized constant RuboCop::Cop::Style::UnlessElse::BYTE_ORDER_MARK
4066
+ # uninitialized constant RuboCop::Cop::Style::UnlessElse::LITERAL_REGEX
4067
+ # uninitialized constant RuboCop::Cop::Style::UnneededCapitalW::BYTE_ORDER_MARK
4068
+ # uninitialized constant RuboCop::Cop::Style::UnneededCapitalW::LITERAL_REGEX
4069
+ # uninitialized constant RuboCop::Cop::Style::UnneededCondition::BYTE_ORDER_MARK
4070
+ # uninitialized constant RuboCop::Cop::Style::UnneededCondition::LITERAL_REGEX
4071
+ # uninitialized constant RuboCop::Cop::Style::UnneededInterpolation::BYTE_ORDER_MARK
4072
+ # uninitialized constant RuboCop::Cop::Style::UnneededInterpolation::LITERAL_REGEX
4073
+ # uninitialized constant RuboCop::Cop::Style::UnneededPercentQ::LITERAL_REGEX
4074
+ # uninitialized constant RuboCop::Cop::Style::UnneededSort::BYTE_ORDER_MARK
4075
+ # uninitialized constant RuboCop::Cop::Style::UnneededSort::LITERAL_REGEX
4076
+ # uninitialized constant RuboCop::Cop::Style::UnpackFirst::LITERAL_REGEX
4077
+ # uninitialized constant RuboCop::Cop::Style::VariableInterpolation::LITERAL_REGEX
4078
+ # uninitialized constant RuboCop::Cop::Style::WhenThen::LITERAL_REGEX
4079
+ # uninitialized constant RuboCop::Cop::Style::WhileUntilDo::LITERAL_REGEX
4080
+ # uninitialized constant RuboCop::Cop::Style::WhileUntilModifier::LITERAL_REGEX
4081
+ # uninitialized constant RuboCop::Cop::Style::WordArray::LITERAL_REGEX
4082
+ # uninitialized constant RuboCop::Cop::Style::YodaCondition::BYTE_ORDER_MARK
4083
+ # uninitialized constant RuboCop::Cop::Style::YodaCondition::LITERAL_REGEX
4084
+ # uninitialized constant RuboCop::Cop::Style::ZeroLengthPredicate::LITERAL_REGEX
4085
+ # uninitialized constant RuboCop::Cop::SurroundingSpace::BYTE_ORDER_MARK
4086
+ # uninitialized constant RuboCop::Cop::TrailingComma::BYTE_ORDER_MARK
4087
+ # uninitialized constant RuboCop::Cop::WorkaroundCop::LITERAL_REGEX
4088
+ # wrong constant name all
4089
+ # wrong constant name autocorrect_incompatible_with
4090
+ # wrong constant name badge
4091
+ # wrong constant name cop_name
4092
+ # wrong constant name department
4093
+ # wrong constant name inherited
4094
+ # wrong constant name lint?
4095
+ # wrong constant name match?
4096
+ # wrong constant name qualified_cop_name
4097
+ # wrong constant name registry
4098
+ # uninitialized constant RuboCop::Formatter::ClangStyleFormatter::COLOR_FOR_SEVERITY
4099
+ # uninitialized constant RuboCop::Formatter::FuubarStyleFormatter::COLOR_FOR_SEVERITY
4100
+ # uninitialized constant RuboCop::Formatter::FuubarStyleFormatter::ELLIPSES
4101
+ # uninitialized constant RuboCop::Formatter::ProgressFormatter::COLOR_FOR_SEVERITY
4102
+ # uninitialized constant RuboCop::Formatter::ProgressFormatter::ELLIPSES
4103
+ # uninitialized constant RuboCop::MagicComment::EmacsComment::TOKEN
4104
+ # Did you mean? RuboCop::Token
4105
+ # RuboCop::MagicComment::TOKEN
4106
+ # uninitialized constant RuboCop::MagicComment::VimComment::TOKEN
4107
+ # Did you mean? RuboCop::Token
4108
+ # RuboCop::MagicComment::TOKEN
4109
+ # wrong constant name <Class:Node>
4110
+ # wrong constant name children
4111
+ # wrong constant name first_column
4112
+ # wrong constant name first_lineno
4113
+ # wrong constant name last_column
4114
+ # wrong constant name last_lineno
4115
+ # wrong constant name pretty_print_children
4116
+ # wrong constant name type
4117
+ # wrong constant name <static-init>
4118
+ # wrong constant name <static-init>
4119
+ # wrong constant name of
4120
+ # wrong constant name parse
4121
+ # wrong constant name parse_file
4122
+ # wrong constant name absolute_path
4123
+ # wrong constant name base_label
4124
+ # wrong constant name disasm
4125
+ # wrong constant name disassemble
4126
+ # wrong constant name each_child
4127
+ # wrong constant name eval
4128
+ # wrong constant name first_lineno
4129
+ # wrong constant name label
4130
+ # wrong constant name path
4131
+ # wrong constant name to_a
4132
+ # wrong constant name to_binary
4133
+ # wrong constant name trace_points
4134
+ # wrong constant name compile
4135
+ # wrong constant name compile_file
4136
+ # wrong constant name compile_option
4137
+ # wrong constant name compile_option=
4138
+ # wrong constant name disasm
4139
+ # wrong constant name disassemble
4140
+ # wrong constant name load_from_binary
4141
+ # wrong constant name load_from_binary_extra_data
4142
+ # wrong constant name of
4143
+ # wrong constant name <static-init>
4144
+ # wrong constant name enabled?
4145
+ # wrong constant name pause
4146
+ # wrong constant name resume
4147
+ # wrong constant name resolve_feature_path
4148
+ # wrong constant name stat
4149
+ # wrong constant name <static-init>
4150
+ # wrong constant name bytes
4151
+ # wrong constant name ==
4152
+ # wrong constant name ===
4153
+ # wrong constant name compare_by_identity
4154
+ # wrong constant name compare_by_identity?
4155
+ # wrong constant name divide
4156
+ # wrong constant name eql?
4157
+ # wrong constant name filter!
4158
+ # wrong constant name flatten_merge
4159
+ # wrong constant name pretty_print
4160
+ # wrong constant name pretty_print_cycle
4161
+ # wrong constant name reset
4162
+ # wrong constant name <static-init>
4163
+ # wrong constant name escape
4164
+ # wrong constant name join
4165
+ # wrong constant name shellescape
4166
+ # wrong constant name shelljoin
4167
+ # wrong constant name shellsplit
4168
+ # wrong constant name shellwords
4169
+ # wrong constant name split
4170
+ # wrong constant name signm
4171
+ # wrong constant name signo
4172
+ # wrong constant name def_delegator
4173
+ # wrong constant name def_delegators
4174
+ # wrong constant name def_single_delegator
4175
+ # wrong constant name def_single_delegators
4176
+ # wrong constant name delegate
4177
+ # wrong constant name single_delegate
4178
+ # wrong constant name _dump
4179
+ # wrong constant name clone
4180
+ # wrong constant name dup
4181
+ # wrong constant name _load
4182
+ # wrong constant name clone
4183
+ # wrong constant name __init__
4184
+ # uninitialized constant Socket::APPEND
4185
+ # uninitialized constant Socket::BINARY
4186
+ # uninitialized constant Socket::CREAT
4187
+ # uninitialized constant Socket::DSYNC
4188
+ # Did you mean? Socket::SYNC
4189
+ # uninitialized constant Socket::EXCL
4190
+ # uninitialized constant Socket::FNM_CASEFOLD
4191
+ # uninitialized constant Socket::FNM_DOTMATCH
4192
+ # uninitialized constant Socket::FNM_EXTGLOB
4193
+ # uninitialized constant Socket::FNM_NOESCAPE
4194
+ # uninitialized constant Socket::FNM_PATHNAME
4195
+ # uninitialized constant Socket::FNM_SHORTNAME
4196
+ # uninitialized constant Socket::FNM_SYSCASE
4197
+ # uninitialized constant Socket::LOCK_EX
4198
+ # Did you mean? Socket::LOCK_NB
4199
+ # Socket::LOCK_UN
4200
+ # Socket::LOCK_SH
4201
+ # uninitialized constant Socket::LOCK_NB
4202
+ # Did you mean? Socket::LOCK_UN
4203
+ # Socket::LOCK_EX
4204
+ # Socket::LOCK_SH
4205
+ # uninitialized constant Socket::LOCK_SH
4206
+ # Did you mean? Socket::LOCK_NB
4207
+ # Socket::LOCK_UN
4208
+ # Socket::LOCK_EX
4209
+ # uninitialized constant Socket::LOCK_UN
4210
+ # Did you mean? Socket::LOCK_NB
4211
+ # Socket::LOCK_EX
4212
+ # Socket::LOCK_SH
4213
+ # uninitialized constant Socket::NOCTTY
4214
+ # uninitialized constant Socket::NOFOLLOW
4215
+ # uninitialized constant Socket::NONBLOCK
4216
+ # uninitialized constant Socket::NULL
4217
+ # uninitialized constant Socket::RDONLY
4218
+ # Did you mean? Socket::WRONLY
4219
+ # uninitialized constant Socket::RDWR
4220
+ # uninitialized constant Socket::SEEK_CUR
4221
+ # uninitialized constant Socket::SEEK_DATA
4222
+ # Did you mean? Socket::SEEK_SET
4223
+ # uninitialized constant Socket::SEEK_END
4224
+ # uninitialized constant Socket::SEEK_HOLE
4225
+ # uninitialized constant Socket::SEEK_SET
4226
+ # uninitialized constant Socket::SHARE_DELETE
4227
+ # uninitialized constant Socket::SYNC
4228
+ # Did you mean? Socket::DSYNC
4229
+ # uninitialized constant Socket::TRUNC
4230
+ # Did you mean? TRUE
4231
+ # uninitialized constant Socket::WRONLY
4232
+ # Did you mean? Socket::RDONLY
4233
+ # wrong constant name <Class:ConstantEntry>
4234
+ # wrong constant name all_module_aliases
4235
+ # wrong constant name all_module_names
4236
+ # wrong constant name all_named_modules
4237
+ # wrong constant name class_by_name
4238
+ # wrong constant name name_by_class
4239
+ # uninitialized constant Sorbet::Private::ConstantLookupCache::ConstantEntry::Elem
4240
+ # wrong constant name aliases
4241
+ # wrong constant name aliases=
4242
+ # wrong constant name const
4243
+ # wrong constant name const=
4244
+ # wrong constant name const_name
4245
+ # wrong constant name const_name=
4246
+ # wrong constant name found_name
4247
+ # wrong constant name found_name=
4248
+ # wrong constant name owner
4249
+ # wrong constant name owner=
4250
+ # wrong constant name primary_name
4251
+ # wrong constant name primary_name=
4252
+ # wrong constant name <static-init>
4253
+ # wrong constant name []
4254
+ # wrong constant name members
4255
+ # wrong constant name <static-init>
4256
+ # wrong constant name <static-init>
4257
+ # wrong constant name main
4258
+ # wrong constant name output_file
4259
+ # wrong constant name <static-init>
4260
+ # wrong constant name fetch_sorbet_typed
4261
+ # wrong constant name main
4262
+ # wrong constant name matching_version_directories
4263
+ # wrong constant name output_file
4264
+ # wrong constant name paths_for_gem_version
4265
+ # wrong constant name paths_for_ruby_version
4266
+ # wrong constant name vendor_rbis_within_paths
4267
+ # wrong constant name <static-init>
4268
+ # wrong constant name main
4269
+ # wrong constant name output_file
4270
+ # wrong constant name paths_within_gem_sources
4271
+ # wrong constant name <Class:ClassDefinition>
4272
+ # wrong constant name <Class:TracepointSerializer>
4273
+ # wrong constant name <Class:Tracer>
4274
+ # uninitialized constant Sorbet::Private::GemGeneratorTracepoint::ClassDefinition::Elem
4275
+ # wrong constant name defs
4276
+ # wrong constant name defs=
4277
+ # wrong constant name id
4278
+ # wrong constant name id=
4279
+ # wrong constant name klass
4280
+ # wrong constant name klass=
4281
+ # wrong constant name <static-init>
4282
+ # wrong constant name []
4283
+ # wrong constant name members
4284
+ # wrong constant name initialize
4285
+ # wrong constant name serialize
4286
+ # wrong constant name <static-init>
4287
+ # wrong constant name <static-init>
4288
+ # wrong constant name add_to_context
4289
+ # wrong constant name disable_tracepoints
4290
+ # wrong constant name finish
4291
+ # wrong constant name install_tracepoints
4292
+ # wrong constant name on_method_added
4293
+ # wrong constant name on_module_created
4294
+ # wrong constant name on_module_extended
4295
+ # wrong constant name on_module_included
4296
+ # wrong constant name pre_cache_module_methods
4297
+ # wrong constant name register_delegate_class
4298
+ # wrong constant name start
4299
+ # wrong constant name trace
4300
+ # wrong constant name trace_results
4301
+ # wrong constant name <static-init>
4302
+ # wrong constant name main
4303
+ # wrong constant name output_file
4304
+ # wrong constant name <static-init>
4305
+ # wrong constant name my_require
4306
+ # wrong constant name require_all_gems
4307
+ # wrong constant name require_gem
4308
+ # wrong constant name all_modules_and_aliases
4309
+ # wrong constant name capture_stderr
4310
+ # wrong constant name constant_cache
4311
+ # wrong constant name gen_source_rbi
4312
+ # wrong constant name looks_like_stub_name
4313
+ # wrong constant name main
4314
+ # wrong constant name mk_dir
4315
+ # wrong constant name read_constants
4316
+ # wrong constant name real_name
4317
+ # wrong constant name require_everything
4318
+ # wrong constant name rm_dir
4319
+ # wrong constant name serialize_alias
4320
+ # wrong constant name serialize_class
4321
+ # wrong constant name serialize_constants
4322
+ # wrong constant name symbols_id_to_name
4323
+ # wrong constant name write_constants
4324
+ # wrong constant name write_diff
4325
+ # wrong constant name <static-init>
4326
+ # wrong constant name main
4327
+ # wrong constant name output_file
4328
+ # wrong constant name <static-init>
4329
+ # wrong constant name cyan
4330
+ # wrong constant name emojify
4331
+ # wrong constant name init
4332
+ # wrong constant name main
4333
+ # wrong constant name make_step
4334
+ # wrong constant name usage
4335
+ # wrong constant name yellow
4336
+ # wrong constant name <static-init>
4337
+ # wrong constant name real_ancestors
4338
+ # wrong constant name real_autoload?
4339
+ # wrong constant name real_const_get
4340
+ # wrong constant name real_constants
4341
+ # wrong constant name real_eqeq
4342
+ # wrong constant name real_hash
4343
+ # wrong constant name real_instance_methods
4344
+ # wrong constant name real_is_a?
4345
+ # wrong constant name real_name
4346
+ # wrong constant name real_object_id
4347
+ # wrong constant name real_private_instance_methods
4348
+ # wrong constant name real_singleton_class
4349
+ # wrong constant name real_singleton_methods
4350
+ # wrong constant name real_spaceship
4351
+ # wrong constant name real_superclass
4352
+ # wrong constant name <static-init>
4353
+ # wrong constant name excluded_rails_files
4354
+ # wrong constant name load_bundler
4355
+ # wrong constant name load_rails
4356
+ # wrong constant name my_require
4357
+ # wrong constant name patch_kernel
4358
+ # wrong constant name rails?
4359
+ # wrong constant name rails_load_paths
4360
+ # wrong constant name rb_file_paths
4361
+ # wrong constant name require_all_files
4362
+ # wrong constant name require_everything
4363
+ # wrong constant name alias
4364
+ # wrong constant name ancestor_has_method
4365
+ # wrong constant name blacklisted_method
4366
+ # wrong constant name class_or_module
4367
+ # wrong constant name comparable?
4368
+ # wrong constant name constant
4369
+ # wrong constant name from_method
4370
+ # wrong constant name initialize
4371
+ # wrong constant name serialize_method
4372
+ # wrong constant name serialize_sig
4373
+ # wrong constant name to_sig
4374
+ # wrong constant name valid_class_name
4375
+ # wrong constant name valid_method_name
4376
+ # wrong constant name <static-init>
4377
+ # wrong constant name header
4378
+ # uninitialized constant Sorbet::Private::Static
4379
+ # Did you mean? Sorbet::Private::Status
4380
+ # uninitialized constant Sorbet::Private::Static
4381
+ # Did you mean? Sorbet::Private::Status
4382
+ # wrong constant name <static-init>
4383
+ # wrong constant name done
4384
+ # wrong constant name say
4385
+ # wrong constant name <static-init>
4386
+ # wrong constant name main
4387
+ # wrong constant name output_file
4388
+ # wrong constant name <static-init>
4389
+ # wrong constant name main
4390
+ # wrong constant name output_file
4391
+ # wrong constant name suggest_typed
4392
+ # wrong constant name <static-init>
4393
+ # wrong constant name main
4394
+ # wrong constant name output_file
4395
+ # uninitialized constant SortedSet::InspectKey
4396
+ # wrong constant name initialize
4397
+ # wrong constant name setup
4398
+ # wrong constant name result
4399
+ # wrong constant name +@
4400
+ # wrong constant name -@
4401
+ # wrong constant name []=
4402
+ # wrong constant name casecmp?
4403
+ # wrong constant name delete_prefix
4404
+ # wrong constant name delete_prefix!
4405
+ # wrong constant name delete_suffix
4406
+ # wrong constant name delete_suffix!
4407
+ # wrong constant name each_grapheme_cluster
4408
+ # wrong constant name encode
4409
+ # wrong constant name encode!
4410
+ # wrong constant name grapheme_clusters
4411
+ # wrong constant name reverse!
4412
+ # wrong constant name shellescape
4413
+ # wrong constant name shellsplit
4414
+ # wrong constant name succ!
4415
+ # wrong constant name undump
4416
+ # wrong constant name unicode_normalize
4417
+ # wrong constant name unicode_normalize!
4418
+ # wrong constant name unicode_normalized?
4419
+ # wrong constant name unpack1
4420
+ # wrong constant name length
4421
+ # wrong constant name truncate
4422
+ # wrong constant name <<
4423
+ # wrong constant name []
4424
+ # wrong constant name beginning_of_line?
4425
+ # wrong constant name bol?
4426
+ # wrong constant name captures
4427
+ # wrong constant name charpos
4428
+ # wrong constant name check
4429
+ # wrong constant name check_until
4430
+ # wrong constant name clear
4431
+ # wrong constant name concat
4432
+ # wrong constant name empty?
4433
+ # wrong constant name exist?
4434
+ # wrong constant name get_byte
4435
+ # wrong constant name getbyte
4436
+ # wrong constant name initialize
4437
+ # wrong constant name match?
4438
+ # wrong constant name matched
4439
+ # wrong constant name matched?
4440
+ # wrong constant name matched_size
4441
+ # wrong constant name peek
4442
+ # wrong constant name peep
4443
+ # wrong constant name pointer
4444
+ # wrong constant name pointer=
4445
+ # wrong constant name pos
4446
+ # wrong constant name pos=
4447
+ # wrong constant name post_match
4448
+ # wrong constant name pre_match
4449
+ # wrong constant name reset
4450
+ # wrong constant name rest
4451
+ # wrong constant name rest?
4452
+ # wrong constant name rest_size
4453
+ # wrong constant name restsize
4454
+ # wrong constant name scan_full
4455
+ # wrong constant name scan_until
4456
+ # wrong constant name search_full
4457
+ # wrong constant name size
4458
+ # wrong constant name skip
4459
+ # wrong constant name skip_until
4460
+ # wrong constant name string
4461
+ # wrong constant name string=
4462
+ # wrong constant name terminate
4463
+ # wrong constant name unscan
4464
+ # wrong constant name values_at
4465
+ # wrong constant name must_C_version
4466
+ # wrong constant name []
4467
+ # wrong constant name []=
4468
+ # wrong constant name dig
4469
+ # wrong constant name each_pair
4470
+ # wrong constant name filter
4471
+ # wrong constant name length
4472
+ # wrong constant name members
4473
+ # wrong constant name select
4474
+ # wrong constant name size
4475
+ # wrong constant name to_a
4476
+ # wrong constant name to_h
4477
+ # wrong constant name values
4478
+ # wrong constant name values_at
4479
+ # wrong constant name errno
4480
+ # wrong constant name status
4481
+ # wrong constant name success?
4482
+ # wrong constant name T.noreturn
4483
+ # wrong constant name T.noreturn
4484
+ # wrong constant name T.untyped
4485
+ # wrong constant name <Class:Remover>
4486
+ # wrong constant name _close
4487
+ # wrong constant name inspect
4488
+ # wrong constant name call
4489
+ # wrong constant name initialize
4490
+ # wrong constant name <static-init>
4491
+ # wrong constant name __enable
4492
+ # wrong constant name eval_script
4493
+ # wrong constant name event
4494
+ # wrong constant name instruction_sequence
4495
+ # wrong constant name parameters
4496
+ # wrong constant name <Class:Normalizer>
4497
+ # wrong constant name normalize
4498
+ # wrong constant name <static-init>
4499
+ # wrong constant name instance
4500
+ # wrong constant name normalize
4501
+ # wrong constant name <Class:File>
4502
+ # wrong constant name decode
4503
+ # wrong constant name encode
4504
+ # wrong constant name escape
4505
+ # wrong constant name unescape
4506
+ # wrong constant name set_typecode
4507
+ # wrong constant name typecode
4508
+ # wrong constant name typecode=
4509
+ # wrong constant name new2
4510
+ # uninitialized constant URI::File::ABS_PATH
4511
+ # Did you mean? URI::ABS_PATH
4512
+ # uninitialized constant URI::File::ABS_URI
4513
+ # Did you mean? URI::ABS_URI
4514
+ # uninitialized constant URI::File::ABS_URI_REF
4515
+ # Did you mean? URI::ABS_URI_REF
4516
+ # uninitialized constant URI::File::DEFAULT_PARSER
4517
+ # Did you mean? URI::File::DEFAULT_PORT
4518
+ # URI::DEFAULT_PARSER
4519
+ # uninitialized constant URI::File::ESCAPED
4520
+ # Did you mean? URI::File::Escape
4521
+ # URI::Escape
4522
+ # URI::ESCAPED
4523
+ # uninitialized constant URI::File::FRAGMENT
4524
+ # Did you mean? URI::FRAGMENT
4525
+ # uninitialized constant URI::File::HOST
4526
+ # Did you mean? URI::HOST
4527
+ # uninitialized constant URI::File::OPAQUE
4528
+ # Did you mean? URI::OPAQUE
4529
+ # uninitialized constant URI::File::PORT
4530
+ # Did you mean? URI::PORT
4531
+ # uninitialized constant URI::File::QUERY
4532
+ # Did you mean? URI::QUERY
4533
+ # uninitialized constant URI::File::REGISTRY
4534
+ # Did you mean? URI::REGISTRY
4535
+ # uninitialized constant URI::File::REL_PATH
4536
+ # Did you mean? URI::REL_PATH
4537
+ # uninitialized constant URI::File::REL_URI
4538
+ # Did you mean? URI::REL_URI
4539
+ # uninitialized constant URI::File::REL_URI_REF
4540
+ # Did you mean? URI::REL_URI_REF
4541
+ # uninitialized constant URI::File::RFC3986_PARSER
4542
+ # Did you mean? URI::File::RFC3986_Parser
4543
+ # URI::RFC3986_Parser
4544
+ # URI::RFC2396_Parser
4545
+ # URI::File::RFC2396_Parser
4546
+ # URI::RFC3986_PARSER
4547
+ # uninitialized constant URI::File::SCHEME
4548
+ # Did you mean? URI::SCHEME
4549
+ # uninitialized constant URI::File::TBLDECWWWCOMP_
4550
+ # Did you mean? URI::File::TBLENCWWWCOMP_
4551
+ # URI::TBLDECWWWCOMP_
4552
+ # URI::TBLENCWWWCOMP_
4553
+ # uninitialized constant URI::File::TBLENCWWWCOMP_
4554
+ # Did you mean? URI::File::TBLDECWWWCOMP_
4555
+ # URI::TBLDECWWWCOMP_
4556
+ # URI::TBLENCWWWCOMP_
4557
+ # uninitialized constant URI::File::UNSAFE
4558
+ # Did you mean? URI::UNSAFE
4559
+ # uninitialized constant URI::File::URI_REF
4560
+ # Did you mean? URI::URI_REF
4561
+ # uninitialized constant URI::File::USERINFO
4562
+ # Did you mean? URI::USERINFO
4563
+ # uninitialized constant URI::File::USE_REGISTRY
4564
+ # uninitialized constant URI::File::VERSION
4565
+ # Did you mean? URI::VERSION
4566
+ # uninitialized constant URI::File::VERSION_CODE
4567
+ # Did you mean? URI::VERSION_CODE
4568
+ # uninitialized constant URI::File::WEB_ENCODINGS_
4569
+ # Did you mean? URI::WEB_ENCODINGS_
4570
+ # wrong constant name check_password
4571
+ # wrong constant name check_user
4572
+ # wrong constant name check_userinfo
4573
+ # wrong constant name set_userinfo
4574
+ # wrong constant name <static-init>
4575
+ # wrong constant name request_uri
4576
+ # wrong constant name attributes
4577
+ # wrong constant name attributes=
4578
+ # wrong constant name dn
4579
+ # wrong constant name dn=
4580
+ # wrong constant name extensions
4581
+ # wrong constant name extensions=
4582
+ # wrong constant name filter
4583
+ # wrong constant name filter=
4584
+ # wrong constant name initialize
4585
+ # wrong constant name scope
4586
+ # wrong constant name scope=
4587
+ # wrong constant name set_attributes
4588
+ # wrong constant name set_dn
4589
+ # wrong constant name set_extensions
4590
+ # wrong constant name set_filter
4591
+ # wrong constant name set_scope
4592
+ # wrong constant name headers
4593
+ # wrong constant name headers=
4594
+ # wrong constant name initialize
4595
+ # wrong constant name set_headers
4596
+ # wrong constant name set_to
4597
+ # wrong constant name to
4598
+ # wrong constant name to=
4599
+ # wrong constant name to_mailtext
4600
+ # wrong constant name to_rfc822text
4601
+ # wrong constant name escape
4602
+ # wrong constant name extract
4603
+ # wrong constant name initialize
4604
+ # wrong constant name join
4605
+ # wrong constant name make_regexp
4606
+ # wrong constant name parse
4607
+ # wrong constant name pattern
4608
+ # wrong constant name regexp
4609
+ # wrong constant name split
4610
+ # wrong constant name unescape
4611
+ # wrong constant name join
4612
+ # wrong constant name parse
4613
+ # wrong constant name regexp
4614
+ # wrong constant name split
4615
+ # wrong constant name make_components_hash
4616
+ # wrong constant name decode_www_form
4617
+ # wrong constant name encode_www_form
4618
+ # wrong constant name encode_www_form_component
4619
+ # wrong constant name get_encoding
4620
+ # wrong constant name clone
4621
+ # wrong constant name original_name
4622
+ # wrong constant name tag
4623
+ # wrong constant name value
4624
+ # wrong constant name <static-init>
4625
+ # wrong constant name <Class:CucumberTags>
4626
+ # wrong constant name <Class:InternetConnection>
4627
+ # wrong constant name []
4628
+ # wrong constant name []=
4629
+ # wrong constant name absolute_path_to_file
4630
+ # wrong constant name storage_location
4631
+ # wrong constant name storage_location=
4632
+ # wrong constant name <static-init>
4633
+ # wrong constant name deserialize
4634
+ # wrong constant name file_extension
4635
+ # wrong constant name serialize
4636
+ # wrong constant name <static-init>
4637
+ # wrong constant name deserialize
4638
+ # wrong constant name file_extension
4639
+ # wrong constant name serialize
4640
+ # wrong constant name <static-init>
4641
+ # wrong constant name deserialize
4642
+ # wrong constant name file_extension
4643
+ # wrong constant name serialize
4644
+ # wrong constant name <static-init>
4645
+ # wrong constant name deserialize
4646
+ # wrong constant name file_extension
4647
+ # wrong constant name serialize
4648
+ # wrong constant name <static-init>
4649
+ # wrong constant name <Class:ScenarioNameBuilder>
4650
+ # wrong constant name initialize
4651
+ # wrong constant name tag
4652
+ # wrong constant name tags
4653
+ # wrong constant name cassette_name
4654
+ # wrong constant name examples_table
4655
+ # wrong constant name examples_table_row
4656
+ # wrong constant name feature
4657
+ # wrong constant name initialize
4658
+ # wrong constant name scenario
4659
+ # wrong constant name scenario_outline
4660
+ # wrong constant name <static-init>
4661
+ # wrong constant name <static-init>
4662
+ # wrong constant name add_tag
4663
+ # wrong constant name tags
4664
+ # wrong constant name available?
4665
+ # wrong constant name <static-init>
4666
+ # wrong constant name call
4667
+ # wrong constant name initialize
4668
+ # wrong constant name <static-init>
4669
+ # wrong constant name configure!
4670
+ # wrong constant name <static-init>
4671
+ # uninitialized constant WEBrick
4672
+ # Did you mean? WebMock
4673
+ # uninitialized constant WEBrick
4674
+ # Did you mean? WebMock
4675
+ # wrong constant name warn
4676
+ # wrong constant name <Class:BufError>
4677
+ # wrong constant name <Class:DataError>
4678
+ # wrong constant name <Class:Deflate>
4679
+ # wrong constant name <Class:Error>
4680
+ # wrong constant name <Class:GzipFile>
4681
+ # wrong constant name <Class:GzipReader>
4682
+ # wrong constant name <Class:GzipWriter>
4683
+ # wrong constant name <Class:Inflate>
4684
+ # wrong constant name <Class:MemError>
4685
+ # wrong constant name <Class:NeedDict>
4686
+ # wrong constant name <Class:StreamEnd>
4687
+ # wrong constant name <Class:StreamError>
4688
+ # wrong constant name <Class:VersionError>
4689
+ # wrong constant name <Class:ZStream>
4690
+ # wrong constant name <static-init>
4691
+ # wrong constant name <static-init>
4692
+ # wrong constant name <<
4693
+ # wrong constant name deflate
4694
+ # wrong constant name flush
4695
+ # wrong constant name initialize
4696
+ # wrong constant name params
4697
+ # wrong constant name set_dictionary
4698
+ # wrong constant name <static-init>
4699
+ # wrong constant name deflate
4700
+ # wrong constant name <static-init>
4701
+ # wrong constant name <Class:CRCError>
4702
+ # wrong constant name <Class:Error>
4703
+ # wrong constant name <Class:LengthError>
4704
+ # wrong constant name <Class:NoFooter>
4705
+ # wrong constant name close
4706
+ # wrong constant name closed?
4707
+ # wrong constant name comment
4708
+ # wrong constant name crc
4709
+ # wrong constant name finish
4710
+ # wrong constant name level
4711
+ # wrong constant name mtime
4712
+ # wrong constant name orig_name
4713
+ # wrong constant name os_code
4714
+ # wrong constant name sync
4715
+ # wrong constant name sync=
4716
+ # wrong constant name to_io
4717
+ # wrong constant name <static-init>
4718
+ # wrong constant name input
4719
+ # wrong constant name <static-init>
4720
+ # wrong constant name <static-init>
4721
+ # wrong constant name <static-init>
4722
+ # wrong constant name <static-init>
4723
+ # wrong constant name wrap
4724
+ # uninitialized constant Zlib::GzipReader::Elem
4725
+ # wrong constant name bytes
4726
+ # wrong constant name each
4727
+ # wrong constant name each_byte
4728
+ # wrong constant name each_char
4729
+ # wrong constant name each_line
4730
+ # wrong constant name eof
4731
+ # wrong constant name eof?
4732
+ # wrong constant name external_encoding
4733
+ # wrong constant name getbyte
4734
+ # wrong constant name getc
4735
+ # wrong constant name initialize
4736
+ # wrong constant name lineno
4737
+ # wrong constant name lineno=
4738
+ # wrong constant name lines
4739
+ # wrong constant name pos
4740
+ # wrong constant name read
4741
+ # wrong constant name readbyte
4742
+ # wrong constant name readchar
4743
+ # wrong constant name readpartial
4744
+ # wrong constant name rewind
4745
+ # wrong constant name tell
4746
+ # wrong constant name ungetbyte
4747
+ # wrong constant name ungetc
4748
+ # wrong constant name unused
4749
+ # wrong constant name <static-init>
4750
+ # wrong constant name <<
4751
+ # wrong constant name comment=
4752
+ # wrong constant name flush
4753
+ # wrong constant name initialize
4754
+ # wrong constant name mtime=
4755
+ # wrong constant name orig_name=
4756
+ # wrong constant name pos
4757
+ # wrong constant name tell
4758
+ # wrong constant name write
4759
+ # wrong constant name <static-init>
4760
+ # wrong constant name <<
4761
+ # wrong constant name add_dictionary
4762
+ # wrong constant name inflate
4763
+ # wrong constant name initialize
4764
+ # wrong constant name set_dictionary
4765
+ # wrong constant name sync
4766
+ # wrong constant name sync_point?
4767
+ # wrong constant name <static-init>
4768
+ # wrong constant name inflate
4769
+ # wrong constant name <static-init>
4770
+ # wrong constant name <static-init>
4771
+ # wrong constant name <static-init>
4772
+ # wrong constant name <static-init>
4773
+ # wrong constant name <static-init>
4774
+ # wrong constant name adler
4775
+ # wrong constant name avail_in
4776
+ # wrong constant name avail_out
4777
+ # wrong constant name avail_out=
4778
+ # wrong constant name close
4779
+ # wrong constant name closed?
4780
+ # wrong constant name data_type
4781
+ # wrong constant name end
4782
+ # wrong constant name ended?
4783
+ # wrong constant name finish
4784
+ # wrong constant name finished?
4785
+ # wrong constant name flush_next_in
4786
+ # wrong constant name flush_next_out
4787
+ # wrong constant name reset
4788
+ # wrong constant name stream_end?
4789
+ # wrong constant name total_in
4790
+ # wrong constant name total_out
4791
+ # wrong constant name <static-init>
4792
+ # wrong constant name <static-init>
4793
+ # wrong constant name adler32
4794
+ # wrong constant name adler32_combine
4795
+ # wrong constant name crc32
4796
+ # wrong constant name crc32_combine
4797
+ # wrong constant name crc_table
4798
+ # wrong constant name deflate
4799
+ # wrong constant name gunzip
4800
+ # wrong constant name gzip
4801
+ # wrong constant name inflate
4802
+ # wrong constant name zlib_version