workos 0.2.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +2 -0
  3. data/.ruby-version +1 -1
  4. data/.semaphore/semaphore.yml +13 -6
  5. data/Gemfile.lock +6 -6
  6. data/README.md +1 -1
  7. data/lib/workos.rb +2 -0
  8. data/lib/workos/audit_trail.rb +0 -16
  9. data/lib/workos/client.rb +43 -4
  10. data/lib/workos/connection.rb +48 -0
  11. data/lib/workos/directory_sync.rb +128 -0
  12. data/lib/workos/profile.rb +6 -7
  13. data/lib/workos/sso.rb +48 -35
  14. data/lib/workos/types.rb +2 -2
  15. data/lib/workos/types/connection_struct.rb +15 -0
  16. data/lib/workos/types/profile_struct.rb +2 -3
  17. data/lib/workos/types/provider_enum.rb +0 -1
  18. data/lib/workos/version.rb +1 -1
  19. data/sorbet/rbi/hidden-definitions/errors.txt +1416 -321
  20. data/sorbet/rbi/hidden-definitions/hidden.rbi +2490 -597
  21. data/sorbet/rbi/sorbet-typed/lib/rainbow/all/rainbow.rbi +36 -14
  22. data/sorbet/rbi/todo.rbi +1 -6
  23. data/spec/lib/workos/directory_sync_spec.rb +139 -0
  24. data/spec/lib/workos/sso_spec.rb +50 -4
  25. data/spec/support/fixtures/vcr_cassettes/directory_sync/get_group.yml +62 -0
  26. data/spec/support/fixtures/vcr_cassettes/directory_sync/get_group_with_invalid_id.yml +62 -0
  27. data/spec/support/fixtures/vcr_cassettes/directory_sync/get_user.yml +62 -0
  28. data/spec/support/fixtures/vcr_cassettes/directory_sync/get_user_with_invalid_id.yml +62 -0
  29. data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories.yml +62 -0
  30. data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories_with_domain_param.yml +63 -0
  31. data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups.yml +64 -0
  32. data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups_with_directory_param.yml +62 -0
  33. data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users.yml +64 -0
  34. data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users_with_directory_param.yml +62 -0
  35. data/spec/support/fixtures/vcr_cassettes/sso/create_connection_with_invalid_source.yml +58 -0
  36. data/spec/support/fixtures/vcr_cassettes/sso/create_connection_with_valid_source.yml +63 -0
  37. data/workos.gemspec +14 -11
  38. metadata +35 -5
@@ -1,11 +1,11 @@
1
1
  # frozen_string_literal: true
2
- # typed: strict
3
-
2
+ # typed: strong
4
3
 
5
4
  module WorkOS
6
5
  # WorkOS believes strongly in typed languages,
7
6
  # so we're using Sorbet throughout this Ruby gem.
8
7
  module Types
8
+ require_relative 'types/connection_struct'
9
9
  require_relative 'types/profile_struct'
10
10
  require_relative 'types/provider_enum'
11
11
  end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+ # typed: strict
3
+
4
+ module WorkOS
5
+ module Types
6
+ # This ConnectionStruct acts as a typed interface
7
+ # for the Connection class
8
+ class ConnectionStruct < T::Struct
9
+ const :id, String
10
+ const :name, String
11
+ const :connection_type, String
12
+ const :domains, T::Array[T.untyped]
13
+ end
14
+ end
15
+ end
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  # typed: strict
3
3
 
4
-
5
4
  module WorkOS
6
5
  module Types
7
6
  # The ProfileStruct acts as a typed interface
@@ -9,8 +8,8 @@ module WorkOS
9
8
  class ProfileStruct < T::Struct
10
9
  const :id, String
11
10
  const :email, String
12
- const :first_name, String
13
- const :last_name, String
11
+ const :first_name, T.nilable(String)
12
+ const :last_name, T.nilable(String)
14
13
  const :connection_type, String
15
14
  const :idp_id, String
16
15
  end
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  # typed: strict
3
3
 
4
-
5
4
  module WorkOS
6
5
  module Types
7
6
  # The ProviderEnum is type-safe declarations of a
@@ -2,5 +2,5 @@
2
2
  # typed: strong
3
3
 
4
4
  module WorkOS
5
- VERSION = '0.2.2'
5
+ VERSION = '0.3.3'
6
6
  end
@@ -16,27 +16,8 @@
16
16
  # wrong constant name <RESERVED_103>
17
17
  # wrong constant name <RESERVED_104>
18
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
19
  # wrong constant name <RESERVED_10>
24
- # wrong constant name <RESERVED_110>
25
- # wrong constant name <RESERVED_111>
26
- # wrong constant name <RESERVED_112>
27
- # wrong constant name <RESERVED_113>
28
- # wrong constant name <RESERVED_114>
29
- # wrong constant name <RESERVED_115>
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
20
  # wrong constant name <RESERVED_11>
35
- # wrong constant name <RESERVED_120>
36
- # wrong constant name <RESERVED_121>
37
- # wrong constant name <RESERVED_122>
38
- # wrong constant name <RESERVED_123>
39
- # wrong constant name <RESERVED_124>
40
21
  # wrong constant name <RESERVED_12>
41
22
  # wrong constant name <RESERVED_13>
42
23
  # wrong constant name <RESERVED_14>
@@ -410,11 +391,15 @@
410
391
  # undefined method `connect_internal<defaultArg>1' for class `Addrinfo'
411
392
  # wrong constant name connect_internal<defaultArg>1
412
393
  # wrong constant name connect_internal
394
+ # undefined method `pack<defaultArg>1' for class `Array'
413
395
  # wrong constant name bsearch
414
396
  # wrong constant name bsearch_index
415
397
  # wrong constant name collect!
398
+ # wrong constant name deconstruct
416
399
  # wrong constant name dig
417
400
  # wrong constant name flatten!
401
+ # wrong constant name intersection
402
+ # wrong constant name pack<defaultArg>1
418
403
  # wrong constant name pack
419
404
  # wrong constant name place
420
405
  # wrong constant name replace
@@ -449,7 +434,7 @@
449
434
  # uninitialized constant Benchmark
450
435
  # uninitialized constant Benchmark
451
436
  # wrong constant name clone
452
- # wrong constant name new
437
+ # wrong constant name interpret_loosely
453
438
  # wrong constant name clone
454
439
  # wrong constant name irb
455
440
  # uninitialized constant Bundler::Dependency::TYPES
@@ -2475,18 +2460,231 @@
2475
2460
  # wrong constant name rectangular
2476
2461
  # uninitialized constant Configatron
2477
2462
  # uninitialized constant Configatron
2478
- # wrong constant name line_stub
2479
- # wrong constant name peek_result
2480
- # wrong constant name running?
2463
+ # wrong constant name <Class:JSON>
2464
+ # wrong constant name <Class:ParseError>
2481
2465
  # wrong constant name <Class:REXMLParser>
2466
+ # wrong constant name <Class:Util>
2482
2467
  # wrong constant name <Class:XML>
2483
2468
  # wrong constant name <static-init>
2469
+ # wrong constant name convert_json_to_yaml
2470
+ # wrong constant name format_dates
2471
+ # wrong constant name parse
2472
+ # wrong constant name parser_exceptions
2473
+ # wrong constant name unescape
2474
+ # wrong constant name <static-init>
2475
+ # wrong constant name <static-init>
2484
2476
  # wrong constant name parse
2477
+ # wrong constant name snake_case
2478
+ # wrong constant name to_xml_attributes
2479
+ # wrong constant name <static-init>
2485
2480
  # wrong constant name <static-init>
2486
2481
  # wrong constant name parse
2487
2482
  # wrong constant name parser
2488
2483
  # wrong constant name parser=
2489
2484
  # wrong constant name <static-init>
2485
+ # wrong constant name <Class:DRbArray>
2486
+ # wrong constant name <Class:DRbBadScheme>
2487
+ # wrong constant name <Class:DRbBadURI>
2488
+ # wrong constant name <Class:DRbConn>
2489
+ # wrong constant name <Class:DRbConnError>
2490
+ # wrong constant name <Class:DRbError>
2491
+ # wrong constant name <Class:DRbIdConv>
2492
+ # wrong constant name <Class:DRbMessage>
2493
+ # wrong constant name <Class:DRbObject>
2494
+ # wrong constant name <Class:DRbProtocol>
2495
+ # wrong constant name <Class:DRbRemoteError>
2496
+ # wrong constant name <Class:DRbServer>
2497
+ # wrong constant name <Class:DRbServerNotFound>
2498
+ # wrong constant name <Class:DRbTCPSocket>
2499
+ # wrong constant name <Class:DRbURIOption>
2500
+ # wrong constant name <Class:DRbUndumped>
2501
+ # wrong constant name <Class:DRbUnknown>
2502
+ # wrong constant name <Class:DRbUnknownError>
2503
+ # wrong constant name <Class:ThreadObject>
2504
+ # wrong constant name _dump
2505
+ # wrong constant name initialize
2506
+ # wrong constant name <static-init>
2507
+ # wrong constant name _load
2508
+ # wrong constant name <static-init>
2509
+ # wrong constant name <static-init>
2510
+ # wrong constant name alive?
2511
+ # wrong constant name close
2512
+ # wrong constant name initialize
2513
+ # wrong constant name send_message
2514
+ # wrong constant name uri
2515
+ # wrong constant name <static-init>
2516
+ # wrong constant name make_pool
2517
+ # wrong constant name open
2518
+ # wrong constant name stop_pool
2519
+ # wrong constant name <static-init>
2520
+ # wrong constant name <static-init>
2521
+ # wrong constant name to_id
2522
+ # wrong constant name to_obj
2523
+ # wrong constant name <static-init>
2524
+ # undefined method `dump<defaultArg>1' for class `DRb::DRbMessage'
2525
+ # wrong constant name dump<defaultArg>1
2526
+ # wrong constant name dump
2527
+ # wrong constant name initialize
2528
+ # wrong constant name load
2529
+ # wrong constant name recv_reply
2530
+ # wrong constant name recv_request
2531
+ # wrong constant name send_reply
2532
+ # wrong constant name send_request
2533
+ # wrong constant name <static-init>
2534
+ # undefined method `initialize<defaultArg>1' for class `DRb::DRbObject'
2535
+ # Did you mean? initialize_dup
2536
+ # undefined method `respond_to?<defaultArg>1' for class `DRb::DRbObject'
2537
+ # wrong constant name ==
2538
+ # wrong constant name __drbref
2539
+ # wrong constant name __drburi
2540
+ # wrong constant name _dump
2541
+ # wrong constant name eql?
2542
+ # wrong constant name initialize<defaultArg>1
2543
+ # wrong constant name initialize
2544
+ # wrong constant name method_missing
2545
+ # wrong constant name respond_to?<defaultArg>1
2546
+ # wrong constant name respond_to?
2547
+ # wrong constant name <static-init>
2548
+ # wrong constant name _load
2549
+ # wrong constant name new_with
2550
+ # wrong constant name new_with_uri
2551
+ # wrong constant name prepare_backtrace
2552
+ # wrong constant name with_friend
2553
+ # undefined singleton method `open<defaultArg>1' for `DRb::DRbProtocol'
2554
+ # undefined singleton method `open_server<defaultArg>1' for `DRb::DRbProtocol'
2555
+ # undefined singleton method `uri_option<defaultArg>1' for `DRb::DRbProtocol'
2556
+ # wrong constant name <static-init>
2557
+ # wrong constant name add_protocol
2558
+ # wrong constant name auto_load
2559
+ # wrong constant name open<defaultArg>1
2560
+ # wrong constant name open
2561
+ # wrong constant name open_server<defaultArg>1
2562
+ # wrong constant name open_server
2563
+ # wrong constant name uri_option<defaultArg>1
2564
+ # wrong constant name uri_option
2565
+ # wrong constant name initialize
2566
+ # wrong constant name reason
2567
+ # wrong constant name <static-init>
2568
+ # undefined method `initialize<defaultArg>1' for class `DRb::DRbServer'
2569
+ # Did you mean? initialize_dup
2570
+ # undefined method `initialize<defaultArg>2' for class `DRb::DRbServer'
2571
+ # Did you mean? initialize_dup
2572
+ # undefined method `initialize<defaultArg>3' for class `DRb::DRbServer'
2573
+ # Did you mean? initialize_dup
2574
+ # wrong constant name <Class:InvokeMethod>
2575
+ # wrong constant name <Class:InvokeMethod18Mixin>
2576
+ # wrong constant name alive?
2577
+ # wrong constant name check_insecure_method
2578
+ # wrong constant name config
2579
+ # wrong constant name front
2580
+ # wrong constant name here?
2581
+ # wrong constant name initialize<defaultArg>1
2582
+ # wrong constant name initialize<defaultArg>2
2583
+ # wrong constant name initialize<defaultArg>3
2584
+ # wrong constant name initialize
2585
+ # wrong constant name safe_level
2586
+ # wrong constant name stop_service
2587
+ # wrong constant name thread
2588
+ # wrong constant name to_id
2589
+ # wrong constant name to_obj
2590
+ # wrong constant name uri
2591
+ # wrong constant name verbose
2592
+ # wrong constant name verbose=
2593
+ # wrong constant name initialize
2594
+ # wrong constant name perform
2595
+ # wrong constant name <static-init>
2596
+ # wrong constant name block_yield
2597
+ # wrong constant name perform_with_block
2598
+ # wrong constant name <static-init>
2599
+ # undefined singleton method `make_config<defaultArg>1' for `DRb::DRbServer'
2600
+ # wrong constant name <static-init>
2601
+ # wrong constant name default_acl
2602
+ # wrong constant name default_argc_limit
2603
+ # wrong constant name default_id_conv
2604
+ # wrong constant name default_load_limit
2605
+ # wrong constant name default_safe_level
2606
+ # wrong constant name make_config<defaultArg>1
2607
+ # wrong constant name make_config
2608
+ # wrong constant name verbose
2609
+ # wrong constant name verbose=
2610
+ # wrong constant name <static-init>
2611
+ # undefined method `initialize<defaultArg>1' for class `DRb::DRbTCPSocket'
2612
+ # Did you mean? initialize_dup
2613
+ # wrong constant name accept
2614
+ # wrong constant name alive?
2615
+ # wrong constant name close
2616
+ # wrong constant name initialize<defaultArg>1
2617
+ # wrong constant name initialize
2618
+ # wrong constant name peeraddr
2619
+ # wrong constant name recv_reply
2620
+ # wrong constant name recv_request
2621
+ # wrong constant name send_reply
2622
+ # wrong constant name send_request
2623
+ # wrong constant name set_sockopt
2624
+ # wrong constant name shutdown
2625
+ # wrong constant name stream
2626
+ # wrong constant name uri
2627
+ # wrong constant name <static-init>
2628
+ # wrong constant name getservername
2629
+ # wrong constant name open
2630
+ # wrong constant name open_server
2631
+ # wrong constant name open_server_inaddr_any
2632
+ # wrong constant name parse_uri
2633
+ # wrong constant name uri_option
2634
+ # wrong constant name ==
2635
+ # wrong constant name eql?
2636
+ # wrong constant name initialize
2637
+ # wrong constant name option
2638
+ # wrong constant name <static-init>
2639
+ # wrong constant name _dump
2640
+ # wrong constant name <static-init>
2641
+ # wrong constant name _dump
2642
+ # wrong constant name buf
2643
+ # wrong constant name exception
2644
+ # wrong constant name initialize
2645
+ # wrong constant name name
2646
+ # wrong constant name reload
2647
+ # wrong constant name <static-init>
2648
+ # wrong constant name _load
2649
+ # wrong constant name _dump
2650
+ # wrong constant name initialize
2651
+ # wrong constant name unknown
2652
+ # wrong constant name <static-init>
2653
+ # wrong constant name _load
2654
+ # wrong constant name _execute
2655
+ # wrong constant name alive?
2656
+ # wrong constant name initialize
2657
+ # wrong constant name kill
2658
+ # wrong constant name method_missing
2659
+ # wrong constant name <static-init>
2660
+ # undefined singleton method `start_service<defaultArg>1' for `DRb'
2661
+ # undefined singleton method `start_service<defaultArg>2' for `DRb'
2662
+ # undefined singleton method `start_service<defaultArg>3' for `DRb'
2663
+ # wrong constant name <static-init>
2664
+ # wrong constant name config
2665
+ # wrong constant name current_server
2666
+ # wrong constant name fetch_server
2667
+ # wrong constant name front
2668
+ # wrong constant name here?
2669
+ # wrong constant name install_acl
2670
+ # wrong constant name install_id_conv
2671
+ # wrong constant name mutex
2672
+ # wrong constant name primary_server
2673
+ # wrong constant name primary_server=
2674
+ # wrong constant name regist_server
2675
+ # wrong constant name remove_server
2676
+ # wrong constant name start_service<defaultArg>1
2677
+ # wrong constant name start_service<defaultArg>2
2678
+ # wrong constant name start_service<defaultArg>3
2679
+ # wrong constant name start_service
2680
+ # wrong constant name stop_service
2681
+ # wrong constant name thread
2682
+ # wrong constant name to_id
2683
+ # wrong constant name to_obj
2684
+ # wrong constant name uri
2685
+ # wrong constant name <Class:Error>
2686
+ # wrong constant name infinite?
2687
+ # wrong constant name <static-init>
2490
2688
  # undefined method `initialize<defaultArg>1' for class `Date::Infinity'
2491
2689
  # Did you mean? initialize_dup
2492
2690
  # wrong constant name initialize<defaultArg>1
@@ -2519,6 +2717,8 @@
2519
2717
  # wrong constant name corrections
2520
2718
  # wrong constant name initialize
2521
2719
  # wrong constant name scopes
2720
+ # wrong constant name call
2721
+ # wrong constant name <static-init>
2522
2722
  # wrong constant name corrections
2523
2723
  # wrong constant name original_message
2524
2724
  # wrong constant name spell_checker
@@ -2536,13 +2736,28 @@
2536
2736
  # wrong constant name initialize
2537
2737
  # wrong constant name method_name
2538
2738
  # wrong constant name method_names
2739
+ # wrong constant name names_to_exclude
2539
2740
  # wrong constant name receiver
2540
2741
  # wrong constant name corrections
2541
2742
  # wrong constant name initialize
2743
+ # wrong constant name call
2744
+ # wrong constant name initialize
2745
+ # wrong constant name <static-init>
2542
2746
  # wrong constant name message_for
2543
2747
  # wrong constant name <static-init>
2748
+ # undefined method `initialize<defaultArg>1' for class `DidYouMean::TreeSpellChecker'
2749
+ # Did you mean? initialize_dup
2750
+ # undefined method `initialize<defaultArg>2' for class `DidYouMean::TreeSpellChecker'
2751
+ # Did you mean? initialize_dup
2752
+ # wrong constant name augment
2544
2753
  # wrong constant name correct
2754
+ # wrong constant name dictionary
2755
+ # wrong constant name dimensions
2756
+ # wrong constant name initialize<defaultArg>1
2757
+ # wrong constant name initialize<defaultArg>2
2545
2758
  # wrong constant name initialize
2759
+ # wrong constant name separator
2760
+ # wrong constant name <static-init>
2546
2761
  # wrong constant name corrections
2547
2762
  # wrong constant name cvar_names
2548
2763
  # wrong constant name initialize
@@ -2550,6 +2765,7 @@
2550
2765
  # wrong constant name lvar_names
2551
2766
  # wrong constant name method_names
2552
2767
  # wrong constant name name
2768
+ # wrong constant name correct_error
2553
2769
  # wrong constant name formatter
2554
2770
  # wrong constant name formatter=
2555
2771
  # wrong constant name children
@@ -2625,18 +2841,20 @@
2625
2841
  # wrong constant name chunk
2626
2842
  # wrong constant name chunk_while
2627
2843
  # wrong constant name each_entry
2844
+ # wrong constant name filter_map
2628
2845
  # wrong constant name grep_v
2629
2846
  # wrong constant name slice_after
2630
2847
  # wrong constant name slice_before
2631
2848
  # wrong constant name slice_when
2632
2849
  # wrong constant name sum
2850
+ # wrong constant name tally
2633
2851
  # wrong constant name to_set<defaultArg>1
2634
2852
  # wrong constant name to_set
2635
2853
  # wrong constant name uniq
2636
- # wrong constant name zip
2637
2854
  # wrong constant name +
2638
2855
  # wrong constant name <Class:ArithmeticSequence>
2639
2856
  # wrong constant name <Class:Chain>
2857
+ # wrong constant name <Class:Producer>
2640
2858
  # wrong constant name each_with_index
2641
2859
  # uninitialized constant Enumerator::ArithmeticSequence::Elem
2642
2860
  # wrong constant name begin
@@ -2652,8 +2870,13 @@
2652
2870
  # wrong constant name initialize
2653
2871
  # wrong constant name chunk
2654
2872
  # wrong constant name chunk_while
2873
+ # wrong constant name eager
2655
2874
  # wrong constant name force
2656
2875
  # wrong constant name slice_when
2876
+ # wrong constant name each
2877
+ # wrong constant name <static-init>
2878
+ # wrong constant name to_proc
2879
+ # wrong constant name produce
2657
2880
  # wrong constant name <static-init>
2658
2881
  # wrong constant name <static-init>
2659
2882
  # wrong constant name <static-init>
@@ -2706,13 +2929,17 @@
2706
2929
  # wrong constant name full_message
2707
2930
  # wrong constant name exception
2708
2931
  # wrong constant name to_tty?
2932
+ # uninitialized constant Exception2MessageMapper
2933
+ # uninitialized constant Exception2MessageMapper
2709
2934
  # wrong constant name <static-init>
2935
+ # wrong constant name initialize
2710
2936
  # wrong constant name resume
2711
2937
  # wrong constant name transfer
2712
2938
  # wrong constant name current
2713
2939
  # wrong constant name yield
2714
2940
  # wrong constant name size?
2715
2941
  # undefined singleton method `cleanpath<defaultArg>1' for `File'
2942
+ # wrong constant name absolute_path?
2716
2943
  # wrong constant name cleanpath<defaultArg>1
2717
2944
  # wrong constant name cleanpath
2718
2945
  # wrong constant name empty?
@@ -2764,17 +2991,101 @@
2764
2991
  # wrong constant name _valid_method?
2765
2992
  # wrong constant name debug
2766
2993
  # wrong constant name debug=
2994
+ # wrong constant name receiver
2995
+ # undefined method `garbage_collect<defaultArg>1' for module `GC'
2996
+ # undefined method `garbage_collect<defaultArg>2' for module `GC'
2997
+ # undefined method `garbage_collect<defaultArg>3' for module `GC'
2998
+ # wrong constant name garbage_collect<defaultArg>1
2999
+ # wrong constant name garbage_collect<defaultArg>2
3000
+ # wrong constant name garbage_collect<defaultArg>3
2767
3001
  # wrong constant name garbage_collect
3002
+ # undefined singleton method `latest_gc_info<defaultArg>1' for `GC'
3003
+ # undefined singleton method `start<defaultArg>3' for `GC'
3004
+ # undefined singleton method `stat<defaultArg>1' for `GC'
3005
+ # wrong constant name compact
3006
+ # wrong constant name latest_gc_info<defaultArg>1
2768
3007
  # wrong constant name latest_gc_info
3008
+ # wrong constant name start<defaultArg>3
3009
+ # wrong constant name stat<defaultArg>1
2769
3010
  # wrong constant name stress=
3011
+ # wrong constant name verify_compaction_references
2770
3012
  # wrong constant name verify_internal_consistency
2771
3013
  # wrong constant name verify_transient_heap_internal_consistency
3014
+ # wrong constant name <Class:S3URISigner>
3015
+ # wrong constant name <Class:SourceIndex>
3016
+ # wrong constant name <Class:UriParser>
3017
+ # wrong constant name <Class:UriParsing>
3018
+ # wrong constant name _deprecated_default_specifications_dir
3019
+ # undefined method `deprecate_option<defaultArg>1' for class `Gem::Command'
3020
+ # Did you mean? deprecate_constant
3021
+ # undefined method `deprecate_option<defaultArg>2' for class `Gem::Command'
3022
+ # Did you mean? deprecate_constant
3023
+ # undefined method `show_lookup_failure<defaultArg>2' for class `Gem::Command'
3024
+ # wrong constant name check_deprecated_options
3025
+ # wrong constant name deprecate_option<defaultArg>1
3026
+ # wrong constant name deprecate_option<defaultArg>2
3027
+ # wrong constant name deprecate_option
3028
+ # wrong constant name show_lookup_failure<defaultArg>2
3029
+ # wrong constant name <=>
3030
+ # wrong constant name identity
3031
+ # undefined method `_deprecated_find_gems_with_sources<defaultArg>1' for class `Gem::DependencyInstaller'
3032
+ # undefined method `_deprecated_find_spec_by_name_and_version<defaultArg>1' for class `Gem::DependencyInstaller'
3033
+ # undefined method `_deprecated_find_spec_by_name_and_version<defaultArg>2' for class `Gem::DependencyInstaller'
3034
+ # wrong constant name _deprecated_available_set_for
3035
+ # wrong constant name _deprecated_find_gems_with_sources<defaultArg>1
3036
+ # wrong constant name _deprecated_find_gems_with_sources
3037
+ # wrong constant name _deprecated_find_spec_by_name_and_version<defaultArg>1
3038
+ # wrong constant name _deprecated_find_spec_by_name_and_version<defaultArg>2
3039
+ # wrong constant name _deprecated_find_spec_by_name_and_version
3040
+ # wrong constant name _deprecated_unpack
3041
+ # wrong constant name package
3042
+ # wrong constant name gem
3043
+ # wrong constant name oct_or_256based
3044
+ # undefined singleton method `raw_spec<defaultArg>1' for `Gem::Package'
3045
+ # wrong constant name raw_spec<defaultArg>1
3046
+ # wrong constant name raw_spec
3047
+ # wrong constant name <Class:FetchError>
3048
+ # wrong constant name <Class:UnknownHostError>
3049
+ # wrong constant name _deprecated_fetch_size
3050
+ # wrong constant name s3_uri_signer
2772
3051
  # wrong constant name initialize
2773
3052
  # wrong constant name uri
2774
3053
  # wrong constant name uri=
2775
3054
  # wrong constant name <static-init>
2776
3055
  # wrong constant name <static-init>
3056
+ # wrong constant name default_prerelease
3057
+ # wrong constant name platform
2777
3058
  # uninitialized constant Gem::Resolver::Molinillo::DependencyGraph::Log::Elem
3059
+ # undefined method `sign<defaultArg>1' for class `Gem::S3URISigner'
3060
+ # wrong constant name <Class:ConfigurationError>
3061
+ # wrong constant name <Class:InstanceProfileError>
3062
+ # wrong constant name <Class:S3Config>
3063
+ # wrong constant name initialize
3064
+ # wrong constant name sign<defaultArg>1
3065
+ # wrong constant name sign
3066
+ # wrong constant name uri
3067
+ # wrong constant name uri=
3068
+ # wrong constant name initialize
3069
+ # wrong constant name <static-init>
3070
+ # wrong constant name initialize
3071
+ # wrong constant name <static-init>
3072
+ # uninitialized constant Gem::S3URISigner::S3Config::Elem
3073
+ # wrong constant name access_key_id
3074
+ # wrong constant name access_key_id=
3075
+ # wrong constant name region
3076
+ # wrong constant name region=
3077
+ # wrong constant name secret_access_key
3078
+ # wrong constant name secret_access_key=
3079
+ # wrong constant name security_token
3080
+ # wrong constant name security_token=
3081
+ # wrong constant name <static-init>
3082
+ # wrong constant name []
3083
+ # wrong constant name members
3084
+ # wrong constant name <static-init>
3085
+ # undefined method `typo_squatting?<defaultArg>1' for class `Gem::Source'
3086
+ # wrong constant name <=>
3087
+ # wrong constant name typo_squatting?<defaultArg>1
3088
+ # wrong constant name typo_squatting?
2778
3089
  # undefined method `add_spec<defaultArg>1' for class `Gem::SourceIndex'
2779
3090
  # undefined method `find_name<defaultArg>1' for class `Gem::SourceIndex'
2780
3091
  # undefined method `initialize<defaultArg>1' for class `Gem::SourceIndex'
@@ -2818,13 +3129,31 @@
2818
3129
  # wrong constant name from_installed_gems
2819
3130
  # wrong constant name installed_spec_directories
2820
3131
  # wrong constant name load_specification
3132
+ # wrong constant name <=>
3133
+ # uninitialized constant Gem::Specification::GENERICS
3134
+ # uninitialized constant Gem::Specification::GENERIC_CACHE
3135
+ # wrong constant name _deprecated_rubyforge_project=
3136
+ # undefined singleton method `default_stubs<defaultArg>1' for `Gem::Specification'
3137
+ # wrong constant name default_stubs<defaultArg>1
3138
+ # wrong constant name default_stubs
3139
+ # wrong constant name parse
3140
+ # wrong constant name parse!
3141
+ # wrong constant name <static-init>
3142
+ # wrong constant name <static-init>
3143
+ # wrong constant name correct_for_windows_path
3144
+ # wrong constant name add_to_load_path
3145
+ # wrong constant name default_specifications_dir
3146
+ # wrong constant name java_platform?
3147
+ # wrong constant name source_date_epoch
2821
3148
  # wrong constant name source_index
3149
+ # wrong constant name suffix_regexp
2822
3150
  # wrong constant name <
2823
3151
  # wrong constant name <=
2824
3152
  # wrong constant name >
2825
3153
  # wrong constant name >=
2826
3154
  # wrong constant name compact
2827
3155
  # wrong constant name compact!
3156
+ # wrong constant name deconstruct_keys
2828
3157
  # wrong constant name default_proc
2829
3158
  # wrong constant name default_proc=
2830
3159
  # wrong constant name fetch_values
@@ -2836,9 +3165,10 @@
2836
3165
  # wrong constant name to_proc
2837
3166
  # wrong constant name transform_keys
2838
3167
  # wrong constant name transform_keys!
2839
- # wrong constant name transform_values
2840
3168
  # wrong constant name transform_values!
2841
3169
  # wrong constant name update
3170
+ # wrong constant name ruby2_keywords_hash
3171
+ # wrong constant name ruby2_keywords_hash?
2842
3172
  # wrong constant name try_convert
2843
3173
  # wrong constant name <Class:CompareHashes>
2844
3174
  # wrong constant name <Class:LcsCompareArrays>
@@ -2897,17 +3227,29 @@
2897
3227
  # undefined method `read_nonblock<defaultArg>1' for class `IO'
2898
3228
  # undefined method `read_nonblock<defaultArg>2' for class `IO'
2899
3229
  # undefined method `write_nonblock<defaultArg>1' for class `IO'
3230
+ # wrong constant name <Class:ConsoleMode>
2900
3231
  # wrong constant name beep
3232
+ # wrong constant name check_winsize_changed
3233
+ # wrong constant name clear_screen
3234
+ # wrong constant name console_mode
3235
+ # wrong constant name console_mode=
2901
3236
  # wrong constant name cooked
2902
3237
  # wrong constant name cooked!
2903
3238
  # wrong constant name cursor
2904
3239
  # wrong constant name cursor=
3240
+ # wrong constant name cursor_down
3241
+ # wrong constant name cursor_left
3242
+ # wrong constant name cursor_right
3243
+ # wrong constant name cursor_up
2905
3244
  # wrong constant name echo=
2906
3245
  # wrong constant name echo?
3246
+ # wrong constant name erase_line
3247
+ # wrong constant name erase_screen
2907
3248
  # wrong constant name external_encoding
2908
3249
  # wrong constant name getch
2909
3250
  # wrong constant name getpass
2910
3251
  # wrong constant name goto
3252
+ # wrong constant name goto_column
2911
3253
  # wrong constant name iflush
2912
3254
  # wrong constant name ioflush
2913
3255
  # wrong constant name noecho
@@ -2925,6 +3267,9 @@
2925
3267
  # wrong constant name read_nonblock<defaultArg>1
2926
3268
  # wrong constant name read_nonblock<defaultArg>2
2927
3269
  # wrong constant name ready?
3270
+ # wrong constant name scroll_backward
3271
+ # wrong constant name scroll_forward
3272
+ # wrong constant name set_encoding_by_bom
2928
3273
  # wrong constant name wait
2929
3274
  # wrong constant name wait_readable
2930
3275
  # wrong constant name wait_writable
@@ -2932,6 +3277,10 @@
2932
3277
  # wrong constant name winsize=
2933
3278
  # wrong constant name write_nonblock<defaultArg>1
2934
3279
  # wrong constant name write_nonblock
3280
+ # wrong constant name echo=
3281
+ # wrong constant name raw
3282
+ # wrong constant name raw!
3283
+ # wrong constant name <static-init>
2935
3284
  # wrong constant name console
2936
3285
  # wrong constant name foreach
2937
3286
  # undefined method `initialize<defaultArg>1' for class `IPAddr'
@@ -3016,7 +3365,6 @@
3016
3365
  # wrong constant name itself
3017
3366
  # wrong constant name object_id
3018
3367
  # wrong constant name pretty_inspect
3019
- # wrong constant name respond_to?
3020
3368
  # wrong constant name then
3021
3369
  # wrong constant name yield_self
3022
3370
  # wrong constant name at_exit
@@ -3025,10 +3373,19 @@
3025
3373
  # wrong constant name path
3026
3374
  # wrong constant name exit_value
3027
3375
  # wrong constant name reason
3376
+ # undefined method `initialize<defaultArg>8' for class `Logger'
3377
+ # Did you mean? initialize_dup
3378
+ # wrong constant name debug!
3379
+ # wrong constant name error!
3380
+ # wrong constant name fatal!
3381
+ # wrong constant name info!
3382
+ # wrong constant name initialize<defaultArg>8
3383
+ # wrong constant name warn!
3028
3384
  # wrong constant name restore
3029
3385
  # uninitialized constant MessagePack
3030
3386
  # uninitialized constant MessagePack
3031
3387
  # wrong constant name class_name
3388
+ # wrong constant name const_source_location
3032
3389
  # wrong constant name context
3033
3390
  # wrong constant name deprecate_constant
3034
3391
  # wrong constant name describe
@@ -3043,11 +3400,20 @@
3043
3400
  # wrong constant name xcontext
3044
3401
  # wrong constant name xdescribe
3045
3402
  # wrong constant name used_modules
3046
- # uninitialized constant Monitor::EXCEPTION_IMMEDIATE
3047
- # uninitialized constant Monitor::EXCEPTION_NEVER
3048
3403
  # wrong constant name enter
3049
3404
  # wrong constant name exit
3405
+ # wrong constant name mon_check_owner
3406
+ # wrong constant name mon_enter
3407
+ # wrong constant name mon_exit
3408
+ # wrong constant name mon_locked?
3409
+ # wrong constant name mon_owned?
3410
+ # wrong constant name mon_synchronize
3411
+ # wrong constant name mon_try_enter
3412
+ # wrong constant name new_cond
3413
+ # wrong constant name synchronize
3050
3414
  # wrong constant name try_enter
3415
+ # wrong constant name try_mon_enter
3416
+ # wrong constant name wait_for_cond
3051
3417
  # wrong constant name initialize
3052
3418
  # wrong constant name mon_enter
3053
3419
  # wrong constant name mon_exit
@@ -3066,6 +3432,8 @@
3066
3432
  # wrong constant name wait
3067
3433
  # wrong constant name wait_until
3068
3434
  # wrong constant name wait_while
3435
+ # uninitialized constant MonitorMixin::ConditionVariable::Timeout
3436
+ # uninitialized constant MonitorMixin::ConditionVariable::Timeout
3069
3437
  # wrong constant name extend_object
3070
3438
  # uninitialized constant Mutex_m
3071
3439
  # uninitialized constant Mutex_m
@@ -3096,6 +3464,8 @@
3096
3464
  # Did you mean? TypeError
3097
3465
  # uninitialized constant Net::FTPTempError
3098
3466
  # Did you mean? TypeError
3467
+ # wrong constant name ipaddr
3468
+ # wrong constant name ipaddr=
3099
3469
  # wrong constant name max_retries
3100
3470
  # wrong constant name max_retries=
3101
3471
  # wrong constant name max_version
@@ -3189,6 +3559,7 @@
3189
3559
  # wrong constant name io
3190
3560
  # wrong constant name <static-init>
3191
3561
  # wrong constant name to_i
3562
+ # wrong constant name <static-init>
3192
3563
  # wrong constant name args
3193
3564
  # wrong constant name private_call?
3194
3565
  # undefined method `to_yaml<defaultArg>1' for class `Object'
@@ -3209,10 +3580,20 @@
3209
3580
  # wrong constant name length
3210
3581
  # wrong constant name size
3211
3582
  # wrong constant name values
3583
+ # undefined singleton method `garbage_collect<defaultArg>1' for `ObjectSpace'
3584
+ # undefined singleton method `garbage_collect<defaultArg>2' for `ObjectSpace'
3585
+ # undefined singleton method `garbage_collect<defaultArg>3' for `ObjectSpace'
3212
3586
  # wrong constant name count_objects
3213
3587
  # wrong constant name define_finalizer
3588
+ # wrong constant name garbage_collect<defaultArg>1
3589
+ # wrong constant name garbage_collect<defaultArg>2
3590
+ # wrong constant name garbage_collect<defaultArg>3
3214
3591
  # wrong constant name garbage_collect
3215
3592
  # wrong constant name undefine_finalizer
3593
+ # uninitialized constant Open3
3594
+ # Did you mean? OpenURI
3595
+ # uninitialized constant Open3
3596
+ # Did you mean? OpenURI
3216
3597
  # wrong constant name indefinite_length
3217
3598
  # wrong constant name indefinite_length=
3218
3599
  # wrong constant name +@
@@ -3260,6 +3641,13 @@
3260
3641
  # wrong constant name ==
3261
3642
  # wrong constant name to_der
3262
3643
  # wrong constant name fips_mode
3644
+ # wrong constant name additional_message
3645
+ # wrong constant name get_candidates
3646
+ # undefined method `initialize<defaultArg>1' for class `OptionParser::ParseError'
3647
+ # Did you mean? initialize_dup
3648
+ # wrong constant name additional
3649
+ # wrong constant name additional=
3650
+ # wrong constant name initialize<defaultArg>1
3263
3651
  # uninitialized constant Opus
3264
3652
  # uninitialized constant Opus
3265
3653
  # wrong constant name <Class:Break>
@@ -3337,6 +3725,7 @@
3337
3725
  # wrong constant name <Class:MaxNumparamStack>
3338
3726
  # wrong constant name <Class:Meta>
3339
3727
  # wrong constant name <Class:Rewriter>
3728
+ # wrong constant name <Class:Ruby24>
3340
3729
  # wrong constant name <Class:Source>
3341
3730
  # wrong constant name <Class:StaticEnvironment>
3342
3731
  # wrong constant name <Class:SyntaxError>
@@ -3467,8 +3856,8 @@
3467
3856
  # Parser::Base::Racc_Runtime_Core_Revision_R
3468
3857
  # Parser::Base::Racc_Runtime_Revision
3469
3858
  # Parser::Base::Racc_Runtime_Core_Version
3470
- # Parser::Base::Racc_Runtime_Core_Version_C
3471
3859
  # Parser::Base::Racc_Runtime_Core_Version_R
3860
+ # Parser::Base::Racc_Runtime_Core_Version_C
3472
3861
  # Parser::Base::Racc_Runtime_Version
3473
3862
  # Parser::Base::Racc_Runtime_Core_Id_C
3474
3863
  # uninitialized constant Parser::Base::Racc_Runtime_Core_Revision_C
@@ -3487,8 +3876,8 @@
3487
3876
  # uninitialized constant Parser::Base::Racc_Runtime_Core_Version
3488
3877
  # Did you mean? Parser::Base::Racc_Runtime_Revision
3489
3878
  # Parser::Base::Racc_Runtime_Core_Revision
3490
- # Parser::Base::Racc_Runtime_Core_Version_C
3491
3879
  # Parser::Base::Racc_Runtime_Core_Version_R
3880
+ # Parser::Base::Racc_Runtime_Core_Version_C
3492
3881
  # Parser::Base::Racc_Runtime_Core_Revision_C
3493
3882
  # Parser::Base::Racc_Runtime_Core_Revision_R
3494
3883
  # Parser::Base::Racc_Runtime_Version
@@ -3998,6 +4387,503 @@
3998
4387
  # wrong constant name rewrite
3999
4388
  # wrong constant name wrap
4000
4389
  # wrong constant name <static-init>
4390
+ # uninitialized constant Parser::Ruby24::Racc_Main_Parsing_Routine
4391
+ # uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Id_C
4392
+ # Did you mean? Parser::Ruby24::Racc_Runtime_Core_Version_C
4393
+ # uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Revision
4394
+ # Did you mean? Parser::Ruby24::Racc_Runtime_Core_Revision_C
4395
+ # Parser::Ruby24::Racc_Runtime_Core_Revision_R
4396
+ # Parser::Ruby24::Racc_Runtime_Revision
4397
+ # Parser::Ruby24::Racc_Runtime_Core_Version
4398
+ # Parser::Ruby24::Racc_Runtime_Core_Version_R
4399
+ # Parser::Ruby24::Racc_Runtime_Core_Version_C
4400
+ # Parser::Ruby24::Racc_Runtime_Version
4401
+ # Parser::Ruby24::Racc_Runtime_Core_Id_C
4402
+ # uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Revision_C
4403
+ # Did you mean? Parser::Ruby24::Racc_Runtime_Core_Revision_R
4404
+ # Parser::Ruby24::Racc_Runtime_Revision
4405
+ # Parser::Ruby24::Racc_Runtime_Core_Version_C
4406
+ # Parser::Ruby24::Racc_Runtime_Core_Version_R
4407
+ # Parser::Ruby24::Racc_Runtime_Core_Version
4408
+ # Parser::Ruby24::Racc_Runtime_Core_Id_C
4409
+ # uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Revision_R
4410
+ # Did you mean? Parser::Ruby24::Racc_Runtime_Core_Revision_C
4411
+ # Parser::Ruby24::Racc_Runtime_Revision
4412
+ # Parser::Ruby24::Racc_Runtime_Core_Version_C
4413
+ # Parser::Ruby24::Racc_Runtime_Core_Version_R
4414
+ # Parser::Ruby24::Racc_Runtime_Core_Version
4415
+ # uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Version
4416
+ # Did you mean? Parser::Ruby24::Racc_Runtime_Revision
4417
+ # Parser::Ruby24::Racc_Runtime_Core_Revision
4418
+ # Parser::Ruby24::Racc_Runtime_Core_Version_R
4419
+ # Parser::Ruby24::Racc_Runtime_Core_Version_C
4420
+ # Parser::Ruby24::Racc_Runtime_Core_Revision_C
4421
+ # Parser::Ruby24::Racc_Runtime_Core_Revision_R
4422
+ # Parser::Ruby24::Racc_Runtime_Version
4423
+ # Parser::Ruby24::Racc_Runtime_Core_Id_C
4424
+ # uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Version_C
4425
+ # Did you mean? Parser::Ruby24::Racc_Runtime_Core_Version_R
4426
+ # Parser::Ruby24::Racc_Runtime_Core_Revision_C
4427
+ # Parser::Ruby24::Racc_Runtime_Core_Revision_R
4428
+ # Parser::Ruby24::Racc_Runtime_Revision
4429
+ # Parser::Ruby24::Racc_Runtime_Core_Revision
4430
+ # Parser::Ruby24::Racc_Runtime_Version
4431
+ # Parser::Ruby24::Racc_Runtime_Core_Id_C
4432
+ # uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Version_R
4433
+ # Did you mean? Parser::Ruby24::Racc_Runtime_Core_Version_C
4434
+ # Parser::Ruby24::Racc_Runtime_Core_Revision_C
4435
+ # Parser::Ruby24::Racc_Runtime_Core_Revision_R
4436
+ # Parser::Ruby24::Racc_Runtime_Revision
4437
+ # Parser::Ruby24::Racc_Runtime_Core_Revision
4438
+ # Parser::Ruby24::Racc_Runtime_Version
4439
+ # Parser::Ruby24::Racc_Runtime_Core_Id_C
4440
+ # uninitialized constant Parser::Ruby24::Racc_Runtime_Revision
4441
+ # Did you mean? Parser::Ruby24::Racc_Runtime_Version
4442
+ # Parser::Ruby24::Racc_Runtime_Core_Version
4443
+ # Parser::Ruby24::Racc_Runtime_Core_Revision
4444
+ # uninitialized constant Parser::Ruby24::Racc_Runtime_Type
4445
+ # uninitialized constant Parser::Ruby24::Racc_Runtime_Version
4446
+ # Did you mean? Parser::Ruby24::Racc_Runtime_Revision
4447
+ # Parser::Ruby24::Racc_Runtime_Core_Version
4448
+ # uninitialized constant Parser::Ruby24::Racc_YY_Parse_Method
4449
+ # wrong constant name _reduce_10
4450
+ # wrong constant name _reduce_100
4451
+ # wrong constant name _reduce_101
4452
+ # wrong constant name _reduce_102
4453
+ # wrong constant name _reduce_103
4454
+ # wrong constant name _reduce_104
4455
+ # wrong constant name _reduce_105
4456
+ # wrong constant name _reduce_106
4457
+ # wrong constant name _reduce_107
4458
+ # wrong constant name _reduce_108
4459
+ # wrong constant name _reduce_11
4460
+ # wrong constant name _reduce_110
4461
+ # wrong constant name _reduce_111
4462
+ # wrong constant name _reduce_112
4463
+ # wrong constant name _reduce_118
4464
+ # wrong constant name _reduce_12
4465
+ # wrong constant name _reduce_122
4466
+ # wrong constant name _reduce_123
4467
+ # wrong constant name _reduce_124
4468
+ # wrong constant name _reduce_13
4469
+ # wrong constant name _reduce_14
4470
+ # wrong constant name _reduce_16
4471
+ # wrong constant name _reduce_17
4472
+ # wrong constant name _reduce_18
4473
+ # wrong constant name _reduce_19
4474
+ # wrong constant name _reduce_196
4475
+ # wrong constant name _reduce_197
4476
+ # wrong constant name _reduce_198
4477
+ # wrong constant name _reduce_199
4478
+ # wrong constant name _reduce_2
4479
+ # wrong constant name _reduce_20
4480
+ # wrong constant name _reduce_200
4481
+ # wrong constant name _reduce_201
4482
+ # wrong constant name _reduce_202
4483
+ # wrong constant name _reduce_203
4484
+ # wrong constant name _reduce_204
4485
+ # wrong constant name _reduce_205
4486
+ # wrong constant name _reduce_206
4487
+ # wrong constant name _reduce_207
4488
+ # wrong constant name _reduce_208
4489
+ # wrong constant name _reduce_209
4490
+ # wrong constant name _reduce_21
4491
+ # wrong constant name _reduce_210
4492
+ # wrong constant name _reduce_211
4493
+ # wrong constant name _reduce_212
4494
+ # wrong constant name _reduce_213
4495
+ # wrong constant name _reduce_214
4496
+ # wrong constant name _reduce_215
4497
+ # wrong constant name _reduce_216
4498
+ # wrong constant name _reduce_217
4499
+ # wrong constant name _reduce_218
4500
+ # wrong constant name _reduce_219
4501
+ # wrong constant name _reduce_22
4502
+ # wrong constant name _reduce_220
4503
+ # wrong constant name _reduce_221
4504
+ # wrong constant name _reduce_222
4505
+ # wrong constant name _reduce_223
4506
+ # wrong constant name _reduce_224
4507
+ # wrong constant name _reduce_225
4508
+ # wrong constant name _reduce_226
4509
+ # wrong constant name _reduce_227
4510
+ # wrong constant name _reduce_228
4511
+ # wrong constant name _reduce_229
4512
+ # wrong constant name _reduce_23
4513
+ # wrong constant name _reduce_230
4514
+ # wrong constant name _reduce_231
4515
+ # wrong constant name _reduce_232
4516
+ # wrong constant name _reduce_233
4517
+ # wrong constant name _reduce_234
4518
+ # wrong constant name _reduce_235
4519
+ # wrong constant name _reduce_236
4520
+ # wrong constant name _reduce_24
4521
+ # wrong constant name _reduce_241
4522
+ # wrong constant name _reduce_242
4523
+ # wrong constant name _reduce_244
4524
+ # wrong constant name _reduce_245
4525
+ # wrong constant name _reduce_246
4526
+ # wrong constant name _reduce_248
4527
+ # wrong constant name _reduce_25
4528
+ # wrong constant name _reduce_251
4529
+ # wrong constant name _reduce_252
4530
+ # wrong constant name _reduce_253
4531
+ # wrong constant name _reduce_254
4532
+ # wrong constant name _reduce_255
4533
+ # wrong constant name _reduce_256
4534
+ # wrong constant name _reduce_257
4535
+ # wrong constant name _reduce_258
4536
+ # wrong constant name _reduce_259
4537
+ # wrong constant name _reduce_26
4538
+ # wrong constant name _reduce_260
4539
+ # wrong constant name _reduce_261
4540
+ # wrong constant name _reduce_262
4541
+ # wrong constant name _reduce_263
4542
+ # wrong constant name _reduce_264
4543
+ # wrong constant name _reduce_265
4544
+ # wrong constant name _reduce_266
4545
+ # wrong constant name _reduce_267
4546
+ # wrong constant name _reduce_269
4547
+ # wrong constant name _reduce_27
4548
+ # wrong constant name _reduce_270
4549
+ # wrong constant name _reduce_271
4550
+ # wrong constant name _reduce_28
4551
+ # wrong constant name _reduce_282
4552
+ # wrong constant name _reduce_283
4553
+ # wrong constant name _reduce_284
4554
+ # wrong constant name _reduce_285
4555
+ # wrong constant name _reduce_286
4556
+ # wrong constant name _reduce_287
4557
+ # wrong constant name _reduce_288
4558
+ # wrong constant name _reduce_289
4559
+ # wrong constant name _reduce_290
4560
+ # wrong constant name _reduce_291
4561
+ # wrong constant name _reduce_292
4562
+ # wrong constant name _reduce_293
4563
+ # wrong constant name _reduce_294
4564
+ # wrong constant name _reduce_295
4565
+ # wrong constant name _reduce_296
4566
+ # wrong constant name _reduce_297
4567
+ # wrong constant name _reduce_298
4568
+ # wrong constant name _reduce_299
4569
+ # wrong constant name _reduce_3
4570
+ # wrong constant name _reduce_30
4571
+ # wrong constant name _reduce_300
4572
+ # wrong constant name _reduce_301
4573
+ # wrong constant name _reduce_303
4574
+ # wrong constant name _reduce_304
4575
+ # wrong constant name _reduce_305
4576
+ # wrong constant name _reduce_306
4577
+ # wrong constant name _reduce_307
4578
+ # wrong constant name _reduce_308
4579
+ # wrong constant name _reduce_309
4580
+ # wrong constant name _reduce_31
4581
+ # wrong constant name _reduce_310
4582
+ # wrong constant name _reduce_311
4583
+ # wrong constant name _reduce_312
4584
+ # wrong constant name _reduce_313
4585
+ # wrong constant name _reduce_314
4586
+ # wrong constant name _reduce_315
4587
+ # wrong constant name _reduce_316
4588
+ # wrong constant name _reduce_317
4589
+ # wrong constant name _reduce_318
4590
+ # wrong constant name _reduce_319
4591
+ # wrong constant name _reduce_32
4592
+ # wrong constant name _reduce_320
4593
+ # wrong constant name _reduce_321
4594
+ # wrong constant name _reduce_322
4595
+ # wrong constant name _reduce_323
4596
+ # wrong constant name _reduce_324
4597
+ # wrong constant name _reduce_325
4598
+ # wrong constant name _reduce_326
4599
+ # wrong constant name _reduce_327
4600
+ # wrong constant name _reduce_328
4601
+ # wrong constant name _reduce_329
4602
+ # wrong constant name _reduce_330
4603
+ # wrong constant name _reduce_331
4604
+ # wrong constant name _reduce_332
4605
+ # wrong constant name _reduce_336
4606
+ # wrong constant name _reduce_34
4607
+ # wrong constant name _reduce_340
4608
+ # wrong constant name _reduce_342
4609
+ # wrong constant name _reduce_345
4610
+ # wrong constant name _reduce_346
4611
+ # wrong constant name _reduce_347
4612
+ # wrong constant name _reduce_348
4613
+ # wrong constant name _reduce_35
4614
+ # wrong constant name _reduce_350
4615
+ # wrong constant name _reduce_351
4616
+ # wrong constant name _reduce_352
4617
+ # wrong constant name _reduce_353
4618
+ # wrong constant name _reduce_354
4619
+ # wrong constant name _reduce_355
4620
+ # wrong constant name _reduce_356
4621
+ # wrong constant name _reduce_357
4622
+ # wrong constant name _reduce_358
4623
+ # wrong constant name _reduce_359
4624
+ # wrong constant name _reduce_36
4625
+ # wrong constant name _reduce_360
4626
+ # wrong constant name _reduce_361
4627
+ # wrong constant name _reduce_362
4628
+ # wrong constant name _reduce_363
4629
+ # wrong constant name _reduce_364
4630
+ # wrong constant name _reduce_365
4631
+ # wrong constant name _reduce_366
4632
+ # wrong constant name _reduce_367
4633
+ # wrong constant name _reduce_368
4634
+ # wrong constant name _reduce_37
4635
+ # wrong constant name _reduce_370
4636
+ # wrong constant name _reduce_371
4637
+ # wrong constant name _reduce_372
4638
+ # wrong constant name _reduce_373
4639
+ # wrong constant name _reduce_374
4640
+ # wrong constant name _reduce_375
4641
+ # wrong constant name _reduce_376
4642
+ # wrong constant name _reduce_377
4643
+ # wrong constant name _reduce_379
4644
+ # wrong constant name _reduce_38
4645
+ # wrong constant name _reduce_380
4646
+ # wrong constant name _reduce_381
4647
+ # wrong constant name _reduce_382
4648
+ # wrong constant name _reduce_383
4649
+ # wrong constant name _reduce_384
4650
+ # wrong constant name _reduce_385
4651
+ # wrong constant name _reduce_386
4652
+ # wrong constant name _reduce_387
4653
+ # wrong constant name _reduce_388
4654
+ # wrong constant name _reduce_39
4655
+ # wrong constant name _reduce_390
4656
+ # wrong constant name _reduce_391
4657
+ # wrong constant name _reduce_392
4658
+ # wrong constant name _reduce_393
4659
+ # wrong constant name _reduce_394
4660
+ # wrong constant name _reduce_395
4661
+ # wrong constant name _reduce_396
4662
+ # wrong constant name _reduce_397
4663
+ # wrong constant name _reduce_398
4664
+ # wrong constant name _reduce_399
4665
+ # wrong constant name _reduce_4
4666
+ # wrong constant name _reduce_40
4667
+ # wrong constant name _reduce_400
4668
+ # wrong constant name _reduce_401
4669
+ # wrong constant name _reduce_402
4670
+ # wrong constant name _reduce_403
4671
+ # wrong constant name _reduce_404
4672
+ # wrong constant name _reduce_405
4673
+ # wrong constant name _reduce_406
4674
+ # wrong constant name _reduce_407
4675
+ # wrong constant name _reduce_408
4676
+ # wrong constant name _reduce_409
4677
+ # wrong constant name _reduce_41
4678
+ # wrong constant name _reduce_410
4679
+ # wrong constant name _reduce_411
4680
+ # wrong constant name _reduce_412
4681
+ # wrong constant name _reduce_413
4682
+ # wrong constant name _reduce_414
4683
+ # wrong constant name _reduce_415
4684
+ # wrong constant name _reduce_416
4685
+ # wrong constant name _reduce_417
4686
+ # wrong constant name _reduce_418
4687
+ # wrong constant name _reduce_419
4688
+ # wrong constant name _reduce_420
4689
+ # wrong constant name _reduce_421
4690
+ # wrong constant name _reduce_422
4691
+ # wrong constant name _reduce_423
4692
+ # wrong constant name _reduce_424
4693
+ # wrong constant name _reduce_426
4694
+ # wrong constant name _reduce_427
4695
+ # wrong constant name _reduce_428
4696
+ # wrong constant name _reduce_43
4697
+ # wrong constant name _reduce_431
4698
+ # wrong constant name _reduce_433
4699
+ # wrong constant name _reduce_438
4700
+ # wrong constant name _reduce_439
4701
+ # wrong constant name _reduce_440
4702
+ # wrong constant name _reduce_441
4703
+ # wrong constant name _reduce_442
4704
+ # wrong constant name _reduce_443
4705
+ # wrong constant name _reduce_444
4706
+ # wrong constant name _reduce_445
4707
+ # wrong constant name _reduce_446
4708
+ # wrong constant name _reduce_447
4709
+ # wrong constant name _reduce_448
4710
+ # wrong constant name _reduce_449
4711
+ # wrong constant name _reduce_450
4712
+ # wrong constant name _reduce_451
4713
+ # wrong constant name _reduce_452
4714
+ # wrong constant name _reduce_453
4715
+ # wrong constant name _reduce_454
4716
+ # wrong constant name _reduce_455
4717
+ # wrong constant name _reduce_456
4718
+ # wrong constant name _reduce_457
4719
+ # wrong constant name _reduce_458
4720
+ # wrong constant name _reduce_459
4721
+ # wrong constant name _reduce_46
4722
+ # wrong constant name _reduce_460
4723
+ # wrong constant name _reduce_461
4724
+ # wrong constant name _reduce_462
4725
+ # wrong constant name _reduce_463
4726
+ # wrong constant name _reduce_464
4727
+ # wrong constant name _reduce_465
4728
+ # wrong constant name _reduce_466
4729
+ # wrong constant name _reduce_467
4730
+ # wrong constant name _reduce_468
4731
+ # wrong constant name _reduce_469
4732
+ # wrong constant name _reduce_47
4733
+ # wrong constant name _reduce_470
4734
+ # wrong constant name _reduce_471
4735
+ # wrong constant name _reduce_472
4736
+ # wrong constant name _reduce_474
4737
+ # wrong constant name _reduce_475
4738
+ # wrong constant name _reduce_476
4739
+ # wrong constant name _reduce_477
4740
+ # wrong constant name _reduce_478
4741
+ # wrong constant name _reduce_479
4742
+ # wrong constant name _reduce_48
4743
+ # wrong constant name _reduce_480
4744
+ # wrong constant name _reduce_481
4745
+ # wrong constant name _reduce_482
4746
+ # wrong constant name _reduce_483
4747
+ # wrong constant name _reduce_484
4748
+ # wrong constant name _reduce_485
4749
+ # wrong constant name _reduce_486
4750
+ # wrong constant name _reduce_487
4751
+ # wrong constant name _reduce_488
4752
+ # wrong constant name _reduce_489
4753
+ # wrong constant name _reduce_49
4754
+ # wrong constant name _reduce_490
4755
+ # wrong constant name _reduce_491
4756
+ # wrong constant name _reduce_492
4757
+ # wrong constant name _reduce_493
4758
+ # wrong constant name _reduce_494
4759
+ # wrong constant name _reduce_495
4760
+ # wrong constant name _reduce_496
4761
+ # wrong constant name _reduce_497
4762
+ # wrong constant name _reduce_498
4763
+ # wrong constant name _reduce_499
4764
+ # wrong constant name _reduce_5
4765
+ # wrong constant name _reduce_500
4766
+ # wrong constant name _reduce_501
4767
+ # wrong constant name _reduce_502
4768
+ # wrong constant name _reduce_503
4769
+ # wrong constant name _reduce_504
4770
+ # wrong constant name _reduce_505
4771
+ # wrong constant name _reduce_506
4772
+ # wrong constant name _reduce_507
4773
+ # wrong constant name _reduce_508
4774
+ # wrong constant name _reduce_509
4775
+ # wrong constant name _reduce_510
4776
+ # wrong constant name _reduce_511
4777
+ # wrong constant name _reduce_512
4778
+ # wrong constant name _reduce_513
4779
+ # wrong constant name _reduce_514
4780
+ # wrong constant name _reduce_515
4781
+ # wrong constant name _reduce_516
4782
+ # wrong constant name _reduce_517
4783
+ # wrong constant name _reduce_518
4784
+ # wrong constant name _reduce_519
4785
+ # wrong constant name _reduce_520
4786
+ # wrong constant name _reduce_521
4787
+ # wrong constant name _reduce_522
4788
+ # wrong constant name _reduce_523
4789
+ # wrong constant name _reduce_524
4790
+ # wrong constant name _reduce_525
4791
+ # wrong constant name _reduce_526
4792
+ # wrong constant name _reduce_527
4793
+ # wrong constant name _reduce_528
4794
+ # wrong constant name _reduce_529
4795
+ # wrong constant name _reduce_530
4796
+ # wrong constant name _reduce_532
4797
+ # wrong constant name _reduce_533
4798
+ # wrong constant name _reduce_534
4799
+ # wrong constant name _reduce_535
4800
+ # wrong constant name _reduce_536
4801
+ # wrong constant name _reduce_537
4802
+ # wrong constant name _reduce_538
4803
+ # wrong constant name _reduce_539
4804
+ # wrong constant name _reduce_540
4805
+ # wrong constant name _reduce_541
4806
+ # wrong constant name _reduce_542
4807
+ # wrong constant name _reduce_543
4808
+ # wrong constant name _reduce_544
4809
+ # wrong constant name _reduce_545
4810
+ # wrong constant name _reduce_546
4811
+ # wrong constant name _reduce_549
4812
+ # wrong constant name _reduce_55
4813
+ # wrong constant name _reduce_550
4814
+ # wrong constant name _reduce_551
4815
+ # wrong constant name _reduce_552
4816
+ # wrong constant name _reduce_553
4817
+ # wrong constant name _reduce_554
4818
+ # wrong constant name _reduce_555
4819
+ # wrong constant name _reduce_556
4820
+ # wrong constant name _reduce_559
4821
+ # wrong constant name _reduce_56
4822
+ # wrong constant name _reduce_560
4823
+ # wrong constant name _reduce_563
4824
+ # wrong constant name _reduce_564
4825
+ # wrong constant name _reduce_565
4826
+ # wrong constant name _reduce_567
4827
+ # wrong constant name _reduce_568
4828
+ # wrong constant name _reduce_57
4829
+ # wrong constant name _reduce_570
4830
+ # wrong constant name _reduce_571
4831
+ # wrong constant name _reduce_572
4832
+ # wrong constant name _reduce_573
4833
+ # wrong constant name _reduce_574
4834
+ # wrong constant name _reduce_575
4835
+ # wrong constant name _reduce_588
4836
+ # wrong constant name _reduce_589
4837
+ # wrong constant name _reduce_59
4838
+ # wrong constant name _reduce_594
4839
+ # wrong constant name _reduce_595
4840
+ # wrong constant name _reduce_599
4841
+ # wrong constant name _reduce_6
4842
+ # wrong constant name _reduce_60
4843
+ # wrong constant name _reduce_603
4844
+ # wrong constant name _reduce_61
4845
+ # wrong constant name _reduce_62
4846
+ # wrong constant name _reduce_63
4847
+ # wrong constant name _reduce_64
4848
+ # wrong constant name _reduce_65
4849
+ # wrong constant name _reduce_66
4850
+ # wrong constant name _reduce_67
4851
+ # wrong constant name _reduce_68
4852
+ # wrong constant name _reduce_69
4853
+ # wrong constant name _reduce_70
4854
+ # wrong constant name _reduce_71
4855
+ # wrong constant name _reduce_72
4856
+ # wrong constant name _reduce_73
4857
+ # wrong constant name _reduce_75
4858
+ # wrong constant name _reduce_76
4859
+ # wrong constant name _reduce_77
4860
+ # wrong constant name _reduce_78
4861
+ # wrong constant name _reduce_79
4862
+ # wrong constant name _reduce_8
4863
+ # wrong constant name _reduce_80
4864
+ # wrong constant name _reduce_81
4865
+ # wrong constant name _reduce_82
4866
+ # wrong constant name _reduce_83
4867
+ # wrong constant name _reduce_85
4868
+ # wrong constant name _reduce_86
4869
+ # wrong constant name _reduce_87
4870
+ # wrong constant name _reduce_88
4871
+ # wrong constant name _reduce_89
4872
+ # wrong constant name _reduce_9
4873
+ # wrong constant name _reduce_90
4874
+ # wrong constant name _reduce_91
4875
+ # wrong constant name _reduce_92
4876
+ # wrong constant name _reduce_93
4877
+ # wrong constant name _reduce_94
4878
+ # wrong constant name _reduce_95
4879
+ # wrong constant name _reduce_96
4880
+ # wrong constant name _reduce_97
4881
+ # wrong constant name _reduce_98
4882
+ # wrong constant name _reduce_99
4883
+ # wrong constant name _reduce_none
4884
+ # wrong constant name default_encoding
4885
+ # wrong constant name version
4886
+ # wrong constant name <static-init>
4001
4887
  # wrong constant name <Class:Buffer>
4002
4888
  # wrong constant name <Class:Comment>
4003
4889
  # wrong constant name <Class:Map>
@@ -4315,14 +5201,13 @@
4315
5201
  # wrong constant name <static-init>
4316
5202
  # wrong constant name <static-init>
4317
5203
  # uninitialized constant PatchedStringIO::Elem
5204
+ # uninitialized constant PatchedStringIO::VERSION
4318
5205
  # wrong constant name orig_read_nonblock
4319
5206
  # wrong constant name read_nonblock
4320
5207
  # wrong constant name <static-init>
4321
5208
  # undefined method `children<defaultArg>1' for class `Pathname'
4322
- # undefined method `each_child<defaultArg>1' for class `Pathname'
4323
5209
  # undefined method `find<defaultArg>1' for class `Pathname'
4324
5210
  # wrong constant name children<defaultArg>1
4325
- # wrong constant name each_child<defaultArg>1
4326
5211
  # wrong constant name empty?
4327
5212
  # wrong constant name find<defaultArg>1
4328
5213
  # wrong constant name fnmatch?
@@ -4332,6 +5217,7 @@
4332
5217
  # wrong constant name ===
4333
5218
  # wrong constant name >>
4334
5219
  # wrong constant name clone
5220
+ # wrong constant name ruby2_keywords
4335
5221
  # wrong constant name yield
4336
5222
  # uninitialized constant Proc0
4337
5223
  # uninitialized constant Proc0
@@ -5342,6 +6228,8 @@
5342
6228
  # undefined method `wrap<defaultArg>1' for module `RDoc::Text'
5343
6229
  # wrong constant name expand_tabs
5344
6230
  # wrong constant name flush_left
6231
+ # wrong constant name language
6232
+ # wrong constant name language=
5345
6233
  # wrong constant name markup
5346
6234
  # wrong constant name normalize_comment
5347
6235
  # wrong constant name parse<defaultArg>1
@@ -5387,7 +6275,6 @@
5387
6275
  # wrong constant name <Class:Security>
5388
6276
  # wrong constant name <Class:Source>
5389
6277
  # wrong constant name <Class:SourceFactory>
5390
- # wrong constant name <Class:SyncEnumerator>
5391
6278
  # wrong constant name <Class:Text>
5392
6279
  # wrong constant name <Class:UndefinedNamespaceException>
5393
6280
  # wrong constant name <Class:Validation>
@@ -6163,13 +7050,6 @@
6163
7050
  # wrong constant name <static-init>
6164
7051
  # wrong constant name <static-init>
6165
7052
  # wrong constant name create_from
6166
- # uninitialized constant REXML::SyncEnumerator::Elem
6167
- # Did you mean? REXML::Element
6168
- # wrong constant name each
6169
- # wrong constant name initialize
6170
- # wrong constant name length
6171
- # wrong constant name size
6172
- # wrong constant name <static-init>
6173
7053
  # undefined method `indent_text<defaultArg>1' for class `REXML::Text'
6174
7054
  # undefined method `indent_text<defaultArg>2' for class `REXML::Text'
6175
7055
  # undefined method `indent_text<defaultArg>3' for class `REXML::Text'
@@ -6373,19 +7253,6 @@
6373
7253
  # wrong constant name attributes
6374
7254
  # wrong constant name attributes=
6375
7255
  # wrong constant name <static-init>
6376
- # wrong constant name <Class:Core>
6377
- # wrong constant name <Class:Expectations>
6378
- # wrong constant name <Class:Matchers>
6379
- # wrong constant name <Class:Mocks>
6380
- # wrong constant name <Class:Support>
6381
- # wrong constant name <Class:Example>
6382
- # wrong constant name <Class:Formatters>
6383
- # wrong constant name <Class:MockingAdapters>
6384
- # wrong constant name <Class:SyntaxHighlighter>
6385
- # wrong constant name <Class:ExpectationTarget>
6386
- # wrong constant name <Class:AliasedNegatedMatcher>
6387
- # wrong constant name <Class:BuiltIn>
6388
- # wrong constant name <Class:BaseMatcher>
6389
7256
  # wrong constant name <Class:CallerFilter>
6390
7257
  # wrong constant name <Class:Core>
6391
7258
  # wrong constant name <Class:ExampleGroups>
@@ -6402,6 +7269,7 @@
6402
7269
  # wrong constant name first_non_rspec_line
6403
7270
  # wrong constant name <Class:AnonymousExampleGroup>
6404
7271
  # wrong constant name <Class:BacktraceFormatter>
7272
+ # wrong constant name <Class:Bisect>
6405
7273
  # wrong constant name <Class:Configuration>
6406
7274
  # wrong constant name <Class:ConfigurationOptions>
6407
7275
  # wrong constant name <Class:DSL>
@@ -6409,6 +7277,9 @@
6409
7277
  # wrong constant name <Class:DidYouMean>
6410
7278
  # wrong constant name <Class:Example>
6411
7279
  # wrong constant name <Class:ExampleGroup>
7280
+ # wrong constant name <Class:ExampleStatusDumper>
7281
+ # wrong constant name <Class:ExampleStatusMerger>
7282
+ # wrong constant name <Class:ExampleStatusParser>
6412
7283
  # wrong constant name <Class:ExampleStatusPersister>
6413
7284
  # wrong constant name <Class:FilterManager>
6414
7285
  # wrong constant name <Class:FilterRules>
@@ -6466,6 +7337,28 @@
6466
7337
  # wrong constant name inclusion_patterns
6467
7338
  # wrong constant name inclusion_patterns=
6468
7339
  # wrong constant name <static-init>
7340
+ # wrong constant name <Class:BisectFailedError>
7341
+ # wrong constant name <Class:Channel>
7342
+ # wrong constant name <Class:ExampleSetDescriptor>
7343
+ # wrong constant name <Class:Notifier>
7344
+ # wrong constant name <static-init>
7345
+ # wrong constant name for_failed_spec_run
7346
+ # wrong constant name close
7347
+ # wrong constant name receive
7348
+ # wrong constant name send
7349
+ # wrong constant name <static-init>
7350
+ # uninitialized constant RSpec::Core::Bisect::ExampleSetDescriptor::Elem
7351
+ # wrong constant name all_example_ids
7352
+ # wrong constant name all_example_ids=
7353
+ # wrong constant name failed_example_ids
7354
+ # wrong constant name failed_example_ids=
7355
+ # wrong constant name <static-init>
7356
+ # wrong constant name []
7357
+ # wrong constant name members
7358
+ # wrong constant name initialize
7359
+ # wrong constant name publish
7360
+ # wrong constant name <static-init>
7361
+ # wrong constant name <static-init>
6469
7362
  # undefined method `add_formatter<defaultArg>1' for class `RSpec::Core::Configuration'
6470
7363
  # undefined method `add_setting<defaultArg>1' for class `RSpec::Core::Configuration'
6471
7364
  # undefined method `after<defaultArg>1' for class `RSpec::Core::Configuration'
@@ -6817,6 +7710,7 @@
6817
7710
  # wrong constant name pending?
6818
7711
  # wrong constant name reporter
6819
7712
  # wrong constant name rerun_argument
7713
+ # wrong constant name ruby2_keywords
6820
7714
  # wrong constant name run
6821
7715
  # wrong constant name skip
6822
7716
  # wrong constant name skipped?
@@ -6917,6 +7811,18 @@
6917
7811
  # wrong constant name xexample
6918
7812
  # wrong constant name xit
6919
7813
  # wrong constant name xspecify
7814
+ # wrong constant name dump
7815
+ # wrong constant name initialize
7816
+ # wrong constant name <static-init>
7817
+ # wrong constant name dump
7818
+ # wrong constant name initialize
7819
+ # wrong constant name merge
7820
+ # wrong constant name <static-init>
7821
+ # wrong constant name merge
7822
+ # wrong constant name initialize
7823
+ # wrong constant name parse
7824
+ # wrong constant name <static-init>
7825
+ # wrong constant name parse
6920
7826
  # wrong constant name initialize
6921
7827
  # wrong constant name persist
6922
7828
  # wrong constant name <static-init>
@@ -6981,6 +7887,7 @@
6981
7887
  # wrong constant name <Class:FallbackMessageFormatter>
6982
7888
  # wrong constant name <Class:Helpers>
6983
7889
  # wrong constant name <Class:HtmlFormatter>
7890
+ # wrong constant name <Class:HtmlPrinter>
6984
7891
  # wrong constant name <Class:JsonFormatter>
6985
7892
  # wrong constant name <Class:Loader>
6986
7893
  # wrong constant name <Class:ProfileFormatter>
@@ -7042,7 +7949,7 @@
7042
7949
  # wrong constant name puts
7043
7950
  # wrong constant name summarize
7044
7951
  # wrong constant name <static-init>
7045
- # uninitialized constant #<Class:0x00007fab76185c58>::Elem
7952
+ # uninitialized constant #<Class:0x00007fe3b0c69ff8>::Elem
7046
7953
  # wrong constant name initialize
7047
7954
  # wrong constant name too_many_warnings_message
7048
7955
  # wrong constant name type
@@ -7060,7 +7967,7 @@
7060
7967
  # wrong constant name puts
7061
7968
  # wrong constant name summarize
7062
7969
  # wrong constant name <static-init>
7063
- # uninitialized constant #<Class:0x00007fab7617c1f8>::Elem
7970
+ # uninitialized constant #<Class:0x00007fe3b0c703d0>::Elem
7064
7971
  # wrong constant name initialize
7065
7972
  # wrong constant name too_many_warnings_message
7066
7973
  # wrong constant name type
@@ -7131,6 +8038,21 @@
7131
8038
  # wrong constant name example_started
7132
8039
  # wrong constant name start_dump
7133
8040
  # wrong constant name <static-init>
8041
+ # wrong constant name flush
8042
+ # wrong constant name initialize
8043
+ # wrong constant name make_example_group_header_red
8044
+ # wrong constant name make_example_group_header_yellow
8045
+ # wrong constant name make_header_red
8046
+ # wrong constant name make_header_yellow
8047
+ # wrong constant name move_progress
8048
+ # wrong constant name print_example_failed
8049
+ # wrong constant name print_example_group_end
8050
+ # wrong constant name print_example_group_start
8051
+ # wrong constant name print_example_passed
8052
+ # wrong constant name print_example_pending
8053
+ # wrong constant name print_html_start
8054
+ # wrong constant name print_summary
8055
+ # wrong constant name <static-init>
7134
8056
  # wrong constant name dump_profile
7135
8057
  # wrong constant name dump_profile_slowest_example_groups
7136
8058
  # wrong constant name dump_profile_slowest_examples
@@ -7214,6 +8136,7 @@
7214
8136
  # wrong constant name compare_by_identity?
7215
8137
  # wrong constant name count
7216
8138
  # wrong constant name cycle
8139
+ # wrong constant name deconstruct_keys
7217
8140
  # wrong constant name default
7218
8141
  # wrong constant name default=
7219
8142
  # wrong constant name default_proc
@@ -7239,6 +8162,7 @@
7239
8162
  # wrong constant name fetch_values
7240
8163
  # wrong constant name filter
7241
8164
  # wrong constant name filter!
8165
+ # wrong constant name filter_map
7242
8166
  # wrong constant name find
7243
8167
  # wrong constant name find_all
7244
8168
  # wrong constant name find_index
@@ -7294,6 +8218,7 @@
7294
8218
  # wrong constant name sum
7295
8219
  # wrong constant name take
7296
8220
  # wrong constant name take_while
8221
+ # wrong constant name tally
7297
8222
  # wrong constant name to_a
7298
8223
  # wrong constant name to_h
7299
8224
  # wrong constant name to_hash
@@ -7583,7 +8508,7 @@
7583
8508
  # wrong constant name <static-init>
7584
8509
  # wrong constant name wrap
7585
8510
  # wrong constant name <static-init>
7586
- # uninitialized constant #<Class:0x00007fab47868db0>::Elem
8511
+ # uninitialized constant #<Class:0x00007fe3b0a3b178>::Elem
7587
8512
  # wrong constant name <static-init>
7588
8513
  # uninitialized constant RSpec::Core::Notifications::PendingExampleFixedNotification::Elem
7589
8514
  # wrong constant name <static-init>
@@ -7750,6 +8675,7 @@
7750
8675
  # wrong constant name rewind
7751
8676
  # wrong constant name seek
7752
8677
  # wrong constant name set_encoding
8678
+ # wrong constant name set_encoding_by_bom
7753
8679
  # wrong constant name stat
7754
8680
  # wrong constant name sync
7755
8681
  # wrong constant name sync=
@@ -8347,7 +9273,14 @@
8347
9273
  # wrong constant name <Class:BePredicate>
8348
9274
  # wrong constant name <Class:BeTruthy>
8349
9275
  # wrong constant name <Class:BeWithin>
9276
+ # wrong constant name <Class:CaptureStderr>
9277
+ # wrong constant name <Class:CaptureStdout>
9278
+ # wrong constant name <Class:CaptureStreamToTempfile>
8350
9279
  # wrong constant name <Class:Change>
9280
+ # wrong constant name <Class:ChangeDetails>
9281
+ # wrong constant name <Class:ChangeFromValue>
9282
+ # wrong constant name <Class:ChangeRelatively>
9283
+ # wrong constant name <Class:ChangeToValue>
8351
9284
  # wrong constant name <Class:Compound>
8352
9285
  # wrong constant name <Class:ContainExactly>
8353
9286
  # wrong constant name <Class:Cover>
@@ -8361,16 +9294,20 @@
8361
9294
  # wrong constant name <Class:Include>
8362
9295
  # wrong constant name <Class:Match>
8363
9296
  # wrong constant name <Class:NegativeOperatorMatcher>
9297
+ # wrong constant name <Class:NullCapture>
8364
9298
  # wrong constant name <Class:OperatorMatcher>
8365
9299
  # wrong constant name <Class:Output>
8366
9300
  # wrong constant name <Class:PositiveOperatorMatcher>
8367
9301
  # wrong constant name <Class:RaiseError>
9302
+ # wrong constant name <Class:ReliableMatchData>
8368
9303
  # wrong constant name <Class:RespondTo>
8369
9304
  # wrong constant name <Class:Satisfy>
9305
+ # wrong constant name <Class:SpecificValuesChange>
8370
9306
  # wrong constant name <Class:StartOrEndWith>
8371
9307
  # wrong constant name <Class:StartWith>
8372
9308
  # wrong constant name <Class:ThrowSymbol>
8373
9309
  # wrong constant name <Class:YieldControl>
9310
+ # wrong constant name <Class:YieldProbe>
8374
9311
  # wrong constant name <Class:YieldSuccessiveArgs>
8375
9312
  # wrong constant name <Class:YieldWithArgs>
8376
9313
  # wrong constant name <Class:YieldWithNoArgs>
@@ -8447,6 +9384,12 @@
8447
9384
  # wrong constant name of
8448
9385
  # wrong constant name percent_of
8449
9386
  # wrong constant name <static-init>
9387
+ # wrong constant name <static-init>
9388
+ # wrong constant name capture
9389
+ # wrong constant name <static-init>
9390
+ # wrong constant name capture
9391
+ # wrong constant name capture
9392
+ # wrong constant name <static-init>
8450
9393
  # undefined method `initialize<defaultArg>1' for class `RSpec::Matchers::BuiltIn::Change'
8451
9394
  # Did you mean? initialize_dup
8452
9395
  # undefined method `initialize<defaultArg>2' for class `RSpec::Matchers::BuiltIn::Change'
@@ -8463,6 +9406,34 @@
8463
9406
  # wrong constant name matches?
8464
9407
  # wrong constant name to
8465
9408
  # wrong constant name <static-init>
9409
+ # undefined method `initialize<defaultArg>1' for class `RSpec::Matchers::BuiltIn::ChangeDetails'
9410
+ # Did you mean? initialize_dup
9411
+ # undefined method `initialize<defaultArg>2' for class `RSpec::Matchers::BuiltIn::ChangeDetails'
9412
+ # Did you mean? initialize_dup
9413
+ # wrong constant name actual_after
9414
+ # wrong constant name actual_delta
9415
+ # wrong constant name changed?
9416
+ # wrong constant name initialize<defaultArg>1
9417
+ # wrong constant name initialize<defaultArg>2
9418
+ # wrong constant name initialize
9419
+ # wrong constant name perform_change
9420
+ # wrong constant name value_representation
9421
+ # wrong constant name <static-init>
9422
+ # uninitialized constant RSpec::Matchers::BuiltIn::ChangeFromValue::UNDEFINED
9423
+ # wrong constant name does_not_match?
9424
+ # wrong constant name initialize
9425
+ # wrong constant name to
9426
+ # wrong constant name <static-init>
9427
+ # uninitialized constant RSpec::Matchers::BuiltIn::ChangeRelatively::UNDEFINED
9428
+ # wrong constant name does_not_match?
9429
+ # wrong constant name initialize
9430
+ # wrong constant name matches?
9431
+ # wrong constant name <static-init>
9432
+ # uninitialized constant RSpec::Matchers::BuiltIn::ChangeToValue::UNDEFINED
9433
+ # wrong constant name does_not_match?
9434
+ # wrong constant name from
9435
+ # wrong constant name initialize
9436
+ # wrong constant name <static-init>
8466
9437
  # wrong constant name <Class:And>
8467
9438
  # wrong constant name <Class:NestedEvaluator>
8468
9439
  # wrong constant name <Class:Or>
@@ -8500,7 +9471,7 @@
8500
9471
  # wrong constant name <static-init>
8501
9472
  # wrong constant name worse_than?
8502
9473
  # wrong constant name +
8503
- # uninitialized constant #<Class:0x00007fab66a8b920>::Elem
9474
+ # uninitialized constant #<Class:0x00007fe3c831b308>::Elem
8504
9475
  # wrong constant name candidate?
8505
9476
  # wrong constant name ideal?
8506
9477
  # wrong constant name indeterminate_actual_indexes
@@ -8561,6 +9532,8 @@
8561
9532
  # wrong constant name <static-init>
8562
9533
  # wrong constant name __delegate_operator
8563
9534
  # wrong constant name <static-init>
9535
+ # wrong constant name <static-init>
9536
+ # wrong constant name capture
8564
9537
  # wrong constant name !=
8565
9538
  # wrong constant name !~
8566
9539
  # wrong constant name <
@@ -8608,6 +9581,11 @@
8608
9581
  # wrong constant name supports_block_expectations?
8609
9582
  # wrong constant name with_message
8610
9583
  # wrong constant name <static-init>
9584
+ # wrong constant name captures
9585
+ # wrong constant name initialize
9586
+ # wrong constant name match_data
9587
+ # wrong constant name names
9588
+ # wrong constant name <static-init>
8611
9589
  # uninitialized constant RSpec::Matchers::BuiltIn::RespondTo::UNDEFINED
8612
9590
  # wrong constant name and_any_keywords
8613
9591
  # wrong constant name and_keywords
@@ -8628,6 +9606,10 @@
8628
9606
  # wrong constant name initialize
8629
9607
  # wrong constant name matches?
8630
9608
  # wrong constant name <static-init>
9609
+ # uninitialized constant RSpec::Matchers::BuiltIn::SpecificValuesChange::UNDEFINED
9610
+ # wrong constant name initialize
9611
+ # wrong constant name matches?
9612
+ # wrong constant name <static-init>
8631
9613
  # uninitialized constant RSpec::Matchers::BuiltIn::StartOrEndWith::UNDEFINED
8632
9614
  # wrong constant name initialize
8633
9615
  # wrong constant name <static-init>
@@ -8660,6 +9642,20 @@
8660
9642
  # wrong constant name times
8661
9643
  # wrong constant name twice
8662
9644
  # wrong constant name <static-init>
9645
+ # wrong constant name assert_used!
9646
+ # wrong constant name assert_valid_expect_block!
9647
+ # wrong constant name has_block?
9648
+ # wrong constant name initialize
9649
+ # wrong constant name num_yields
9650
+ # wrong constant name num_yields=
9651
+ # wrong constant name probe
9652
+ # wrong constant name single_yield_args
9653
+ # wrong constant name to_proc
9654
+ # wrong constant name yielded_args
9655
+ # wrong constant name yielded_args=
9656
+ # wrong constant name yielded_once?
9657
+ # wrong constant name <static-init>
9658
+ # wrong constant name probe
8663
9659
  # uninitialized constant RSpec::Matchers::BuiltIn::YieldSuccessiveArgs::UNDEFINED
8664
9660
  # wrong constant name does_not_match?
8665
9661
  # wrong constant name initialize
@@ -9174,11 +10170,17 @@
9174
10170
  # wrong constant name <static-init>
9175
10171
  # wrong constant name patch!
9176
10172
  # wrong constant name unpatch!
10173
+ # wrong constant name <Class:ExpectationCustomization>
9177
10174
  # wrong constant name <Class:HaveReceived>
9178
10175
  # wrong constant name <Class:Matcher>
9179
10176
  # wrong constant name <Class:Receive>
9180
10177
  # wrong constant name <Class:ReceiveMessageChain>
9181
10178
  # wrong constant name <Class:ReceiveMessages>
10179
+ # wrong constant name block
10180
+ # wrong constant name block=
10181
+ # wrong constant name initialize
10182
+ # wrong constant name playback_onto
10183
+ # wrong constant name <static-init>
9182
10184
  # wrong constant name at_least
9183
10185
  # wrong constant name at_most
9184
10186
  # wrong constant name description
@@ -10056,7 +11058,6 @@
10056
11058
  # wrong constant name <static-init>
10057
11059
  # wrong constant name <=>
10058
11060
  # wrong constant name <static-init>
10059
- # wrong constant name instance
10060
11061
  # wrong constant name <static-init>
10061
11062
  # undefined method `ext<defaultArg>1' for class `Rake::FileList'
10062
11063
  # undefined method `pathmap<defaultArg>1' for class `Rake::FileList'
@@ -10091,6 +11092,7 @@
10091
11092
  # wrong constant name concat
10092
11093
  # wrong constant name count
10093
11094
  # wrong constant name cycle
11095
+ # wrong constant name deconstruct
10094
11096
  # wrong constant name delete
10095
11097
  # wrong constant name delete_at
10096
11098
  # wrong constant name delete_if
@@ -10119,6 +11121,7 @@
10119
11121
  # wrong constant name fill
10120
11122
  # wrong constant name filter
10121
11123
  # wrong constant name filter!
11124
+ # wrong constant name filter_map
10122
11125
  # wrong constant name find
10123
11126
  # wrong constant name find_all
10124
11127
  # wrong constant name find_index
@@ -10139,6 +11142,7 @@
10139
11142
  # wrong constant name inject
10140
11143
  # wrong constant name insert
10141
11144
  # wrong constant name inspect
11145
+ # wrong constant name intersection
10142
11146
  # wrong constant name is_a?
10143
11147
  # wrong constant name join
10144
11148
  # wrong constant name keep_if
@@ -10201,6 +11205,7 @@
10201
11205
  # wrong constant name sum
10202
11206
  # wrong constant name take
10203
11207
  # wrong constant name take_while
11208
+ # wrong constant name tally
10204
11209
  # wrong constant name to_a
10205
11210
  # wrong constant name to_ary
10206
11211
  # wrong constant name to_h
@@ -10293,7 +11298,6 @@
10293
11298
  # wrong constant name <static-init>
10294
11299
  # wrong constant name <=>
10295
11300
  # wrong constant name <static-init>
10296
- # wrong constant name instance
10297
11301
  # undefined method `initialize<defaultArg>1' for class `Rake::LinkedList'
10298
11302
  # Did you mean? initialize_dup
10299
11303
  # wrong constant name ==
@@ -10525,7 +11529,6 @@
10525
11529
  # wrong constant name fire_update!<defaultArg>2
10526
11530
  # wrong constant name fire_update!
10527
11531
  # wrong constant name ruby
10528
- # wrong constant name match?
10529
11532
  # wrong constant name <Class:Config>
10530
11533
  # wrong constant name <Class:Label>
10531
11534
  # wrong constant name <Class:Message>
@@ -10847,6 +11850,8 @@
10847
11850
  # wrong constant name <Class:SexpBuilderPP>
10848
11851
  # wrong constant name <Class:TokenPattern>
10849
11852
  # wrong constant name column
11853
+ # wrong constant name debug_output
11854
+ # wrong constant name debug_output=
10850
11855
  # wrong constant name encoding
10851
11856
  # wrong constant name end_seen?
10852
11857
  # wrong constant name error?
@@ -10855,6 +11860,7 @@
10855
11860
  # wrong constant name lineno
10856
11861
  # wrong constant name parse
10857
11862
  # wrong constant name state
11863
+ # wrong constant name token
10858
11864
  # wrong constant name yydebug
10859
11865
  # wrong constant name yydebug=
10860
11866
  # undefined method `initialize<defaultArg>1' for class `Ripper::Filter'
@@ -10876,66 +11882,66 @@
10876
11882
  # Did you mean? Ripper::EVENTS
10877
11883
  # uninitialized constant Ripper::Lexer::EXPR_ARG
10878
11884
  # Did you mean? Ripper::EXPR_BEG
10879
- # Ripper::Lexer::EXPR_BEG
10880
11885
  # Ripper::EXPR_ARG
11886
+ # Ripper::Lexer::EXPR_BEG
10881
11887
  # uninitialized constant Ripper::Lexer::EXPR_ARG_ANY
10882
- # Did you mean? Ripper::Lexer::EXPR_END_ANY
10883
- # Ripper::EXPR_BEG_ANY
11888
+ # Did you mean? Ripper::Lexer::EXPR_BEG_ANY
10884
11889
  # Ripper::EXPR_END_ANY
11890
+ # Ripper::EXPR_BEG_ANY
11891
+ # Ripper::Lexer::EXPR_END_ANY
10885
11892
  # Ripper::EXPR_ARG_ANY
10886
- # Ripper::Lexer::EXPR_BEG_ANY
10887
11893
  # uninitialized constant Ripper::Lexer::EXPR_BEG
10888
- # Did you mean? Ripper::EXPR_BEG
10889
- # Ripper::Lexer::EXPR_ARG
11894
+ # Did you mean? Ripper::Lexer::EXPR_ARG
11895
+ # Ripper::EXPR_BEG
10890
11896
  # Ripper::EXPR_ARG
10891
11897
  # uninitialized constant Ripper::Lexer::EXPR_BEG_ANY
10892
- # Did you mean? Ripper::Lexer::EXPR_END_ANY
11898
+ # Did you mean? Ripper::EXPR_BEG_ANY
11899
+ # Ripper::Lexer::EXPR_END_ANY
10893
11900
  # Ripper::Lexer::EXPR_ARG_ANY
10894
- # Ripper::EXPR_BEG_ANY
10895
- # Ripper::EXPR_END_ANY
10896
11901
  # Ripper::EXPR_ARG_ANY
11902
+ # Ripper::EXPR_END_ANY
10897
11903
  # uninitialized constant Ripper::Lexer::EXPR_CLASS
10898
11904
  # Did you mean? Ripper::EXPR_CLASS
10899
11905
  # uninitialized constant Ripper::Lexer::EXPR_CMDARG
10900
11906
  # Did you mean? Ripper::Lexer::EXPR_ARG
10901
11907
  # Ripper::EXPR_ARG
10902
- # Ripper::EXPR_ENDARG
10903
11908
  # Ripper::EXPR_CMDARG
10904
11909
  # Ripper::Lexer::EXPR_ENDARG
11910
+ # Ripper::EXPR_ENDARG
10905
11911
  # uninitialized constant Ripper::Lexer::EXPR_DOT
10906
11912
  # Did you mean? Ripper::EXPR_DOT
10907
11913
  # uninitialized constant Ripper::Lexer::EXPR_END
10908
- # Did you mean? Ripper::EXPR_END
10909
- # Ripper::Lexer::EXPR_MID
11914
+ # Did you mean? Ripper::Lexer::EXPR_MID
10910
11915
  # Ripper::EXPR_MID
10911
- # Ripper::EXPR_ENDFN
11916
+ # Ripper::EXPR_END
10912
11917
  # Ripper::Lexer::EXPR_ENDFN
11918
+ # Ripper::EXPR_ENDFN
10913
11919
  # uninitialized constant Ripper::Lexer::EXPR_ENDARG
10914
- # Did you mean? Ripper::EXPR_END
10915
- # Ripper::Lexer::EXPR_ARG
11920
+ # Did you mean? Ripper::Lexer::EXPR_ARG
10916
11921
  # Ripper::EXPR_ARG
10917
- # Ripper::Lexer::EXPR_ENDFN
11922
+ # Ripper::EXPR_END
10918
11923
  # Ripper::EXPR_ENDFN
10919
- # Ripper::EXPR_CMDARG
11924
+ # Ripper::Lexer::EXPR_ENDFN
10920
11925
  # Ripper::Lexer::EXPR_CMDARG
11926
+ # Ripper::EXPR_CMDARG
10921
11927
  # Ripper::EXPR_ENDARG
10922
11928
  # Ripper::Lexer::EXPR_END_ANY
10923
11929
  # Ripper::EXPR_END_ANY
10924
11930
  # uninitialized constant Ripper::Lexer::EXPR_ENDFN
10925
11931
  # Did you mean? Ripper::EXPR_END
10926
11932
  # Ripper::EXPR_ENDFN
10927
- # Ripper::Lexer::EXPR_ENDARG
10928
11933
  # Ripper::EXPR_ENDARG
11934
+ # Ripper::Lexer::EXPR_ENDARG
10929
11935
  # Ripper::Lexer::EXPR_END_ANY
10930
11936
  # Ripper::EXPR_END_ANY
10931
11937
  # uninitialized constant Ripper::Lexer::EXPR_END_ANY
10932
- # Did you mean? Ripper::Lexer::EXPR_ARG_ANY
10933
- # Ripper::EXPR_BEG_ANY
10934
- # Ripper::EXPR_END_ANY
10935
- # Ripper::EXPR_ARG_ANY
11938
+ # Did you mean? Ripper::EXPR_END_ANY
11939
+ # Ripper::Lexer::EXPR_ARG_ANY
10936
11940
  # Ripper::Lexer::EXPR_BEG_ANY
10937
- # Ripper::EXPR_ENDFN
11941
+ # Ripper::EXPR_ARG_ANY
11942
+ # Ripper::EXPR_BEG_ANY
10938
11943
  # Ripper::Lexer::EXPR_ENDFN
11944
+ # Ripper::EXPR_ENDFN
10939
11945
  # Ripper::Lexer::EXPR_ENDARG
10940
11946
  # Ripper::EXPR_ENDARG
10941
11947
  # uninitialized constant Ripper::Lexer::EXPR_FITEM
@@ -10958,13 +11964,13 @@
10958
11964
  # Ripper::EXPR_MID
10959
11965
  # Ripper::EXPR_END
10960
11966
  # uninitialized constant Ripper::Lexer::EXPR_NONE
10961
- # Did you mean? Ripper::EXPR_END
10962
- # Ripper::Lexer::EXPR_DOT
11967
+ # Did you mean? Ripper::Lexer::EXPR_DOT
10963
11968
  # Ripper::Lexer::EXPR_END
10964
11969
  # Ripper::EXPR_DOT
11970
+ # Ripper::EXPR_END
10965
11971
  # Ripper::EXPR_NONE
10966
- # Ripper::EXPR_FNAME
10967
11972
  # Ripper::Lexer::EXPR_FNAME
11973
+ # Ripper::EXPR_FNAME
10968
11974
  # uninitialized constant Ripper::Lexer::EXPR_VALUE
10969
11975
  # Did you mean? Ripper::EXPR_VALUE
10970
11976
  # wrong constant name <Class:Elem>
@@ -10979,12 +11985,19 @@
10979
11985
  # wrong constant name <Class:State>
10980
11986
  # uninitialized constant Ripper::Lexer::Version
10981
11987
  # Did you mean? Ripper::Version
11988
+ # wrong constant name errors
10982
11989
  # wrong constant name lex
11990
+ # wrong constant name scan
10983
11991
  # wrong constant name tokenize
11992
+ # undefined method `initialize<defaultArg>1' for class `Ripper::Lexer::Elem'
11993
+ # Did you mean? initialize_dup
10984
11994
  # uninitialized constant Ripper::Lexer::Elem::Elem
10985
11995
  # wrong constant name event
10986
11996
  # wrong constant name event=
11997
+ # wrong constant name initialize<defaultArg>1
10987
11998
  # wrong constant name initialize
11999
+ # wrong constant name message
12000
+ # wrong constant name message=
10988
12001
  # wrong constant name pos
10989
12002
  # wrong constant name pos=
10990
12003
  # wrong constant name state
@@ -11015,66 +12028,66 @@
11015
12028
  # Did you mean? Ripper::EVENTS
11016
12029
  # uninitialized constant Ripper::SexpBuilder::EXPR_ARG
11017
12030
  # Did you mean? Ripper::EXPR_BEG
11018
- # Ripper::SexpBuilder::EXPR_BEG
11019
12031
  # Ripper::EXPR_ARG
12032
+ # Ripper::SexpBuilder::EXPR_BEG
11020
12033
  # uninitialized constant Ripper::SexpBuilder::EXPR_ARG_ANY
11021
- # Did you mean? Ripper::SexpBuilder::EXPR_END_ANY
11022
- # Ripper::EXPR_BEG_ANY
12034
+ # Did you mean? Ripper::SexpBuilder::EXPR_BEG_ANY
11023
12035
  # Ripper::EXPR_END_ANY
12036
+ # Ripper::EXPR_BEG_ANY
12037
+ # Ripper::SexpBuilder::EXPR_END_ANY
11024
12038
  # Ripper::EXPR_ARG_ANY
11025
- # Ripper::SexpBuilder::EXPR_BEG_ANY
11026
12039
  # uninitialized constant Ripper::SexpBuilder::EXPR_BEG
11027
- # Did you mean? Ripper::EXPR_BEG
11028
- # Ripper::SexpBuilder::EXPR_ARG
12040
+ # Did you mean? Ripper::SexpBuilder::EXPR_ARG
12041
+ # Ripper::EXPR_BEG
11029
12042
  # Ripper::EXPR_ARG
11030
12043
  # uninitialized constant Ripper::SexpBuilder::EXPR_BEG_ANY
11031
- # Did you mean? Ripper::SexpBuilder::EXPR_END_ANY
12044
+ # Did you mean? Ripper::EXPR_BEG_ANY
12045
+ # Ripper::SexpBuilder::EXPR_END_ANY
11032
12046
  # Ripper::SexpBuilder::EXPR_ARG_ANY
11033
- # Ripper::EXPR_BEG_ANY
11034
- # Ripper::EXPR_END_ANY
11035
12047
  # Ripper::EXPR_ARG_ANY
12048
+ # Ripper::EXPR_END_ANY
11036
12049
  # uninitialized constant Ripper::SexpBuilder::EXPR_CLASS
11037
12050
  # Did you mean? Ripper::EXPR_CLASS
11038
12051
  # uninitialized constant Ripper::SexpBuilder::EXPR_CMDARG
11039
12052
  # Did you mean? Ripper::SexpBuilder::EXPR_ARG
11040
12053
  # Ripper::EXPR_ARG
11041
- # Ripper::EXPR_ENDARG
11042
12054
  # Ripper::EXPR_CMDARG
11043
12055
  # Ripper::SexpBuilder::EXPR_ENDARG
12056
+ # Ripper::EXPR_ENDARG
11044
12057
  # uninitialized constant Ripper::SexpBuilder::EXPR_DOT
11045
12058
  # Did you mean? Ripper::EXPR_DOT
11046
12059
  # uninitialized constant Ripper::SexpBuilder::EXPR_END
11047
- # Did you mean? Ripper::EXPR_END
11048
- # Ripper::SexpBuilder::EXPR_MID
12060
+ # Did you mean? Ripper::SexpBuilder::EXPR_MID
11049
12061
  # Ripper::EXPR_MID
11050
- # Ripper::EXPR_ENDFN
12062
+ # Ripper::EXPR_END
11051
12063
  # Ripper::SexpBuilder::EXPR_ENDFN
12064
+ # Ripper::EXPR_ENDFN
11052
12065
  # uninitialized constant Ripper::SexpBuilder::EXPR_ENDARG
11053
- # Did you mean? Ripper::EXPR_END
11054
- # Ripper::SexpBuilder::EXPR_ARG
12066
+ # Did you mean? Ripper::SexpBuilder::EXPR_ARG
11055
12067
  # Ripper::EXPR_ARG
11056
- # Ripper::SexpBuilder::EXPR_ENDFN
12068
+ # Ripper::EXPR_END
11057
12069
  # Ripper::EXPR_ENDFN
11058
- # Ripper::EXPR_CMDARG
12070
+ # Ripper::SexpBuilder::EXPR_ENDFN
11059
12071
  # Ripper::SexpBuilder::EXPR_CMDARG
12072
+ # Ripper::EXPR_CMDARG
11060
12073
  # Ripper::EXPR_ENDARG
11061
12074
  # Ripper::SexpBuilder::EXPR_END_ANY
11062
12075
  # Ripper::EXPR_END_ANY
11063
12076
  # uninitialized constant Ripper::SexpBuilder::EXPR_ENDFN
11064
12077
  # Did you mean? Ripper::EXPR_END
11065
12078
  # Ripper::EXPR_ENDFN
11066
- # Ripper::SexpBuilder::EXPR_ENDARG
11067
12079
  # Ripper::EXPR_ENDARG
12080
+ # Ripper::SexpBuilder::EXPR_ENDARG
11068
12081
  # Ripper::SexpBuilder::EXPR_END_ANY
11069
12082
  # Ripper::EXPR_END_ANY
11070
12083
  # uninitialized constant Ripper::SexpBuilder::EXPR_END_ANY
11071
- # Did you mean? Ripper::SexpBuilder::EXPR_ARG_ANY
11072
- # Ripper::EXPR_BEG_ANY
11073
- # Ripper::EXPR_END_ANY
11074
- # Ripper::EXPR_ARG_ANY
12084
+ # Did you mean? Ripper::EXPR_END_ANY
12085
+ # Ripper::SexpBuilder::EXPR_ARG_ANY
11075
12086
  # Ripper::SexpBuilder::EXPR_BEG_ANY
11076
- # Ripper::EXPR_ENDFN
12087
+ # Ripper::EXPR_ARG_ANY
12088
+ # Ripper::EXPR_BEG_ANY
11077
12089
  # Ripper::SexpBuilder::EXPR_ENDFN
12090
+ # Ripper::EXPR_ENDFN
11078
12091
  # Ripper::SexpBuilder::EXPR_ENDARG
11079
12092
  # Ripper::EXPR_ENDARG
11080
12093
  # uninitialized constant Ripper::SexpBuilder::EXPR_FITEM
@@ -11097,13 +12110,13 @@
11097
12110
  # Ripper::EXPR_MID
11098
12111
  # Ripper::EXPR_END
11099
12112
  # uninitialized constant Ripper::SexpBuilder::EXPR_NONE
11100
- # Did you mean? Ripper::EXPR_END
11101
- # Ripper::SexpBuilder::EXPR_DOT
12113
+ # Did you mean? Ripper::SexpBuilder::EXPR_DOT
11102
12114
  # Ripper::SexpBuilder::EXPR_END
11103
12115
  # Ripper::EXPR_DOT
12116
+ # Ripper::EXPR_END
11104
12117
  # Ripper::EXPR_NONE
11105
- # Ripper::EXPR_FNAME
11106
12118
  # Ripper::SexpBuilder::EXPR_FNAME
12119
+ # Ripper::EXPR_FNAME
11107
12120
  # uninitialized constant Ripper::SexpBuilder::EXPR_VALUE
11108
12121
  # Did you mean? Ripper::EXPR_VALUE
11109
12122
  # uninitialized constant Ripper::SexpBuilder::PARSER_EVENTS
@@ -11129,8 +12142,10 @@
11129
12142
  # wrong constant name on_args_add
11130
12143
  # wrong constant name on_args_add_block
11131
12144
  # wrong constant name on_args_add_star
12145
+ # wrong constant name on_args_forward
11132
12146
  # wrong constant name on_args_new
11133
12147
  # wrong constant name on_array
12148
+ # wrong constant name on_aryptn
11134
12149
  # wrong constant name on_assign
11135
12150
  # wrong constant name on_assign_error
11136
12151
  # wrong constant name on_assoc_new
@@ -11184,6 +12199,7 @@
11184
12199
  # wrong constant name on_hash
11185
12200
  # wrong constant name on_heredoc_beg
11186
12201
  # wrong constant name on_heredoc_end
12202
+ # wrong constant name on_hshptn
11187
12203
  # wrong constant name on_ident
11188
12204
  # wrong constant name on_if
11189
12205
  # wrong constant name on_if_mod
@@ -11191,6 +12207,7 @@
11191
12207
  # wrong constant name on_ignored_nl
11192
12208
  # wrong constant name on_ignored_sp
11193
12209
  # wrong constant name on_imaginary
12210
+ # wrong constant name on_in
11194
12211
  # wrong constant name on_int
11195
12212
  # wrong constant name on_ivar
11196
12213
  # wrong constant name on_kw
@@ -11217,6 +12234,7 @@
11217
12234
  # wrong constant name on_mrhs_new_from_args
11218
12235
  # wrong constant name on_next
11219
12236
  # wrong constant name on_nl
12237
+ # wrong constant name on_nokw_param
11220
12238
  # wrong constant name on_op
11221
12239
  # wrong constant name on_opassign
11222
12240
  # wrong constant name on_operator_ambiguous
@@ -11304,66 +12322,66 @@
11304
12322
  # Did you mean? Ripper::EVENTS
11305
12323
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_ARG
11306
12324
  # Did you mean? Ripper::EXPR_BEG
11307
- # Ripper::SexpBuilderPP::EXPR_BEG
11308
12325
  # Ripper::EXPR_ARG
12326
+ # Ripper::SexpBuilderPP::EXPR_BEG
11309
12327
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_ARG_ANY
11310
- # Did you mean? Ripper::SexpBuilderPP::EXPR_END_ANY
11311
- # Ripper::EXPR_BEG_ANY
12328
+ # Did you mean? Ripper::SexpBuilderPP::EXPR_BEG_ANY
11312
12329
  # Ripper::EXPR_END_ANY
12330
+ # Ripper::EXPR_BEG_ANY
12331
+ # Ripper::SexpBuilderPP::EXPR_END_ANY
11313
12332
  # Ripper::EXPR_ARG_ANY
11314
- # Ripper::SexpBuilderPP::EXPR_BEG_ANY
11315
12333
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_BEG
11316
- # Did you mean? Ripper::EXPR_BEG
11317
- # Ripper::SexpBuilderPP::EXPR_ARG
12334
+ # Did you mean? Ripper::SexpBuilderPP::EXPR_ARG
12335
+ # Ripper::EXPR_BEG
11318
12336
  # Ripper::EXPR_ARG
11319
12337
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_BEG_ANY
11320
- # Did you mean? Ripper::SexpBuilderPP::EXPR_END_ANY
12338
+ # Did you mean? Ripper::EXPR_BEG_ANY
12339
+ # Ripper::SexpBuilderPP::EXPR_END_ANY
11321
12340
  # Ripper::SexpBuilderPP::EXPR_ARG_ANY
11322
- # Ripper::EXPR_BEG_ANY
11323
- # Ripper::EXPR_END_ANY
11324
12341
  # Ripper::EXPR_ARG_ANY
12342
+ # Ripper::EXPR_END_ANY
11325
12343
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_CLASS
11326
12344
  # Did you mean? Ripper::EXPR_CLASS
11327
12345
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_CMDARG
11328
12346
  # Did you mean? Ripper::SexpBuilderPP::EXPR_ARG
11329
12347
  # Ripper::EXPR_ARG
11330
- # Ripper::EXPR_ENDARG
11331
12348
  # Ripper::EXPR_CMDARG
11332
12349
  # Ripper::SexpBuilderPP::EXPR_ENDARG
12350
+ # Ripper::EXPR_ENDARG
11333
12351
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_DOT
11334
12352
  # Did you mean? Ripper::EXPR_DOT
11335
12353
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_END
11336
- # Did you mean? Ripper::EXPR_END
11337
- # Ripper::SexpBuilderPP::EXPR_MID
12354
+ # Did you mean? Ripper::SexpBuilderPP::EXPR_MID
11338
12355
  # Ripper::EXPR_MID
11339
- # Ripper::EXPR_ENDFN
12356
+ # Ripper::EXPR_END
11340
12357
  # Ripper::SexpBuilderPP::EXPR_ENDFN
12358
+ # Ripper::EXPR_ENDFN
11341
12359
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_ENDARG
11342
- # Did you mean? Ripper::EXPR_END
11343
- # Ripper::SexpBuilderPP::EXPR_ARG
12360
+ # Did you mean? Ripper::SexpBuilderPP::EXPR_ARG
11344
12361
  # Ripper::EXPR_ARG
11345
- # Ripper::SexpBuilderPP::EXPR_ENDFN
12362
+ # Ripper::EXPR_END
11346
12363
  # Ripper::EXPR_ENDFN
11347
- # Ripper::EXPR_CMDARG
12364
+ # Ripper::SexpBuilderPP::EXPR_ENDFN
11348
12365
  # Ripper::SexpBuilderPP::EXPR_CMDARG
12366
+ # Ripper::EXPR_CMDARG
11349
12367
  # Ripper::EXPR_ENDARG
11350
12368
  # Ripper::SexpBuilderPP::EXPR_END_ANY
11351
12369
  # Ripper::EXPR_END_ANY
11352
12370
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_ENDFN
11353
12371
  # Did you mean? Ripper::EXPR_END
11354
12372
  # Ripper::EXPR_ENDFN
11355
- # Ripper::SexpBuilderPP::EXPR_ENDARG
11356
12373
  # Ripper::EXPR_ENDARG
12374
+ # Ripper::SexpBuilderPP::EXPR_ENDARG
11357
12375
  # Ripper::SexpBuilderPP::EXPR_END_ANY
11358
12376
  # Ripper::EXPR_END_ANY
11359
12377
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_END_ANY
11360
- # Did you mean? Ripper::SexpBuilderPP::EXPR_ARG_ANY
11361
- # Ripper::EXPR_BEG_ANY
11362
- # Ripper::EXPR_END_ANY
11363
- # Ripper::EXPR_ARG_ANY
12378
+ # Did you mean? Ripper::EXPR_END_ANY
12379
+ # Ripper::SexpBuilderPP::EXPR_ARG_ANY
11364
12380
  # Ripper::SexpBuilderPP::EXPR_BEG_ANY
11365
- # Ripper::EXPR_ENDFN
12381
+ # Ripper::EXPR_ARG_ANY
12382
+ # Ripper::EXPR_BEG_ANY
11366
12383
  # Ripper::SexpBuilderPP::EXPR_ENDFN
12384
+ # Ripper::EXPR_ENDFN
11367
12385
  # Ripper::SexpBuilderPP::EXPR_ENDARG
11368
12386
  # Ripper::EXPR_ENDARG
11369
12387
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_FITEM
@@ -11386,13 +12404,13 @@
11386
12404
  # Ripper::EXPR_MID
11387
12405
  # Ripper::EXPR_END
11388
12406
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_NONE
11389
- # Did you mean? Ripper::EXPR_END
11390
- # Ripper::SexpBuilderPP::EXPR_DOT
12407
+ # Did you mean? Ripper::SexpBuilderPP::EXPR_DOT
11391
12408
  # Ripper::SexpBuilderPP::EXPR_END
11392
12409
  # Ripper::EXPR_DOT
12410
+ # Ripper::EXPR_END
11393
12411
  # Ripper::EXPR_NONE
11394
- # Ripper::EXPR_FNAME
11395
12412
  # Ripper::SexpBuilderPP::EXPR_FNAME
12413
+ # Ripper::EXPR_FNAME
11396
12414
  # uninitialized constant Ripper::SexpBuilderPP::EXPR_VALUE
11397
12415
  # Did you mean? Ripper::EXPR_VALUE
11398
12416
  # uninitialized constant Ripper::SexpBuilderPP::PARSER_EVENTS
@@ -11775,6 +12793,7 @@
11775
12793
  # wrong constant name concat
11776
12794
  # wrong constant name count
11777
12795
  # wrong constant name cycle
12796
+ # wrong constant name deconstruct
11778
12797
  # wrong constant name delete
11779
12798
  # wrong constant name delete_at
11780
12799
  # wrong constant name delete_if
@@ -11796,6 +12815,7 @@
11796
12815
  # wrong constant name fill
11797
12816
  # wrong constant name filter
11798
12817
  # wrong constant name filter!
12818
+ # wrong constant name filter_map
11799
12819
  # wrong constant name find
11800
12820
  # wrong constant name find_all
11801
12821
  # wrong constant name find_index
@@ -11810,6 +12830,7 @@
11810
12830
  # wrong constant name index
11811
12831
  # wrong constant name inject
11812
12832
  # wrong constant name insert
12833
+ # wrong constant name intersection
11813
12834
  # wrong constant name join
11814
12835
  # wrong constant name keep_if
11815
12836
  # wrong constant name last
@@ -11866,6 +12887,7 @@
11866
12887
  # wrong constant name sum
11867
12888
  # wrong constant name take
11868
12889
  # wrong constant name take_while
12890
+ # wrong constant name tally
11869
12891
  # wrong constant name to_ary
11870
12892
  # wrong constant name to_h
11871
12893
  # wrong constant name to_set
@@ -17449,8 +18471,134 @@
17449
18471
  # wrong constant name enabled?
17450
18472
  # wrong constant name pause
17451
18473
  # wrong constant name resume
17452
- # wrong constant name resolve_feature_path
17453
18474
  # wrong constant name stat
18475
+ # wrong constant name <Class:Deep>
18476
+ # wrong constant name <Class:LibyamlChecker>
18477
+ # wrong constant name <Class:Parse>
18478
+ # wrong constant name <Class:PsychHandler>
18479
+ # wrong constant name <Class:PsychResolver>
18480
+ # wrong constant name <Class:Resolver>
18481
+ # wrong constant name <Class:SafeToRubyVisitor>
18482
+ # wrong constant name <Class:Transform>
18483
+ # wrong constant name <static-init>
18484
+ # wrong constant name copy
18485
+ # wrong constant name freeze
18486
+ # wrong constant name <static-init>
18487
+ # wrong constant name libyaml_patched?
18488
+ # wrong constant name libyaml_version_ok?
18489
+ # wrong constant name <Class:Date>
18490
+ # wrong constant name <Class:Hexadecimal>
18491
+ # wrong constant name <Class:Sexagesimal>
18492
+ # wrong constant name <static-init>
18493
+ # wrong constant name value
18494
+ # wrong constant name <static-init>
18495
+ # wrong constant name value
18496
+ # wrong constant name <static-init>
18497
+ # wrong constant name value
18498
+ # wrong constant name <static-init>
18499
+ # undefined method `add_to_current_structure<defaultArg>1' for class `SafeYAML::PsychHandler'
18500
+ # undefined method `add_to_current_structure<defaultArg>2' for class `SafeYAML::PsychHandler'
18501
+ # undefined method `add_to_current_structure<defaultArg>3' for class `SafeYAML::PsychHandler'
18502
+ # uninitialized constant SafeYAML::PsychHandler::EVENTS
18503
+ # uninitialized constant SafeYAML::PsychHandler::OPTIONS
18504
+ # Did you mean? SafeYAML::OPTIONS
18505
+ # wrong constant name add_to_current_structure<defaultArg>1
18506
+ # wrong constant name add_to_current_structure<defaultArg>2
18507
+ # wrong constant name add_to_current_structure<defaultArg>3
18508
+ # wrong constant name add_to_current_structure
18509
+ # wrong constant name end_current_structure
18510
+ # wrong constant name initialize
18511
+ # wrong constant name result
18512
+ # wrong constant name <static-init>
18513
+ # undefined method `initialize<defaultArg>1' for class `SafeYAML::PsychResolver'
18514
+ # Did you mean? initialize_dup
18515
+ # wrong constant name get_node_tag
18516
+ # wrong constant name get_node_type
18517
+ # wrong constant name get_node_value
18518
+ # wrong constant name initialize<defaultArg>1
18519
+ # wrong constant name initialize
18520
+ # wrong constant name native_resolve
18521
+ # wrong constant name resolve_alias
18522
+ # wrong constant name resolve_root
18523
+ # wrong constant name value_is_quoted?
18524
+ # wrong constant name <static-init>
18525
+ # wrong constant name get_and_check_node_tag
18526
+ # wrong constant name initialize
18527
+ # wrong constant name options
18528
+ # wrong constant name resolve_map
18529
+ # wrong constant name resolve_node
18530
+ # wrong constant name resolve_scalar
18531
+ # wrong constant name resolve_seq
18532
+ # wrong constant name tag_is_whitelisted?
18533
+ # wrong constant name <static-init>
18534
+ # uninitialized constant SafeYAML::SafeToRubyVisitor::DISPATCH
18535
+ # uninitialized constant SafeYAML::SafeToRubyVisitor::SHOVEL
18536
+ # wrong constant name accept
18537
+ # wrong constant name initialize
18538
+ # wrong constant name <static-init>
18539
+ # wrong constant name <Class:ToBoolean>
18540
+ # wrong constant name <Class:ToDate>
18541
+ # wrong constant name <Class:ToFloat>
18542
+ # wrong constant name <Class:ToInteger>
18543
+ # wrong constant name <Class:ToNil>
18544
+ # wrong constant name <Class:ToSymbol>
18545
+ # wrong constant name <Class:TransformationMap>
18546
+ # wrong constant name transform?
18547
+ # wrong constant name <static-init>
18548
+ # wrong constant name transform?
18549
+ # wrong constant name <static-init>
18550
+ # wrong constant name transform?
18551
+ # wrong constant name try_edge_cases?
18552
+ # wrong constant name <static-init>
18553
+ # wrong constant name transform?
18554
+ # wrong constant name try_edge_cases?
18555
+ # wrong constant name <static-init>
18556
+ # wrong constant name transform?
18557
+ # wrong constant name <static-init>
18558
+ # undefined method `transform?<defaultArg>1' for class `SafeYAML::Transform::ToSymbol'
18559
+ # wrong constant name transform?<defaultArg>1
18560
+ # wrong constant name transform?
18561
+ # wrong constant name <static-init>
18562
+ # wrong constant name <Class:CaseAgnosticMap>
18563
+ # wrong constant name <Class:ClassMethods>
18564
+ # uninitialized constant SafeYAML::Transform::TransformationMap::CaseAgnosticMap::Elem
18565
+ # uninitialized constant SafeYAML::Transform::TransformationMap::CaseAgnosticMap::K
18566
+ # uninitialized constant SafeYAML::Transform::TransformationMap::CaseAgnosticMap::V
18567
+ # wrong constant name []
18568
+ # wrong constant name include?
18569
+ # wrong constant name initialize
18570
+ # wrong constant name <static-init>
18571
+ # wrong constant name set_predefined_values
18572
+ # wrong constant name <static-init>
18573
+ # wrong constant name <static-init>
18574
+ # wrong constant name included
18575
+ # undefined singleton method `to_guessed_type<defaultArg>1' for `SafeYAML::Transform'
18576
+ # undefined singleton method `to_guessed_type<defaultArg>2' for `SafeYAML::Transform'
18577
+ # undefined singleton method `to_proper_type<defaultArg>1' for `SafeYAML::Transform'
18578
+ # undefined singleton method `to_proper_type<defaultArg>2' for `SafeYAML::Transform'
18579
+ # undefined singleton method `to_proper_type<defaultArg>3' for `SafeYAML::Transform'
18580
+ # wrong constant name <static-init>
18581
+ # wrong constant name to_guessed_type<defaultArg>1
18582
+ # wrong constant name to_guessed_type<defaultArg>2
18583
+ # wrong constant name to_guessed_type
18584
+ # wrong constant name to_proper_type<defaultArg>1
18585
+ # wrong constant name to_proper_type<defaultArg>2
18586
+ # wrong constant name to_proper_type<defaultArg>3
18587
+ # wrong constant name to_proper_type
18588
+ # undefined singleton method `load<defaultArg>1' for `SafeYAML'
18589
+ # undefined singleton method `load<defaultArg>2' for `SafeYAML'
18590
+ # undefined singleton method `load_file<defaultArg>1' for `SafeYAML'
18591
+ # wrong constant name <static-init>
18592
+ # wrong constant name load<defaultArg>1
18593
+ # wrong constant name load<defaultArg>2
18594
+ # wrong constant name load
18595
+ # wrong constant name load_file<defaultArg>1
18596
+ # wrong constant name load_file
18597
+ # wrong constant name restore_defaults!
18598
+ # wrong constant name tag_is_explicitly_trusted?
18599
+ # wrong constant name tag_safety_check!
18600
+ # wrong constant name whitelist!
18601
+ # wrong constant name whitelist_class!
17454
18602
  # wrong constant name bytes
17455
18603
  # undefined method `flatten_merge<defaultArg>1' for class `Set'
17456
18604
  # undefined method `initialize<defaultArg>1' for class `Set'
@@ -17787,181 +18935,6 @@
17787
18935
  # Did you mean? TRUE
17788
18936
  # uninitialized constant Socket::WRONLY
17789
18937
  # Did you mean? Socket::RDONLY
17790
- # wrong constant name <Class:ConstantEntry>
17791
- # wrong constant name all_module_aliases
17792
- # wrong constant name all_module_names
17793
- # wrong constant name all_named_modules
17794
- # wrong constant name class_by_name
17795
- # wrong constant name name_by_class
17796
- # uninitialized constant Sorbet::Private::ConstantLookupCache::ConstantEntry::Elem
17797
- # wrong constant name aliases
17798
- # wrong constant name aliases=
17799
- # wrong constant name const
17800
- # wrong constant name const=
17801
- # wrong constant name const_name
17802
- # wrong constant name const_name=
17803
- # wrong constant name found_name
17804
- # wrong constant name found_name=
17805
- # wrong constant name owner
17806
- # wrong constant name owner=
17807
- # wrong constant name primary_name
17808
- # wrong constant name primary_name=
17809
- # wrong constant name <static-init>
17810
- # wrong constant name []
17811
- # wrong constant name members
17812
- # wrong constant name <static-init>
17813
- # wrong constant name <static-init>
17814
- # wrong constant name main
17815
- # wrong constant name output_file
17816
- # wrong constant name <static-init>
17817
- # wrong constant name fetch_sorbet_typed
17818
- # wrong constant name main
17819
- # wrong constant name matching_version_directories
17820
- # wrong constant name output_file
17821
- # wrong constant name paths_for_gem_version
17822
- # wrong constant name paths_for_ruby_version
17823
- # wrong constant name vendor_rbis_within_paths
17824
- # wrong constant name <static-init>
17825
- # wrong constant name main
17826
- # wrong constant name output_file
17827
- # wrong constant name paths_within_gem_sources
17828
- # wrong constant name <Class:ClassDefinition>
17829
- # wrong constant name <Class:TracepointSerializer>
17830
- # wrong constant name <Class:Tracer>
17831
- # uninitialized constant Sorbet::Private::GemGeneratorTracepoint::ClassDefinition::Elem
17832
- # wrong constant name defs
17833
- # wrong constant name defs=
17834
- # wrong constant name id
17835
- # wrong constant name id=
17836
- # wrong constant name klass
17837
- # wrong constant name klass=
17838
- # wrong constant name <static-init>
17839
- # wrong constant name []
17840
- # wrong constant name members
17841
- # wrong constant name initialize
17842
- # wrong constant name serialize
17843
- # wrong constant name <static-init>
17844
- # wrong constant name <static-init>
17845
- # wrong constant name add_to_context
17846
- # wrong constant name disable_tracepoints
17847
- # wrong constant name finish
17848
- # wrong constant name install_tracepoints
17849
- # wrong constant name on_method_added
17850
- # wrong constant name on_module_created
17851
- # wrong constant name on_module_extended
17852
- # wrong constant name on_module_included
17853
- # wrong constant name pre_cache_module_methods
17854
- # wrong constant name register_delegate_class
17855
- # wrong constant name start
17856
- # wrong constant name trace
17857
- # wrong constant name trace_results
17858
- # undefined singleton method `main<defaultArg>1' for `Sorbet::Private::GemGeneratorTracepoint'
17859
- # wrong constant name <static-init>
17860
- # wrong constant name main<defaultArg>1
17861
- # wrong constant name main
17862
- # wrong constant name output_file
17863
- # wrong constant name <static-init>
17864
- # wrong constant name my_require
17865
- # wrong constant name require_all_gems
17866
- # wrong constant name require_gem
17867
- # wrong constant name all_modules_and_aliases
17868
- # wrong constant name capture_stderr
17869
- # wrong constant name constant_cache
17870
- # wrong constant name gen_source_rbi
17871
- # wrong constant name looks_like_stub_name
17872
- # wrong constant name main
17873
- # wrong constant name mk_dir
17874
- # wrong constant name read_constants
17875
- # wrong constant name real_name
17876
- # wrong constant name require_everything
17877
- # wrong constant name rm_dir
17878
- # wrong constant name serialize_alias
17879
- # wrong constant name serialize_class
17880
- # wrong constant name serialize_constants
17881
- # wrong constant name symbols_id_to_name
17882
- # wrong constant name write_constants
17883
- # wrong constant name write_diff
17884
- # wrong constant name <static-init>
17885
- # wrong constant name main
17886
- # wrong constant name output_file
17887
- # wrong constant name <static-init>
17888
- # wrong constant name cyan
17889
- # wrong constant name emojify
17890
- # wrong constant name init
17891
- # wrong constant name main
17892
- # wrong constant name make_step
17893
- # wrong constant name usage
17894
- # wrong constant name yellow
17895
- # wrong constant name <static-init>
17896
- # wrong constant name real_ancestors
17897
- # wrong constant name real_autoload?
17898
- # wrong constant name real_const_get
17899
- # wrong constant name real_constants
17900
- # wrong constant name real_eqeq
17901
- # wrong constant name real_hash
17902
- # wrong constant name real_instance_methods
17903
- # wrong constant name real_is_a?
17904
- # wrong constant name real_method
17905
- # wrong constant name real_name
17906
- # wrong constant name real_object_id
17907
- # wrong constant name real_private_instance_methods
17908
- # wrong constant name real_singleton_class
17909
- # wrong constant name real_singleton_methods
17910
- # wrong constant name real_spaceship
17911
- # wrong constant name real_superclass
17912
- # wrong constant name <static-init>
17913
- # wrong constant name excluded_rails_files
17914
- # wrong constant name load_bundler
17915
- # wrong constant name load_rails
17916
- # wrong constant name my_require
17917
- # wrong constant name patch_kernel
17918
- # wrong constant name rails?
17919
- # wrong constant name rails_load_paths
17920
- # wrong constant name rb_file_paths
17921
- # wrong constant name require_all_files
17922
- # wrong constant name require_everything
17923
- # undefined method `serialize_method<defaultArg>1' for class `Sorbet::Private::Serialize'
17924
- # undefined method `serialize_method<defaultArg>2' for class `Sorbet::Private::Serialize'
17925
- # wrong constant name alias
17926
- # wrong constant name ancestor_has_method
17927
- # wrong constant name blacklisted_method
17928
- # wrong constant name class_or_module
17929
- # wrong constant name comparable?
17930
- # wrong constant name constant
17931
- # wrong constant name from_method
17932
- # wrong constant name initialize
17933
- # wrong constant name serialize_method<defaultArg>1
17934
- # wrong constant name serialize_method<defaultArg>2
17935
- # wrong constant name serialize_method
17936
- # wrong constant name serialize_sig
17937
- # wrong constant name to_sig
17938
- # wrong constant name valid_class_name
17939
- # wrong constant name valid_method_name
17940
- # undefined singleton method `header<defaultArg>1' for `Sorbet::Private::Serialize'
17941
- # undefined singleton method `header<defaultArg>2' for `Sorbet::Private::Serialize'
17942
- # wrong constant name <static-init>
17943
- # wrong constant name header<defaultArg>1
17944
- # wrong constant name header<defaultArg>2
17945
- # wrong constant name header
17946
- # uninitialized constant Sorbet::Private::Static
17947
- # Did you mean? Sorbet::Private::Status
17948
- # uninitialized constant Sorbet::Private::Static
17949
- # Did you mean? Sorbet::Private::Status
17950
- # undefined singleton method `say<defaultArg>1' for `Sorbet::Private::Status'
17951
- # wrong constant name <static-init>
17952
- # wrong constant name done
17953
- # wrong constant name say<defaultArg>1
17954
- # wrong constant name say
17955
- # wrong constant name <static-init>
17956
- # wrong constant name main
17957
- # wrong constant name output_file
17958
- # wrong constant name <static-init>
17959
- # wrong constant name main
17960
- # wrong constant name output_file
17961
- # wrong constant name suggest_typed
17962
- # wrong constant name <static-init>
17963
- # wrong constant name main
17964
- # wrong constant name output_file
17965
18938
  # uninitialized constant SortedSet::InspectKey
17966
18939
  # wrong constant name initialize
17967
18940
  # wrong constant name setup
@@ -17992,6 +18965,7 @@
17992
18965
  # wrong constant name unicode_normalized?
17993
18966
  # wrong constant name unpack1
17994
18967
  # wrong constant name length
18968
+ # wrong constant name set_encoding_by_bom
17995
18969
  # wrong constant name truncate
17996
18970
  # wrong constant name <<
17997
18971
  # wrong constant name []
@@ -18005,6 +18979,7 @@
18005
18979
  # wrong constant name concat
18006
18980
  # wrong constant name empty?
18007
18981
  # wrong constant name exist?
18982
+ # wrong constant name fixed_anchor?
18008
18983
  # wrong constant name get_byte
18009
18984
  # wrong constant name getbyte
18010
18985
  # wrong constant name initialize
@@ -18039,6 +19014,8 @@
18039
19014
  # wrong constant name must_C_version
18040
19015
  # wrong constant name []
18041
19016
  # wrong constant name []=
19017
+ # wrong constant name deconstruct
19018
+ # wrong constant name deconstruct_keys
18042
19019
  # wrong constant name dig
18043
19020
  # wrong constant name each_pair
18044
19021
  # wrong constant name filter
@@ -18087,13 +19064,15 @@
18087
19064
  # wrong constant name T.untyped
18088
19065
  # undefined method `enable<defaultArg>1' for class `TracePoint'
18089
19066
  # undefined method `enable<defaultArg>2' for class `TracePoint'
18090
- # wrong constant name __enable
19067
+ # undefined method `enable<defaultArg>3' for class `TracePoint'
18091
19068
  # wrong constant name enable<defaultArg>1
18092
19069
  # wrong constant name enable<defaultArg>2
19070
+ # wrong constant name enable<defaultArg>3
18093
19071
  # wrong constant name eval_script
18094
19072
  # wrong constant name event
18095
19073
  # wrong constant name instruction_sequence
18096
19074
  # wrong constant name parameters
19075
+ # wrong constant name new
18097
19076
  # wrong constant name <Class:File>
18098
19077
  # wrong constant name decode
18099
19078
  # wrong constant name encode
@@ -18229,7 +19208,116 @@
18229
19208
  # undefined singleton method `regexp<defaultArg>1' for `URI'
18230
19209
  # wrong constant name extract<defaultArg>1
18231
19210
  # wrong constant name get_encoding
19211
+ # wrong constant name open
18232
19212
  # wrong constant name regexp<defaultArg>1
19213
+ # undefined method `to_s<defaultArg>1' for class `URL'
19214
+ # wrong constant name =~
19215
+ # wrong constant name <Class:ASJSONHandler>
19216
+ # wrong constant name <Class:BaseJSONHandler>
19217
+ # wrong constant name <Class:JSONHandler>
19218
+ # wrong constant name <Class:Mash>
19219
+ # wrong constant name <Class:NetHandler>
19220
+ # wrong constant name <Class:ParamsHash>
19221
+ # wrong constant name <Class:RequestHandler>
19222
+ # wrong constant name <Class:Response>
19223
+ # wrong constant name <Class:TyHandler>
19224
+ # wrong constant name <Class:YajlHandler>
19225
+ # wrong constant name []
19226
+ # wrong constant name []=
19227
+ # wrong constant name add_to_path
19228
+ # wrong constant name delete
19229
+ # wrong constant name domain
19230
+ # wrong constant name domain=
19231
+ # wrong constant name format
19232
+ # wrong constant name format=
19233
+ # wrong constant name get
19234
+ # wrong constant name hash=
19235
+ # wrong constant name host
19236
+ # wrong constant name host_with_port
19237
+ # wrong constant name initialize
19238
+ # wrong constant name params
19239
+ # wrong constant name params=
19240
+ # wrong constant name path
19241
+ # wrong constant name path=
19242
+ # wrong constant name port
19243
+ # wrong constant name port=
19244
+ # wrong constant name post
19245
+ # wrong constant name put
19246
+ # wrong constant name req_handler
19247
+ # wrong constant name req_handler=
19248
+ # wrong constant name scheme
19249
+ # wrong constant name scheme=
19250
+ # wrong constant name string
19251
+ # wrong constant name subdomain
19252
+ # wrong constant name subdomain=
19253
+ # wrong constant name subdomains
19254
+ # wrong constant name subdomains=
19255
+ # wrong constant name to_s<defaultArg>1
19256
+ # wrong constant name to_s
19257
+ # wrong constant name to_uri
19258
+ # wrong constant name <static-init>
19259
+ # wrong constant name <static-init>
19260
+ # wrong constant name initialize
19261
+ # wrong constant name parse
19262
+ # wrong constant name str
19263
+ # wrong constant name <static-init>
19264
+ # uninitialized constant URL::Mash::Elem
19265
+ # uninitialized constant URL::Mash::K
19266
+ # uninitialized constant URL::Mash::V
19267
+ # wrong constant name []
19268
+ # wrong constant name []=
19269
+ # wrong constant name <static-init>
19270
+ # wrong constant name <static-init>
19271
+ # undefined method `to_s<defaultArg>1' for class `URL::ParamsHash'
19272
+ # uninitialized constant URL::ParamsHash::Elem
19273
+ # uninitialized constant URL::ParamsHash::K
19274
+ # uninitialized constant URL::ParamsHash::V
19275
+ # wrong constant name reverse_merge!
19276
+ # wrong constant name to_s<defaultArg>1
19277
+ # wrong constant name to_s
19278
+ # wrong constant name |
19279
+ # wrong constant name <static-init>
19280
+ # wrong constant name from_string
19281
+ # undefined method `delete<defaultArg>1' for class `URL::RequestHandler'
19282
+ # undefined method `get<defaultArg>1' for class `URL::RequestHandler'
19283
+ # undefined method `post<defaultArg>1' for class `URL::RequestHandler'
19284
+ # undefined method `put<defaultArg>1' for class `URL::RequestHandler'
19285
+ # wrong constant name delete<defaultArg>1
19286
+ # wrong constant name delete
19287
+ # wrong constant name get<defaultArg>1
19288
+ # wrong constant name get
19289
+ # wrong constant name initialize
19290
+ # wrong constant name post<defaultArg>1
19291
+ # wrong constant name post
19292
+ # wrong constant name put<defaultArg>1
19293
+ # wrong constant name put
19294
+ # wrong constant name url
19295
+ # wrong constant name <static-init>
19296
+ # undefined method `initialize<defaultArg>1' for class `URL::Response'
19297
+ # Did you mean? initialize_dup
19298
+ # wrong constant name code
19299
+ # wrong constant name connection_refused
19300
+ # wrong constant name initialize<defaultArg>1
19301
+ # wrong constant name initialize
19302
+ # wrong constant name json
19303
+ # wrong constant name response
19304
+ # wrong constant name success?
19305
+ # wrong constant name successful?
19306
+ # wrong constant name time
19307
+ # wrong constant name url
19308
+ # wrong constant name url_obj
19309
+ # wrong constant name <static-init>
19310
+ # undefined method `head<defaultArg>1' for class `URL::TyHandler'
19311
+ # wrong constant name head<defaultArg>1
19312
+ # wrong constant name head
19313
+ # wrong constant name <static-init>
19314
+ # wrong constant name <static-init>
19315
+ # wrong constant name <static-init>
19316
+ # wrong constant name json_handler
19317
+ # wrong constant name json_handler=
19318
+ # wrong constant name req_handler
19319
+ # wrong constant name req_handler=
19320
+ # wrong constant name bind_call
18233
19321
  # wrong constant name clone
18234
19322
  # wrong constant name original_name
18235
19323
  # wrong constant name tag
@@ -18682,6 +19770,8 @@
18682
19770
  # wrong constant name <static-init>
18683
19771
  # wrong constant name const_missing
18684
19772
  # wrong constant name warn
19773
+ # wrong constant name []
19774
+ # wrong constant name []=
18685
19775
  # wrong constant name <Class:API>
18686
19776
  # wrong constant name <Class:AssertionFailure>
18687
19777
  # wrong constant name <Class:BodyPattern>
@@ -18770,7 +19860,6 @@
18770
19860
  # wrong constant name show_stubbing_instructions
18771
19861
  # wrong constant name show_stubbing_instructions=
18772
19862
  # wrong constant name <static-init>
18773
- # wrong constant name instance
18774
19863
  # wrong constant name <static-init>
18775
19864
  # wrong constant name warning
18776
19865
  # wrong constant name initialize
@@ -18791,7 +19880,6 @@
18791
19880
  # wrong constant name http_lib_adapters=
18792
19881
  # wrong constant name register
18793
19882
  # wrong constant name <static-init>
18794
- # wrong constant name instance
18795
19883
  # wrong constant name <Class:NetHttpAdapter>
18796
19884
  # wrong constant name <static-init>
18797
19885
  # wrong constant name disable!
@@ -18907,7 +19995,6 @@
18907
19995
  # wrong constant name reset!
18908
19996
  # wrong constant name times_executed
18909
19997
  # wrong constant name <static-init>
18910
- # wrong constant name instance
18911
19998
  # undefined method `initialize<defaultArg>1' for class `WebMock::RequestSignature'
18912
19999
  # Did you mean? initialize_dup
18913
20000
  # wrong constant name ==
@@ -18990,7 +20077,6 @@
18990
20077
  # wrong constant name reset!
18991
20078
  # wrong constant name response_for_request
18992
20079
  # wrong constant name <static-init>
18993
- # wrong constant name instance
18994
20080
  # undefined method `to_s<defaultArg>1' for class `WebMock::StubRequestSnippet'
18995
20081
  # wrong constant name body_pattern
18996
20082
  # wrong constant name initialize
@@ -19144,6 +20230,7 @@
19144
20230
  # wrong constant name show_stubbing_instructions?
19145
20231
  # wrong constant name version
19146
20232
  # wrong constant name inherited
20233
+ # wrong constant name inherited
19147
20234
  # wrong constant name <Class:CLI>
19148
20235
  # wrong constant name <Class:CodeObjects>
19149
20236
  # wrong constant name <Class:Config>
@@ -23197,13 +24284,13 @@
23197
24284
  # undefined method `skip<defaultArg>1' for class `RDoc::Markup::Parser'
23198
24285
  # wrong constant name <Class:Error>
23199
24286
  # uninitialized constant RDoc::Markup::Parser::MARKUP_FORMAT
24287
+ # wrong constant name <Class:MyStringScanner>
23200
24288
  # wrong constant name <Class:ParseError>
23201
24289
  # uninitialized constant RDoc::Markup::Parser::TO_HTML_CHARACTERS
23202
24290
  # wrong constant name build_heading
23203
24291
  # wrong constant name build_list
23204
24292
  # wrong constant name build_paragraph
23205
24293
  # wrong constant name build_verbatim
23206
- # wrong constant name char_pos
23207
24294
  # wrong constant name debug
23208
24295
  # wrong constant name debug=
23209
24296
  # wrong constant name get
@@ -23214,11 +24301,19 @@
23214
24301
  # wrong constant name setup_scanner
23215
24302
  # wrong constant name skip<defaultArg>1
23216
24303
  # wrong constant name skip
23217
- # wrong constant name token_pos
23218
24304
  # wrong constant name tokenize
23219
24305
  # wrong constant name tokens
23220
24306
  # wrong constant name unget
23221
24307
  # wrong constant name <static-init>
24308
+ # wrong constant name []
24309
+ # wrong constant name eos?
24310
+ # wrong constant name initialize
24311
+ # wrong constant name matched
24312
+ # wrong constant name newline!
24313
+ # wrong constant name pos
24314
+ # wrong constant name scan
24315
+ # wrong constant name unscan
24316
+ # wrong constant name <static-init>
23222
24317
  # wrong constant name <static-init>
23223
24318
  # wrong constant name <static-init>
23224
24319
  # wrong constant name parse