parlour 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +8 -1
- data/CHANGELOG.md +5 -0
- data/lib/parlour.rb +2 -1
- data/lib/parlour/kernel_hack.rb +6 -0
- data/lib/parlour/rbi_generator/arbitrary.rb +1 -1
- data/lib/parlour/rbi_generator/constant.rb +1 -1
- data/lib/parlour/rbi_generator/extend.rb +1 -1
- data/lib/parlour/rbi_generator/include.rb +1 -1
- data/lib/parlour/rbi_generator/method.rb +1 -1
- data/lib/parlour/rbi_generator/namespace.rb +2 -2
- data/lib/parlour/version.rb +1 -1
- data/parlour.gemspec +1 -1
- data/sorbet/rbi/hidden-definitions/errors.txt +271 -278
- data/sorbet/rbi/hidden-definitions/hidden.rbi +884 -2522
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f14e75030cacb5f17788f44b4433f99061f6cf2d33ad809f54e15eeffa345e75
|
4
|
+
data.tar.gz: b68177fc5b69ac579adcc12b06d231fa650beef042f627534f22ebb8effeb0b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69df3cca5b4420140ba5a45c563f51d26ed3043a67ea2128ef75775e8abc510fb5981d7282a0a437aa7ddcf36031950e1d32342ebf56e5ffca136480db319521
|
7
|
+
data.tar.gz: 252dd6eabe1bd8deadc1ecea1e20e60793ee180eb2e5211ac622919a24bacb0597e6ef4599d7b2b77a446d1c31f5c0c182ccb8221812a2e3ec17e8ed48e34540
|
data/.travis.yml
CHANGED
@@ -4,7 +4,14 @@ before_install:
|
|
4
4
|
- gem install bundler
|
5
5
|
- gem install yard
|
6
6
|
rvm:
|
7
|
+
- 2.3
|
8
|
+
- 2.4
|
9
|
+
- 2.5
|
7
10
|
- 2.6
|
11
|
+
- ruby-head
|
12
|
+
matrix:
|
13
|
+
allow_failures:
|
14
|
+
- rvm: ruby-head
|
8
15
|
after_success:
|
9
16
|
- yard
|
10
17
|
deploy:
|
@@ -14,4 +21,4 @@ deploy:
|
|
14
21
|
github_token: $GITHUB_TOKEN
|
15
22
|
keep_history: true
|
16
23
|
on:
|
17
|
-
branch: master
|
24
|
+
branch: master
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
|
|
3
3
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
5
5
|
|
6
|
+
## [0.6.1] - 2019-07-29
|
7
|
+
### Changed
|
8
|
+
- Various areas of the codebase have been made compatible with older Ruby
|
9
|
+
versions.
|
10
|
+
|
6
11
|
## [0.6.0] - 2019-07-25
|
7
12
|
### Changed
|
8
13
|
- **Breaking change: the `name: ` keyword argument is now positional instead.**
|
data/lib/parlour.rb
CHANGED
@@ -3,6 +3,8 @@ require 'sorbet-runtime'
|
|
3
3
|
|
4
4
|
require 'parlour/version'
|
5
5
|
|
6
|
+
require 'parlour/kernel_hack'
|
7
|
+
|
6
8
|
require 'parlour/plugin'
|
7
9
|
|
8
10
|
require 'parlour/rbi_generator/parameter'
|
@@ -20,4 +22,3 @@ require 'parlour/rbi_generator/class_namespace'
|
|
20
22
|
require 'parlour/rbi_generator'
|
21
23
|
|
22
24
|
require 'parlour/conflict_resolver'
|
23
|
-
|
@@ -15,7 +15,7 @@ module Parlour
|
|
15
15
|
# @param name [String] The name of the object to be extended.
|
16
16
|
def initialize(generator, name: '', &block)
|
17
17
|
super(generator, name)
|
18
|
-
yield_self(&block)
|
18
|
+
yield_self(&block) if block
|
19
19
|
end
|
20
20
|
|
21
21
|
sig { params(other: Object).returns(T::Boolean) }
|
@@ -15,7 +15,7 @@ module Parlour
|
|
15
15
|
# @param name [String] The name of the object to be included.
|
16
16
|
def initialize(generator, name: '', &block)
|
17
17
|
super(generator, name)
|
18
|
-
yield_self(&block)
|
18
|
+
yield_self(&block) if block
|
19
19
|
end
|
20
20
|
|
21
21
|
sig { params(other: Object).returns(T::Boolean) }
|
@@ -41,7 +41,7 @@ module Parlour
|
|
41
41
|
super(generator, name || '<anonymous namespace>')
|
42
42
|
@children = []
|
43
43
|
@next_comments = []
|
44
|
-
yield_self(&block)
|
44
|
+
yield_self(&block) if block
|
45
45
|
end
|
46
46
|
|
47
47
|
sig { returns(T::Array[RbiObject]) }
|
@@ -525,7 +525,7 @@ module Parlour
|
|
525
525
|
# @param object [RbiObject] The object to move the comments into.
|
526
526
|
# @return [void]
|
527
527
|
def move_next_comments(object)
|
528
|
-
object.comments.
|
528
|
+
object.comments.unshift(*@next_comments)
|
529
529
|
@next_comments.clear
|
530
530
|
end
|
531
531
|
end
|
data/lib/parlour/version.rb
CHANGED
data/parlour.gemspec
CHANGED
@@ -28,6 +28,6 @@ Gem::Specification.new do |spec|
|
|
28
28
|
spec.add_development_dependency "bundler", "~> 2.0"
|
29
29
|
spec.add_development_dependency "rake", "~> 10.0"
|
30
30
|
spec.add_development_dependency "rspec", "~> 3.0"
|
31
|
-
spec.add_development_dependency "sorbet"
|
31
|
+
spec.add_development_dependency "sorbet"
|
32
32
|
spec.add_development_dependency "simplecov"
|
33
33
|
end
|
@@ -28,11 +28,7 @@
|
|
28
28
|
# wrong constant name <RESERVED_114>
|
29
29
|
# wrong constant name <RESERVED_115>
|
30
30
|
# wrong constant name <RESERVED_116>
|
31
|
-
# wrong constant name <RESERVED_117>
|
32
|
-
# wrong constant name <RESERVED_118>
|
33
|
-
# wrong constant name <RESERVED_119>
|
34
31
|
# wrong constant name <RESERVED_11>
|
35
|
-
# wrong constant name <RESERVED_120>
|
36
32
|
# wrong constant name <RESERVED_12>
|
37
33
|
# wrong constant name <RESERVED_13>
|
38
34
|
# wrong constant name <RESERVED_14>
|
@@ -310,13 +306,10 @@
|
|
310
306
|
# wrong constant name initialize$1
|
311
307
|
# wrong constant name power$2
|
312
308
|
# wrong constant name to_s$1
|
313
|
-
#
|
314
|
-
#
|
315
|
-
# wrong constant name limit
|
316
|
-
# wrong constant name mode
|
317
|
-
# wrong constant name save_exception_mode
|
318
|
-
# wrong constant name save_limit
|
319
|
-
# wrong constant name save_rounding_mode
|
309
|
+
# undefined singleton method `limit$1' for `BigDecimal'
|
310
|
+
# undefined singleton method `mode$1' for `BigDecimal'
|
311
|
+
# wrong constant name limit$1
|
312
|
+
# wrong constant name mode$1
|
320
313
|
# wrong constant name ver
|
321
314
|
# wrong constant name clone
|
322
315
|
# wrong constant name irb
|
@@ -730,8 +723,11 @@
|
|
730
723
|
# wrong constant name rectangular
|
731
724
|
# uninitialized constant Configatron
|
732
725
|
# uninitialized constant Configatron
|
733
|
-
#
|
734
|
-
#
|
726
|
+
# undefined singleton method `start$1' for `Coverage'
|
727
|
+
# wrong constant name peek_result
|
728
|
+
# wrong constant name running?
|
729
|
+
# wrong constant name start$1
|
730
|
+
# wrong constant name initialize
|
735
731
|
# wrong constant name !=
|
736
732
|
# wrong constant name ==
|
737
733
|
# wrong constant name __getobj__
|
@@ -812,6 +808,25 @@
|
|
812
808
|
# wrong constant name mkdir$1
|
813
809
|
# wrong constant name mktmpdir$2
|
814
810
|
# wrong constant name tmpdir
|
811
|
+
# wrong constant name <Class:ChainingFallbackContextProxy>
|
812
|
+
# wrong constant name <Class:Execution>
|
813
|
+
# wrong constant name <Class:FallbackContextProxy>
|
814
|
+
# uninitialized constant Docile::ChainingFallbackContextProxy::NON_FALLBACK_METHODS
|
815
|
+
# Did you mean? Docile::ChainingFallbackContextProxy::NON_FALLBACK_METHODS
|
816
|
+
# uninitialized constant Docile::ChainingFallbackContextProxy::NON_PROXIED_INSTANCE_VARIABLES
|
817
|
+
# Did you mean? Docile::ChainingFallbackContextProxy::NON_PROXIED_INSTANCE_VARIABLES
|
818
|
+
# uninitialized constant Docile::ChainingFallbackContextProxy::NON_PROXIED_METHODS
|
819
|
+
# Did you mean? Docile::ChainingFallbackContextProxy::NON_PROXIED_METHODS
|
820
|
+
# wrong constant name <static-init>
|
821
|
+
# wrong constant name <static-init>
|
822
|
+
# wrong constant name exec_in_proxy_context
|
823
|
+
# wrong constant name initialize
|
824
|
+
# wrong constant name method_missing
|
825
|
+
# wrong constant name <static-init>
|
826
|
+
# wrong constant name <static-init>
|
827
|
+
# wrong constant name dsl_eval
|
828
|
+
# wrong constant name dsl_eval_immutable
|
829
|
+
# wrong constant name dsl_eval_with_block_return
|
815
830
|
# wrong constant name def_method
|
816
831
|
# wrong constant name def_module
|
817
832
|
# wrong constant name result_with_hash
|
@@ -875,14 +890,12 @@
|
|
875
890
|
# wrong constant name detect$2
|
876
891
|
# wrong constant name each_entry
|
877
892
|
# wrong constant name each_with_index$2
|
878
|
-
# wrong constant name each_with_object
|
879
893
|
# wrong constant name entries$1
|
880
894
|
# wrong constant name find$2
|
881
895
|
# wrong constant name find_index$2
|
882
896
|
# wrong constant name first$2
|
883
897
|
# wrong constant name grep_v
|
884
898
|
# wrong constant name inject$2
|
885
|
-
# wrong constant name lazy
|
886
899
|
# wrong constant name max$2
|
887
900
|
# wrong constant name max_by$2
|
888
901
|
# wrong constant name min$2
|
@@ -900,6 +913,14 @@
|
|
900
913
|
# wrong constant name to_set
|
901
914
|
# wrong constant name uniq
|
902
915
|
# wrong constant name zip
|
916
|
+
# undefined method `each$2' for class `Enumerator'
|
917
|
+
# undefined method `initialize$1' for class `Enumerator'
|
918
|
+
# Did you mean? initialize
|
919
|
+
# undefined method `with_index$2' for class `Enumerator'
|
920
|
+
# wrong constant name each$2
|
921
|
+
# wrong constant name each_with_index
|
922
|
+
# wrong constant name initialize$1
|
923
|
+
# wrong constant name with_index$2
|
903
924
|
# wrong constant name each
|
904
925
|
# wrong constant name initialize
|
905
926
|
# wrong constant name chunk
|
@@ -1143,12 +1164,19 @@
|
|
1143
1164
|
# undefined method `rationalize$2' for class `Float'
|
1144
1165
|
# Did you mean? Rational
|
1145
1166
|
# wrong constant name rationalize$2
|
1146
|
-
#
|
1147
|
-
#
|
1167
|
+
# wrong constant name def_delegator
|
1168
|
+
# wrong constant name def_delegators
|
1169
|
+
# wrong constant name def_instance_delegator
|
1170
|
+
# wrong constant name def_instance_delegators
|
1171
|
+
# wrong constant name delegate
|
1172
|
+
# wrong constant name instance_delegate
|
1173
|
+
# wrong constant name _compile_method
|
1174
|
+
# wrong constant name _delegator_method
|
1175
|
+
# wrong constant name _valid_method?
|
1176
|
+
# wrong constant name debug
|
1177
|
+
# wrong constant name debug=
|
1148
1178
|
# wrong constant name <static-init>
|
1149
1179
|
# wrong constant name garbage_collect
|
1150
|
-
# undefined singleton method `report$1' for `GC::Profiler'
|
1151
|
-
# wrong constant name report$1
|
1152
1180
|
# undefined singleton method `start$1' for `GC'
|
1153
1181
|
# undefined singleton method `stat$2' for `GC'
|
1154
1182
|
# wrong constant name latest_gc_info
|
@@ -3045,6 +3073,7 @@
|
|
3045
3073
|
# undefined method `fetch$2' for class `Hash'
|
3046
3074
|
# undefined method `initialize$2' for class `Hash'
|
3047
3075
|
# Did you mean? initialize
|
3076
|
+
# undefined method `merge$2' for class `Hash'
|
3048
3077
|
# wrong constant name <
|
3049
3078
|
# wrong constant name <=
|
3050
3079
|
# wrong constant name >
|
@@ -3060,6 +3089,7 @@
|
|
3060
3089
|
# wrong constant name flatten
|
3061
3090
|
# wrong constant name index
|
3062
3091
|
# wrong constant name initialize$2
|
3092
|
+
# wrong constant name merge$2
|
3063
3093
|
# wrong constant name merge!
|
3064
3094
|
# wrong constant name replace
|
3065
3095
|
# wrong constant name slice
|
@@ -3199,84 +3229,8 @@
|
|
3199
3229
|
# wrong constant name to_bn
|
3200
3230
|
# wrong constant name to_s$1
|
3201
3231
|
# wrong constant name sqrt
|
3202
|
-
# wrong constant name <Class:Generator>
|
3203
|
-
# wrong constant name <Class:Parser>
|
3204
|
-
# wrong constant name <Class:GeneratorMethods>
|
3205
|
-
# wrong constant name <Class:State>
|
3206
|
-
# wrong constant name <Class:Array>
|
3207
|
-
# wrong constant name <Class:FalseClass>
|
3208
|
-
# wrong constant name <Class:Float>
|
3209
|
-
# wrong constant name <Class:Hash>
|
3210
|
-
# wrong constant name <Class:Integer>
|
3211
|
-
# wrong constant name <Class:NilClass>
|
3212
|
-
# wrong constant name <Class:Object>
|
3213
|
-
# wrong constant name <Class:String>
|
3214
|
-
# wrong constant name <Class:TrueClass>
|
3215
|
-
# wrong constant name to_json
|
3216
|
-
# wrong constant name <static-init>
|
3217
|
-
# wrong constant name to_json
|
3218
|
-
# wrong constant name <static-init>
|
3219
|
-
# wrong constant name to_json
|
3220
|
-
# wrong constant name <static-init>
|
3221
|
-
# wrong constant name to_json
|
3222
|
-
# wrong constant name <static-init>
|
3223
|
-
# wrong constant name to_json
|
3224
|
-
# wrong constant name <static-init>
|
3225
|
-
# wrong constant name to_json
|
3226
|
-
# wrong constant name <static-init>
|
3227
|
-
# wrong constant name to_json
|
3228
|
-
# wrong constant name <static-init>
|
3229
|
-
# wrong constant name <Class:Extend>
|
3230
|
-
# wrong constant name to_json
|
3231
|
-
# wrong constant name to_json_raw
|
3232
|
-
# wrong constant name to_json_raw_object
|
3233
|
-
# wrong constant name json_create
|
3234
|
-
# wrong constant name <static-init>
|
3235
|
-
# wrong constant name <static-init>
|
3236
|
-
# wrong constant name to_json
|
3237
|
-
# wrong constant name <static-init>
|
3238
|
-
# wrong constant name <static-init>
|
3239
|
-
# wrong constant name []
|
3240
|
-
# wrong constant name []=
|
3241
|
-
# wrong constant name allow_nan?
|
3242
|
-
# wrong constant name array_nl
|
3243
|
-
# wrong constant name array_nl=
|
3244
|
-
# wrong constant name ascii_only?
|
3245
|
-
# wrong constant name buffer_initial_length
|
3246
|
-
# wrong constant name buffer_initial_length=
|
3247
|
-
# wrong constant name check_circular?
|
3248
|
-
# wrong constant name configure
|
3249
|
-
# wrong constant name depth
|
3250
|
-
# wrong constant name depth=
|
3251
|
-
# wrong constant name generate
|
3252
|
-
# wrong constant name indent
|
3253
|
-
# wrong constant name indent=
|
3254
|
-
# wrong constant name initialize
|
3255
|
-
# wrong constant name max_nesting
|
3256
|
-
# wrong constant name max_nesting=
|
3257
|
-
# wrong constant name merge
|
3258
|
-
# wrong constant name object_nl
|
3259
|
-
# wrong constant name object_nl=
|
3260
|
-
# wrong constant name space
|
3261
|
-
# wrong constant name space=
|
3262
|
-
# wrong constant name space_before
|
3263
|
-
# wrong constant name space_before=
|
3264
|
-
# wrong constant name to_h
|
3265
|
-
# wrong constant name to_hash
|
3266
|
-
# wrong constant name <static-init>
|
3267
3232
|
# wrong constant name from_state
|
3268
|
-
# wrong constant name <static-init>
|
3269
3233
|
# wrong constant name initialize
|
3270
|
-
# wrong constant name parse
|
3271
|
-
# wrong constant name source
|
3272
|
-
# wrong constant name <static-init>
|
3273
|
-
# wrong constant name <static-init>
|
3274
|
-
# undefined singleton method `dump$1' for `JSON'
|
3275
|
-
# undefined singleton method `generate$1' for `JSON'
|
3276
|
-
# undefined singleton method `pretty_generate$1' for `JSON'
|
3277
|
-
# wrong constant name dump$1
|
3278
|
-
# wrong constant name generate$1
|
3279
|
-
# wrong constant name pretty_generate$1
|
3280
3234
|
# undefined method `clone$1' for module `Kernel'
|
3281
3235
|
# Did you mean? clone
|
3282
3236
|
# undefined method `define_singleton_method$2' for module `Kernel'
|
@@ -3310,7 +3264,6 @@
|
|
3310
3264
|
# singleton_method
|
3311
3265
|
# undefined method `to_enum$2' for module `Kernel'
|
3312
3266
|
# Did you mean? to_enum
|
3313
|
-
# wrong constant name class
|
3314
3267
|
# wrong constant name clone$1
|
3315
3268
|
# wrong constant name define_singleton_method$2
|
3316
3269
|
# wrong constant name display$1
|
@@ -3345,8 +3298,6 @@
|
|
3345
3298
|
# undefined method `[]$2' for class `MatchData'
|
3346
3299
|
# wrong constant name []$2
|
3347
3300
|
# wrong constant name named_captures
|
3348
|
-
# undefined singleton method `log$1' for `Math'
|
3349
|
-
# wrong constant name log$1
|
3350
3301
|
# uninitialized constant MessagePack
|
3351
3302
|
# uninitialized constant MessagePack
|
3352
3303
|
# wrong constant name ===
|
@@ -3362,7 +3313,7 @@
|
|
3362
3313
|
# wrong constant name source_location
|
3363
3314
|
# wrong constant name super_method
|
3364
3315
|
# wrong constant name unbind
|
3365
|
-
# undefined method `class_eval$
|
3316
|
+
# undefined method `class_eval$2' for class `Module'
|
3366
3317
|
# Did you mean? class_eval
|
3367
3318
|
# undefined method `class_variables$1' for class `Module'
|
3368
3319
|
# Did you mean? class_variables
|
@@ -3380,7 +3331,7 @@
|
|
3380
3331
|
# undefined method `instance_methods$1' for class `Module'
|
3381
3332
|
# Did you mean? instance_methods
|
3382
3333
|
# instance_method
|
3383
|
-
# undefined method `module_eval$
|
3334
|
+
# undefined method `module_eval$2' for class `Module'
|
3384
3335
|
# Did you mean? module_eval
|
3385
3336
|
# undefined method `private_instance_methods$1' for class `Module'
|
3386
3337
|
# Did you mean? private_instance_methods
|
@@ -3391,7 +3342,7 @@
|
|
3391
3342
|
# public_instance_method
|
3392
3343
|
# undefined method `remove_method$1' for class `Module'
|
3393
3344
|
# Did you mean? remove_method
|
3394
|
-
# wrong constant name class_eval$
|
3345
|
+
# wrong constant name class_eval$2
|
3395
3346
|
# wrong constant name class_variables$1
|
3396
3347
|
# wrong constant name const_defined?$1
|
3397
3348
|
# wrong constant name const_get$1
|
@@ -3399,7 +3350,7 @@
|
|
3399
3350
|
# wrong constant name define_method$2
|
3400
3351
|
# wrong constant name deprecate_constant
|
3401
3352
|
# wrong constant name instance_methods$1
|
3402
|
-
# wrong constant name module_eval$
|
3353
|
+
# wrong constant name module_eval$2
|
3403
3354
|
# wrong constant name private_instance_methods$1
|
3404
3355
|
# wrong constant name protected_instance_methods$1
|
3405
3356
|
# wrong constant name public_instance_methods$1
|
@@ -3536,169 +3487,13 @@
|
|
3536
3487
|
# Did you mean? OpenSSL::Digest::SHA1
|
3537
3488
|
# uninitialized constant OpenSSL::PKCS5::PKCS5Error
|
3538
3489
|
# uninitialized constant OpenSSL::PKCS5::PKCS5Error
|
3539
|
-
# wrong constant name <Class:Acceptables>
|
3540
|
-
# wrong constant name <Class:AmbiguousArgument>
|
3541
|
-
# wrong constant name <Class:AmbiguousOption>
|
3542
|
-
# wrong constant name <Class:Arguable>
|
3543
|
-
# wrong constant name <Class:CompletingHash>
|
3544
|
-
# wrong constant name <Class:Completion>
|
3545
|
-
# wrong constant name <Class:InvalidArgument>
|
3546
|
-
# wrong constant name <Class:InvalidOption>
|
3547
|
-
# wrong constant name <Class:List>
|
3548
|
-
# wrong constant name <Class:MissingArgument>
|
3549
|
-
# wrong constant name <Class:NeedlessArgument>
|
3550
|
-
# wrong constant name <Class:OptionMap>
|
3551
|
-
# wrong constant name <Class:ParseError>
|
3552
|
-
# wrong constant name <Class:Switch>
|
3553
|
-
# wrong constant name abort
|
3554
|
-
# wrong constant name accept
|
3555
|
-
# wrong constant name add_officious
|
3556
|
-
# wrong constant name banner
|
3557
|
-
# wrong constant name banner=
|
3558
|
-
# wrong constant name base
|
3559
|
-
# wrong constant name candidate
|
3560
|
-
# wrong constant name compsys
|
3561
3490
|
# wrong constant name def_head_option
|
3562
3491
|
# wrong constant name def_option
|
3563
3492
|
# wrong constant name def_tail_option
|
3564
|
-
# wrong constant name default_argv
|
3565
|
-
# wrong constant name default_argv=
|
3566
|
-
# wrong constant name define
|
3567
|
-
# wrong constant name define_head
|
3568
|
-
# wrong constant name define_tail
|
3569
|
-
# wrong constant name environment
|
3570
|
-
# wrong constant name getopts
|
3571
|
-
# wrong constant name help
|
3572
|
-
# wrong constant name inc
|
3573
|
-
# wrong constant name initialize
|
3574
|
-
# wrong constant name load
|
3575
|
-
# wrong constant name make_switch
|
3576
|
-
# wrong constant name new
|
3577
|
-
# wrong constant name on
|
3578
|
-
# wrong constant name on_head
|
3579
|
-
# wrong constant name on_tail
|
3580
|
-
# wrong constant name order
|
3581
|
-
# wrong constant name order!
|
3582
|
-
# wrong constant name parse
|
3583
|
-
# wrong constant name parse!
|
3584
|
-
# wrong constant name permute
|
3585
|
-
# wrong constant name permute!
|
3586
|
-
# wrong constant name program_name
|
3587
|
-
# wrong constant name program_name=
|
3588
|
-
# wrong constant name reject
|
3589
|
-
# wrong constant name release
|
3590
|
-
# wrong constant name release=
|
3591
|
-
# wrong constant name remove
|
3592
|
-
# wrong constant name separator
|
3593
3493
|
# wrong constant name set_banner
|
3594
3494
|
# wrong constant name set_program_name
|
3595
3495
|
# wrong constant name set_summary_indent
|
3596
3496
|
# wrong constant name set_summary_width
|
3597
|
-
# wrong constant name summarize
|
3598
|
-
# wrong constant name summary_indent
|
3599
|
-
# wrong constant name summary_indent=
|
3600
|
-
# wrong constant name summary_width
|
3601
|
-
# wrong constant name summary_width=
|
3602
|
-
# wrong constant name terminate
|
3603
|
-
# wrong constant name to_a
|
3604
|
-
# wrong constant name top
|
3605
|
-
# wrong constant name ver
|
3606
|
-
# wrong constant name version
|
3607
|
-
# wrong constant name version=
|
3608
|
-
# wrong constant name warn
|
3609
|
-
# wrong constant name <static-init>
|
3610
|
-
# wrong constant name <static-init>
|
3611
|
-
# wrong constant name <static-init>
|
3612
|
-
# wrong constant name getopts
|
3613
|
-
# wrong constant name initialize
|
3614
|
-
# wrong constant name options
|
3615
|
-
# wrong constant name options=
|
3616
|
-
# wrong constant name order!
|
3617
|
-
# wrong constant name parse!
|
3618
|
-
# wrong constant name permute!
|
3619
|
-
# wrong constant name <static-init>
|
3620
|
-
# wrong constant name extend_object
|
3621
|
-
# uninitialized constant OptionParser::CompletingHash::Elem
|
3622
|
-
# uninitialized constant OptionParser::CompletingHash::K
|
3623
|
-
# uninitialized constant OptionParser::CompletingHash::V
|
3624
|
-
# wrong constant name match
|
3625
|
-
# wrong constant name <static-init>
|
3626
|
-
# wrong constant name candidate
|
3627
|
-
# wrong constant name complete
|
3628
|
-
# wrong constant name convert
|
3629
|
-
# wrong constant name <static-init>
|
3630
|
-
# wrong constant name candidate
|
3631
|
-
# wrong constant name regexp
|
3632
|
-
# wrong constant name <static-init>
|
3633
|
-
# wrong constant name <static-init>
|
3634
|
-
# wrong constant name accept
|
3635
|
-
# wrong constant name add_banner
|
3636
|
-
# wrong constant name append
|
3637
|
-
# wrong constant name atype
|
3638
|
-
# wrong constant name complete
|
3639
|
-
# wrong constant name compsys
|
3640
|
-
# wrong constant name each_option
|
3641
|
-
# wrong constant name list
|
3642
|
-
# wrong constant name long
|
3643
|
-
# wrong constant name prepend
|
3644
|
-
# wrong constant name reject
|
3645
|
-
# wrong constant name search
|
3646
|
-
# wrong constant name short
|
3647
|
-
# wrong constant name summarize
|
3648
|
-
# wrong constant name <static-init>
|
3649
|
-
# wrong constant name <static-init>
|
3650
|
-
# wrong constant name <static-init>
|
3651
|
-
# uninitialized constant OptionParser::OptionMap::Elem
|
3652
|
-
# uninitialized constant OptionParser::OptionMap::K
|
3653
|
-
# uninitialized constant OptionParser::OptionMap::V
|
3654
|
-
# wrong constant name <static-init>
|
3655
|
-
# wrong constant name args
|
3656
|
-
# wrong constant name initialize
|
3657
|
-
# wrong constant name reason
|
3658
|
-
# wrong constant name reason=
|
3659
|
-
# wrong constant name recover
|
3660
|
-
# wrong constant name set_backtrace
|
3661
|
-
# wrong constant name set_option
|
3662
|
-
# wrong constant name <static-init>
|
3663
|
-
# wrong constant name filter_backtrace
|
3664
|
-
# wrong constant name <Class:NoArgument>
|
3665
|
-
# wrong constant name <Class:OptionalArgument>
|
3666
|
-
# wrong constant name <Class:PlacedArgument>
|
3667
|
-
# wrong constant name <Class:RequiredArgument>
|
3668
|
-
# wrong constant name add_banner
|
3669
|
-
# wrong constant name arg
|
3670
|
-
# wrong constant name block
|
3671
|
-
# wrong constant name compsys
|
3672
|
-
# wrong constant name conv
|
3673
|
-
# wrong constant name desc
|
3674
|
-
# wrong constant name initialize
|
3675
|
-
# wrong constant name long
|
3676
|
-
# wrong constant name match_nonswitch?
|
3677
|
-
# wrong constant name pattern
|
3678
|
-
# wrong constant name short
|
3679
|
-
# wrong constant name summarize
|
3680
|
-
# wrong constant name switch_name
|
3681
|
-
# wrong constant name parse
|
3682
|
-
# wrong constant name <static-init>
|
3683
|
-
# wrong constant name incompatible_argument_styles
|
3684
|
-
# wrong constant name parse
|
3685
|
-
# wrong constant name <static-init>
|
3686
|
-
# wrong constant name parse
|
3687
|
-
# wrong constant name <static-init>
|
3688
|
-
# wrong constant name parse
|
3689
|
-
# wrong constant name <static-init>
|
3690
|
-
# wrong constant name <static-init>
|
3691
|
-
# wrong constant name guess
|
3692
|
-
# wrong constant name incompatible_argument_styles
|
3693
|
-
# wrong constant name pattern
|
3694
|
-
# wrong constant name <static-init>
|
3695
|
-
# wrong constant name accept
|
3696
|
-
# wrong constant name getopts
|
3697
|
-
# wrong constant name inc
|
3698
|
-
# wrong constant name reject
|
3699
|
-
# wrong constant name terminate
|
3700
|
-
# wrong constant name top
|
3701
|
-
# wrong constant name with
|
3702
3497
|
# uninitialized constant Opus
|
3703
3498
|
# uninitialized constant Opus
|
3704
3499
|
# undefined method `basename$1' for class `Pathname'
|
@@ -3735,11 +3530,8 @@
|
|
3735
3530
|
# wrong constant name symlink?$2
|
3736
3531
|
# wrong constant name sysopen$1
|
3737
3532
|
# wrong constant name write$1
|
3738
|
-
# undefined singleton method `glob$1' for `Pathname'
|
3739
|
-
# wrong constant name glob$1
|
3740
3533
|
# undefined method `curry$1' for class `Proc'
|
3741
3534
|
# wrong constant name ===
|
3742
|
-
# wrong constant name []
|
3743
3535
|
# wrong constant name clone
|
3744
3536
|
# wrong constant name curry$1
|
3745
3537
|
# wrong constant name lambda?
|
@@ -4038,8 +3830,220 @@
|
|
4038
3830
|
# wrong constant name split
|
4039
3831
|
# wrong constant name signm
|
4040
3832
|
# wrong constant name signo
|
4041
|
-
#
|
4042
|
-
#
|
3833
|
+
# wrong constant name <Class:ArrayFilter>
|
3834
|
+
# wrong constant name <Class:BlockFilter>
|
3835
|
+
# wrong constant name <Class:CommandGuesser>
|
3836
|
+
# wrong constant name <Class:Configuration>
|
3837
|
+
# wrong constant name <Class:ExitCodes>
|
3838
|
+
# wrong constant name <Class:FileList>
|
3839
|
+
# wrong constant name <Class:Filter>
|
3840
|
+
# wrong constant name <Class:Formatter>
|
3841
|
+
# wrong constant name <Class:LastRun>
|
3842
|
+
# wrong constant name <Class:LinesClassifier>
|
3843
|
+
# wrong constant name <Class:Profiles>
|
3844
|
+
# wrong constant name <Class:RawCoverage>
|
3845
|
+
# wrong constant name <Class:RegexFilter>
|
3846
|
+
# wrong constant name <Class:Result>
|
3847
|
+
# wrong constant name <Class:ResultMerger>
|
3848
|
+
# wrong constant name <Class:SourceFile>
|
3849
|
+
# wrong constant name <Class:StringFilter>
|
3850
|
+
# wrong constant name matches?
|
3851
|
+
# wrong constant name <static-init>
|
3852
|
+
# wrong constant name matches?
|
3853
|
+
# wrong constant name <static-init>
|
3854
|
+
# wrong constant name <static-init>
|
3855
|
+
# wrong constant name guess
|
3856
|
+
# wrong constant name original_run_command
|
3857
|
+
# wrong constant name original_run_command=
|
3858
|
+
# wrong constant name adapters
|
3859
|
+
# wrong constant name add_filter
|
3860
|
+
# wrong constant name add_group
|
3861
|
+
# wrong constant name at_exit
|
3862
|
+
# wrong constant name command_name
|
3863
|
+
# wrong constant name configure
|
3864
|
+
# wrong constant name coverage_dir
|
3865
|
+
# wrong constant name coverage_path
|
3866
|
+
# wrong constant name filters
|
3867
|
+
# wrong constant name filters=
|
3868
|
+
# wrong constant name formatter
|
3869
|
+
# wrong constant name formatter=
|
3870
|
+
# wrong constant name formatters
|
3871
|
+
# wrong constant name formatters=
|
3872
|
+
# wrong constant name groups
|
3873
|
+
# wrong constant name groups=
|
3874
|
+
# wrong constant name maximum_coverage_drop
|
3875
|
+
# wrong constant name merge_timeout
|
3876
|
+
# wrong constant name minimum_coverage
|
3877
|
+
# wrong constant name minimum_coverage_by_file
|
3878
|
+
# wrong constant name nocov_token
|
3879
|
+
# wrong constant name profiles
|
3880
|
+
# wrong constant name project_name
|
3881
|
+
# wrong constant name refuse_coverage_drop
|
3882
|
+
# wrong constant name root
|
3883
|
+
# wrong constant name skip_token
|
3884
|
+
# wrong constant name track_files
|
3885
|
+
# wrong constant name tracked_files
|
3886
|
+
# wrong constant name use_merging
|
3887
|
+
# wrong constant name <static-init>
|
3888
|
+
# wrong constant name <static-init>
|
3889
|
+
# uninitialized constant SimpleCov::FileList::Elem
|
3890
|
+
# wrong constant name covered_lines
|
3891
|
+
# wrong constant name covered_percent
|
3892
|
+
# wrong constant name covered_percentages
|
3893
|
+
# wrong constant name covered_strength
|
3894
|
+
# wrong constant name least_covered_file
|
3895
|
+
# wrong constant name lines_of_code
|
3896
|
+
# wrong constant name missed_lines
|
3897
|
+
# wrong constant name never_lines
|
3898
|
+
# wrong constant name skipped_lines
|
3899
|
+
# wrong constant name <static-init>
|
3900
|
+
# wrong constant name filter_argument
|
3901
|
+
# wrong constant name initialize
|
3902
|
+
# wrong constant name matches?
|
3903
|
+
# wrong constant name passes?
|
3904
|
+
# wrong constant name <static-init>
|
3905
|
+
# wrong constant name build_filter
|
3906
|
+
# wrong constant name class_for_argument
|
3907
|
+
# wrong constant name <Class:HTMLFormatter>
|
3908
|
+
# wrong constant name <Class:MultiFormatter>
|
3909
|
+
# wrong constant name <Class:SimpleFormatter>
|
3910
|
+
# wrong constant name format
|
3911
|
+
# wrong constant name output_message
|
3912
|
+
# wrong constant name <static-init>
|
3913
|
+
# wrong constant name <Class:InstanceMethods>
|
3914
|
+
# wrong constant name format
|
3915
|
+
# wrong constant name <static-init>
|
3916
|
+
# wrong constant name <static-init>
|
3917
|
+
# wrong constant name []
|
3918
|
+
# wrong constant name new
|
3919
|
+
# wrong constant name format
|
3920
|
+
# wrong constant name <static-init>
|
3921
|
+
# wrong constant name <static-init>
|
3922
|
+
# wrong constant name <static-init>
|
3923
|
+
# wrong constant name last_run_path
|
3924
|
+
# wrong constant name read
|
3925
|
+
# wrong constant name write
|
3926
|
+
# wrong constant name classify
|
3927
|
+
# wrong constant name <static-init>
|
3928
|
+
# wrong constant name no_cov_line
|
3929
|
+
# wrong constant name no_cov_line?
|
3930
|
+
# wrong constant name whitespace_line?
|
3931
|
+
# uninitialized constant SimpleCov::Profiles::Elem
|
3932
|
+
# uninitialized constant SimpleCov::Profiles::K
|
3933
|
+
# uninitialized constant SimpleCov::Profiles::V
|
3934
|
+
# wrong constant name define
|
3935
|
+
# wrong constant name load
|
3936
|
+
# wrong constant name <static-init>
|
3937
|
+
# wrong constant name <static-init>
|
3938
|
+
# wrong constant name merge_file_coverage
|
3939
|
+
# wrong constant name merge_line_coverage
|
3940
|
+
# wrong constant name merge_results
|
3941
|
+
# wrong constant name merge_resultsets
|
3942
|
+
# wrong constant name matches?
|
3943
|
+
# wrong constant name <static-init>
|
3944
|
+
# wrong constant name command_name
|
3945
|
+
# wrong constant name command_name=
|
3946
|
+
# wrong constant name covered_lines
|
3947
|
+
# wrong constant name covered_percent
|
3948
|
+
# wrong constant name covered_percentages
|
3949
|
+
# wrong constant name covered_strength
|
3950
|
+
# wrong constant name created_at
|
3951
|
+
# wrong constant name created_at=
|
3952
|
+
# wrong constant name filenames
|
3953
|
+
# wrong constant name files
|
3954
|
+
# wrong constant name format!
|
3955
|
+
# wrong constant name groups
|
3956
|
+
# wrong constant name initialize
|
3957
|
+
# wrong constant name least_covered_file
|
3958
|
+
# wrong constant name missed_lines
|
3959
|
+
# wrong constant name original_result
|
3960
|
+
# wrong constant name source_files
|
3961
|
+
# wrong constant name to_hash
|
3962
|
+
# wrong constant name total_lines
|
3963
|
+
# wrong constant name <static-init>
|
3964
|
+
# wrong constant name from_hash
|
3965
|
+
# wrong constant name <static-init>
|
3966
|
+
# wrong constant name clear_resultset
|
3967
|
+
# wrong constant name merge_results
|
3968
|
+
# wrong constant name merged_result
|
3969
|
+
# wrong constant name results
|
3970
|
+
# wrong constant name resultset
|
3971
|
+
# wrong constant name resultset_path
|
3972
|
+
# wrong constant name resultset_writelock
|
3973
|
+
# wrong constant name store_result
|
3974
|
+
# wrong constant name stored_data
|
3975
|
+
# wrong constant name synchronize_resultset
|
3976
|
+
# wrong constant name <Class:Line>
|
3977
|
+
# wrong constant name build_lines
|
3978
|
+
# wrong constant name coverage
|
3979
|
+
# wrong constant name coverage_exceeding_source_warn
|
3980
|
+
# wrong constant name covered_lines
|
3981
|
+
# wrong constant name covered_percent
|
3982
|
+
# wrong constant name covered_strength
|
3983
|
+
# wrong constant name filename
|
3984
|
+
# wrong constant name initialize
|
3985
|
+
# wrong constant name line
|
3986
|
+
# wrong constant name lines
|
3987
|
+
# wrong constant name lines_of_code
|
3988
|
+
# wrong constant name lines_strength
|
3989
|
+
# wrong constant name missed_lines
|
3990
|
+
# wrong constant name never_lines
|
3991
|
+
# wrong constant name no_lines?
|
3992
|
+
# wrong constant name process_skipped_lines
|
3993
|
+
# wrong constant name project_filename
|
3994
|
+
# wrong constant name relevant_lines
|
3995
|
+
# wrong constant name skipped_lines
|
3996
|
+
# wrong constant name source
|
3997
|
+
# wrong constant name source_lines
|
3998
|
+
# wrong constant name src
|
3999
|
+
# wrong constant name coverage
|
4000
|
+
# wrong constant name covered?
|
4001
|
+
# wrong constant name initialize
|
4002
|
+
# wrong constant name line
|
4003
|
+
# wrong constant name line_number
|
4004
|
+
# wrong constant name missed?
|
4005
|
+
# wrong constant name never?
|
4006
|
+
# wrong constant name number
|
4007
|
+
# wrong constant name skipped
|
4008
|
+
# wrong constant name skipped!
|
4009
|
+
# wrong constant name skipped?
|
4010
|
+
# wrong constant name source
|
4011
|
+
# wrong constant name src
|
4012
|
+
# wrong constant name status
|
4013
|
+
# wrong constant name <static-init>
|
4014
|
+
# wrong constant name <static-init>
|
4015
|
+
# wrong constant name matches?
|
4016
|
+
# wrong constant name <static-init>
|
4017
|
+
# wrong constant name <static-init>
|
4018
|
+
# wrong constant name add_not_loaded_files
|
4019
|
+
# wrong constant name clear_result
|
4020
|
+
# wrong constant name exit_exception
|
4021
|
+
# wrong constant name exit_status_from_exception
|
4022
|
+
# wrong constant name filtered
|
4023
|
+
# wrong constant name final_result_process?
|
4024
|
+
# wrong constant name grouped
|
4025
|
+
# wrong constant name load_adapter
|
4026
|
+
# wrong constant name load_profile
|
4027
|
+
# wrong constant name pid
|
4028
|
+
# wrong constant name pid=
|
4029
|
+
# wrong constant name process_result
|
4030
|
+
# wrong constant name result
|
4031
|
+
# wrong constant name result?
|
4032
|
+
# wrong constant name result_exit_status
|
4033
|
+
# wrong constant name run_exit_tasks!
|
4034
|
+
# wrong constant name running
|
4035
|
+
# wrong constant name running=
|
4036
|
+
# wrong constant name set_exit_exception
|
4037
|
+
# wrong constant name start
|
4038
|
+
# wrong constant name usable?
|
4039
|
+
# wrong constant name wait_for_other_processes
|
4040
|
+
# wrong constant name write_last_run
|
4041
|
+
# wrong constant name def_delegator
|
4042
|
+
# wrong constant name def_delegators
|
4043
|
+
# wrong constant name def_single_delegator
|
4044
|
+
# wrong constant name def_single_delegators
|
4045
|
+
# wrong constant name delegate
|
4046
|
+
# wrong constant name single_delegate
|
4043
4047
|
# wrong constant name _dump
|
4044
4048
|
# wrong constant name clone
|
4045
4049
|
# wrong constant name dup
|
@@ -4144,9 +4148,10 @@
|
|
4144
4148
|
# wrong constant name <static-init>
|
4145
4149
|
# wrong constant name cyan
|
4146
4150
|
# wrong constant name emojify
|
4151
|
+
# wrong constant name init
|
4147
4152
|
# wrong constant name main
|
4148
4153
|
# wrong constant name make_step
|
4149
|
-
# wrong constant name
|
4154
|
+
# wrong constant name usage
|
4150
4155
|
# wrong constant name yellow
|
4151
4156
|
# wrong constant name <static-init>
|
4152
4157
|
# wrong constant name real_ancestors
|
@@ -4205,7 +4210,6 @@
|
|
4205
4210
|
# wrong constant name <static-init>
|
4206
4211
|
# wrong constant name main
|
4207
4212
|
# wrong constant name output_file
|
4208
|
-
# wrong constant name <static-init>
|
4209
4213
|
# uninitialized constant SortedSet::InspectKey
|
4210
4214
|
# Did you mean? SortedSet::InspectKey
|
4211
4215
|
# wrong constant name initialize
|
@@ -4234,6 +4238,7 @@
|
|
4234
4238
|
# undefined method `lines$1' for class `String'
|
4235
4239
|
# undefined method `ljust$1' for class `String'
|
4236
4240
|
# undefined method `match$2' for class `String'
|
4241
|
+
# undefined method `match?$2' for class `String'
|
4237
4242
|
# undefined method `prepend$1' for class `String'
|
4238
4243
|
# Did you mean? prepend
|
4239
4244
|
# prepended
|
@@ -4288,7 +4293,7 @@
|
|
4288
4293
|
# wrong constant name lines$1
|
4289
4294
|
# wrong constant name ljust$1
|
4290
4295
|
# wrong constant name match$2
|
4291
|
-
# wrong constant name match
|
4296
|
+
# wrong constant name match?$2
|
4292
4297
|
# wrong constant name prepend$1
|
4293
4298
|
# wrong constant name reverse!
|
4294
4299
|
# wrong constant name rindex$1
|
@@ -4500,18 +4505,6 @@
|
|
4500
4505
|
# wrong constant name enclose
|
4501
4506
|
# wrong constant name enclosed?
|
4502
4507
|
# wrong constant name list
|
4503
|
-
# undefined singleton method `at$2' for `Time'
|
4504
|
-
# undefined singleton method `gm$1' for `Time'
|
4505
|
-
# undefined singleton method `local$1' for `Time'
|
4506
|
-
# undefined singleton method `mktime$1' for `Time'
|
4507
|
-
# undefined singleton method `utc$1' for `Time'
|
4508
|
-
# undefined singleton method `zone_offset$1' for `Time'
|
4509
|
-
# wrong constant name at$2
|
4510
|
-
# wrong constant name gm$1
|
4511
|
-
# wrong constant name local$1
|
4512
|
-
# wrong constant name mktime$1
|
4513
|
-
# wrong constant name utc$1
|
4514
|
-
# wrong constant name zone_offset$1
|
4515
4508
|
# wrong constant name event
|
4516
4509
|
# wrong constant name decode
|
4517
4510
|
# wrong constant name encode
|