etwin 0.0.3 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -0
- data/lib/etwin.rb +1 -0
- data/lib/etwin/auth.rb +1 -0
- data/lib/etwin/auth/_auth_context.rb +1 -0
- data/lib/etwin/auth/access_token_auth_context.rb +103 -0
- data/lib/etwin/auth/auth_type.rb +1 -0
- data/lib/etwin/client/auth.rb +1 -1
- data/lib/etwin/client/http_etwin_client.rb +1 -1
- data/lib/etwin/oauth.rb +13 -0
- data/lib/etwin/oauth/oauth_client_display_name.rb +57 -0
- data/lib/etwin/oauth/oauth_client_id.rb +57 -0
- data/lib/etwin/oauth/oauth_client_key.rb +57 -0
- data/lib/etwin/oauth/short_oauth_client.rb +104 -0
- data/lib/etwin/version.rb +1 -1
- data/sorbet/rbi/gems/debase.rbi +2 -2
- data/sorbet/rbi/gems/faraday.rbi +623 -0
- data/sorbet/rbi/gems/irb.rbi +3 -3
- data/sorbet/rbi/gems/multipart-post.rbi +53 -0
- data/sorbet/rbi/gems/rspec-core.rbi +17 -0
- data/sorbet/rbi/gems/rspec-expectations.rbi +5 -5
- data/sorbet/rbi/gems/rubocop-sorbet.rbi +157 -0
- data/sorbet/rbi/hidden-definitions/errors.txt +220 -97
- data/sorbet/rbi/hidden-definitions/hidden.rbi +530 -108
- data/sorbet/rbi/sorbet-typed/lib/faraday/all/faraday.rbi +756 -0
- data/sorbet/rbi/todo.rbi +2 -0
- metadata +12 -2
data/sorbet/rbi/gems/irb.rbi
CHANGED
@@ -306,7 +306,7 @@ class IRB::Color::SymbolState
|
|
306
306
|
def initialize; end
|
307
307
|
def scan_token(token); end
|
308
308
|
end
|
309
|
-
class
|
309
|
+
class InvalidName___Class_0x00___Vec_9
|
310
310
|
def cross(other); end
|
311
311
|
def dot(other); end
|
312
312
|
def initialize(x, y, z); end
|
@@ -316,13 +316,13 @@ class InvalidName___Class_0x00___Vec_1
|
|
316
316
|
def y; end
|
317
317
|
def z; end
|
318
318
|
end
|
319
|
-
class
|
319
|
+
class InvalidName___Class_0x00___Canvas_10
|
320
320
|
def draw; end
|
321
321
|
def initialize(arg0); end
|
322
322
|
def line(arg0, arg1); end
|
323
323
|
def line0(p1, p2); end
|
324
324
|
end
|
325
|
-
class
|
325
|
+
class InvalidName___Class_0x00___RubyModel_11
|
326
326
|
def init_ruby_model; end
|
327
327
|
def initialize; end
|
328
328
|
def render_frame(i); end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# This file is autogenerated. Do not edit it by hand. Regenerate it with:
|
2
|
+
# srb rbi gems
|
3
|
+
|
4
|
+
# typed: strict
|
5
|
+
#
|
6
|
+
# If you would like to make changes to this file, great! Please create the gem's shim here:
|
7
|
+
#
|
8
|
+
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/multipart-post/all/multipart-post.rbi
|
9
|
+
#
|
10
|
+
# multipart-post-2.1.1
|
11
|
+
|
12
|
+
class CompositeReadIO
|
13
|
+
def advance_io; end
|
14
|
+
def current_io; end
|
15
|
+
def initialize(*ios); end
|
16
|
+
def read(length = nil, outbuf = nil); end
|
17
|
+
def rewind; end
|
18
|
+
end
|
19
|
+
class UploadIO
|
20
|
+
def content_type; end
|
21
|
+
def initialize(filename_or_io, content_type, filename = nil, opts = nil); end
|
22
|
+
def io; end
|
23
|
+
def local_path; end
|
24
|
+
def method_missing(*args); end
|
25
|
+
def opts; end
|
26
|
+
def original_filename; end
|
27
|
+
def respond_to?(meth, include_all = nil); end
|
28
|
+
def self.convert!(io, content_type, original_filename, local_path); end
|
29
|
+
end
|
30
|
+
module Parts
|
31
|
+
end
|
32
|
+
module Parts::Part
|
33
|
+
def length; end
|
34
|
+
def self.file?(value); end
|
35
|
+
def self.new(boundary, name, value, headers = nil); end
|
36
|
+
def to_io; end
|
37
|
+
end
|
38
|
+
class Parts::ParamPart
|
39
|
+
def build_part(boundary, name, value, headers = nil); end
|
40
|
+
def initialize(boundary, name, value, headers = nil); end
|
41
|
+
def length; end
|
42
|
+
include Parts::Part
|
43
|
+
end
|
44
|
+
class Parts::FilePart
|
45
|
+
def build_head(boundary, name, filename, type, content_len, opts = nil); end
|
46
|
+
def initialize(boundary, name, io, headers = nil); end
|
47
|
+
def length; end
|
48
|
+
include Parts::Part
|
49
|
+
end
|
50
|
+
class Parts::EpiloguePart
|
51
|
+
def initialize(boundary); end
|
52
|
+
include Parts::Part
|
53
|
+
end
|
@@ -1646,7 +1646,9 @@ class RSpec::Core::ExampleGroup
|
|
1646
1646
|
extend RSpec::Core::MemoizedHelpers::ClassMethods
|
1647
1647
|
extend RSpec::Core::SharedExampleGroup
|
1648
1648
|
include RSpec::Core::MemoizedHelpers
|
1649
|
+
include RSpec::Core::MockingAdapters::RSpec
|
1649
1650
|
include RSpec::Core::Pending
|
1651
|
+
include RSpec::Matchers
|
1650
1652
|
end
|
1651
1653
|
class RSpec::Core::ExampleGroup::WrongScopeError < NoMethodError
|
1652
1654
|
end
|
@@ -1918,3 +1920,18 @@ module RSpec::Core::MockingAdapters::RSpec
|
|
1918
1920
|
include RSpec::Mocks::ExampleMethods
|
1919
1921
|
include RSpec::Mocks::ExampleMethods::ExpectHost
|
1920
1922
|
end
|
1923
|
+
class RSpec::ExampleGroups::EtwinAuthAccessTokenAuthContext < RSpec::Core::ExampleGroup
|
1924
|
+
extend RSpec::Matchers::DSL
|
1925
|
+
end
|
1926
|
+
class RSpec::Expectations::MultipleExpectationsNotMetError < RSpec::Expectations::ExpectationNotMetError
|
1927
|
+
include RSpec::Core::MultipleExceptionError::InterfaceTag
|
1928
|
+
end
|
1929
|
+
class RSpec::ExampleGroups::EtwinAuthAuthContext < RSpec::Core::ExampleGroup
|
1930
|
+
extend RSpec::Matchers::DSL
|
1931
|
+
end
|
1932
|
+
class RSpec::ExampleGroups::EtwinAuthGuestAuthContext < RSpec::Core::ExampleGroup
|
1933
|
+
extend RSpec::Matchers::DSL
|
1934
|
+
end
|
1935
|
+
class RSpec::ExampleGroups::EtwinAuthUserAuthContext < RSpec::Core::ExampleGroup
|
1936
|
+
extend RSpec::Matchers::DSL
|
1937
|
+
end
|
@@ -348,7 +348,7 @@ end
|
|
348
348
|
module RSpec::Expectations::Configuration::NullBacktraceFormatter
|
349
349
|
def self.format_backtrace(backtrace); end
|
350
350
|
end
|
351
|
-
class
|
351
|
+
class InvalidName___Class_0x00___Differ_12
|
352
352
|
end
|
353
353
|
module RSpec::Expectations::ExpectationHelper
|
354
354
|
def self.check_message(msg); end
|
@@ -815,7 +815,7 @@ class RSpec::Matchers::BuiltIn::Exist < RSpec::Matchers::BuiltIn::BaseMatcher
|
|
815
815
|
def initialize(*expected); end
|
816
816
|
def matches?(actual); end
|
817
817
|
end
|
818
|
-
class
|
818
|
+
class Anonymous_Struct_13 < Struct
|
819
819
|
def actual; end
|
820
820
|
def actual=(_); end
|
821
821
|
def expected; end
|
@@ -825,7 +825,7 @@ class Anonymous_Struct_5 < Struct
|
|
825
825
|
def self.members; end
|
826
826
|
def self.new(*arg0); end
|
827
827
|
end
|
828
|
-
class RSpec::Matchers::BuiltIn::Exist::ExistenceTest <
|
828
|
+
class RSpec::Matchers::BuiltIn::Exist::ExistenceTest < Anonymous_Struct_13
|
829
829
|
def actual_exists?; end
|
830
830
|
def deprecated(predicate, actual); end
|
831
831
|
def existence_values; end
|
@@ -989,7 +989,7 @@ module RSpec::Matchers::BuiltIn::CaptureStderr
|
|
989
989
|
def self.capture(block); end
|
990
990
|
def self.name; end
|
991
991
|
end
|
992
|
-
class
|
992
|
+
class Anonymous_Struct_14 < Struct
|
993
993
|
def name; end
|
994
994
|
def name=(_); end
|
995
995
|
def self.[](*arg0); end
|
@@ -999,7 +999,7 @@ class Anonymous_Struct_6 < Struct
|
|
999
999
|
def stream; end
|
1000
1000
|
def stream=(_); end
|
1001
1001
|
end
|
1002
|
-
class RSpec::Matchers::BuiltIn::CaptureStreamToTempfile <
|
1002
|
+
class RSpec::Matchers::BuiltIn::CaptureStreamToTempfile < Anonymous_Struct_14
|
1003
1003
|
def capture(block); end
|
1004
1004
|
end
|
1005
1005
|
class RSpec::Matchers::BuiltIn::RaiseError
|
@@ -0,0 +1,157 @@
|
|
1
|
+
# This file is autogenerated. Do not edit it by hand. Regenerate it with:
|
2
|
+
# srb rbi gems
|
3
|
+
|
4
|
+
# typed: strict
|
5
|
+
#
|
6
|
+
# If you would like to make changes to this file, great! Please create the gem's shim here:
|
7
|
+
#
|
8
|
+
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rubocop-sorbet/all/rubocop-sorbet.rbi
|
9
|
+
#
|
10
|
+
# rubocop-sorbet-0.5.1
|
11
|
+
|
12
|
+
module RuboCop
|
13
|
+
end
|
14
|
+
module RuboCop::Sorbet
|
15
|
+
end
|
16
|
+
class RuboCop::Sorbet::Error < StandardError
|
17
|
+
end
|
18
|
+
module RuboCop::Sorbet::Inject
|
19
|
+
def self.defaults!; end
|
20
|
+
end
|
21
|
+
module RuboCop::Cop
|
22
|
+
end
|
23
|
+
module RuboCop::Cop::Sorbet
|
24
|
+
end
|
25
|
+
class RuboCop::Cop::Sorbet::BindingConstantWithoutTypeAlias < RuboCop::Cop::Cop
|
26
|
+
def autocorrect(node); end
|
27
|
+
def binding_unaliased_type?(param0 = nil); end
|
28
|
+
def dynamic_type_creation_with_block?(param0 = nil); end
|
29
|
+
def generic_parameter_decl?(param0 = nil); end
|
30
|
+
def method_needing_aliasing_on_t?(param0); end
|
31
|
+
def not_dynamic_type_creation_with_block?(node); end
|
32
|
+
def not_generic_parameter_decl?(node); end
|
33
|
+
def not_nil?(node); end
|
34
|
+
def not_t_let?(node); end
|
35
|
+
def on_casgn(node); end
|
36
|
+
def t_let?(param0 = nil); end
|
37
|
+
def using_deprecated_type_alias_syntax?(param0 = nil); end
|
38
|
+
def using_type_alias?(param0 = nil); end
|
39
|
+
end
|
40
|
+
class RuboCop::Cop::Sorbet::ConstantsFromStrings < RuboCop::Cop::Cop
|
41
|
+
def constant_from_string?(param0 = nil); end
|
42
|
+
def on_send(node); end
|
43
|
+
end
|
44
|
+
class RuboCop::Cop::Sorbet::ForbidSuperclassConstLiteral < RuboCop::Cop::Cop
|
45
|
+
def not_lit_const_superclass?(param0 = nil); end
|
46
|
+
def on_class(node); end
|
47
|
+
end
|
48
|
+
class RuboCop::Cop::Sorbet::ForbidIncludeConstLiteral < RuboCop::Cop::Cop
|
49
|
+
def initialize(*arg0); end
|
50
|
+
def not_lit_const_include?(param0 = nil); end
|
51
|
+
def on_send(node); end
|
52
|
+
def used_names; end
|
53
|
+
def used_names=(arg0); end
|
54
|
+
end
|
55
|
+
class RuboCop::Cop::Sorbet::ForbidUntypedStructProps < RuboCop::Cop::Cop
|
56
|
+
def on_class(node); end
|
57
|
+
def subclass_of_t_struct?(param0 = nil); end
|
58
|
+
def t_nilable_untyped(param0 = nil); end
|
59
|
+
def t_struct(param0 = nil); end
|
60
|
+
def t_untyped(param0 = nil); end
|
61
|
+
def untyped_props(param0); end
|
62
|
+
end
|
63
|
+
class RuboCop::Cop::Sorbet::AllowIncompatibleOverride < RuboCop::Cop::Cop
|
64
|
+
def allow_incompatible?(param0); end
|
65
|
+
def allow_incompatible_override?(param0 = nil); end
|
66
|
+
def not_nil?(node); end
|
67
|
+
def on_send(node); end
|
68
|
+
def sig?(param0); end
|
69
|
+
end
|
70
|
+
class RuboCop::Cop::Sorbet::SignatureCop < RuboCop::Cop::Cop
|
71
|
+
def on_block(node); end
|
72
|
+
def on_signature(_); end
|
73
|
+
def signature?(param0 = nil); end
|
74
|
+
end
|
75
|
+
class RuboCop::Cop::Sorbet::CheckedTrueInSignature < RuboCop::Cop::Sorbet::SignatureCop
|
76
|
+
def offending_node(param0); end
|
77
|
+
def on_signature(node); end
|
78
|
+
include RuboCop::Cop::RangeHelp
|
79
|
+
end
|
80
|
+
class RuboCop::Cop::Sorbet::KeywordArgumentOrdering < RuboCop::Cop::Sorbet::SignatureCop
|
81
|
+
def check_order_for_kwoptargs(parameters); end
|
82
|
+
def on_signature(node); end
|
83
|
+
end
|
84
|
+
class RuboCop::Cop::Sorbet::ParametersOrderingInSignature < RuboCop::Cop::Sorbet::SignatureCop
|
85
|
+
def check_for_inconsistent_param_ordering(sig_params_order, parameters); end
|
86
|
+
def extract_parameters(sig_params); end
|
87
|
+
def on_signature(node); end
|
88
|
+
def signature_params(param0); end
|
89
|
+
end
|
90
|
+
class RuboCop::Cop::Sorbet::SignatureBuildOrder < RuboCop::Cop::Sorbet::SignatureCop
|
91
|
+
def autocorrect(node); end
|
92
|
+
def call_chain(sig_child_node); end
|
93
|
+
def can_autocorrect?; end
|
94
|
+
def node_with_index_sends(node); end
|
95
|
+
def on_signature(node); end
|
96
|
+
def root_call(param0); end
|
97
|
+
end
|
98
|
+
class RuboCop::Cop::Sorbet::EnforceSignatures < RuboCop::Cop::Sorbet::SignatureCop
|
99
|
+
def accessor?(param0 = nil); end
|
100
|
+
def autocorrect(node); end
|
101
|
+
def check_node(node); end
|
102
|
+
def on_def(node); end
|
103
|
+
def on_defs(node); end
|
104
|
+
def on_send(node); end
|
105
|
+
def param_type_placeholder; end
|
106
|
+
def previous_node(node); end
|
107
|
+
def return_type_placeholder; end
|
108
|
+
end
|
109
|
+
class RuboCop::Cop::Sorbet::EnforceSignatures::SigSuggestion
|
110
|
+
def generate_params; end
|
111
|
+
def generate_return; end
|
112
|
+
def initialize(indent, param_placeholder, return_placeholder); end
|
113
|
+
def params; end
|
114
|
+
def params=(arg0); end
|
115
|
+
def returns; end
|
116
|
+
def returns=(arg0); end
|
117
|
+
def to_autocorrect; end
|
118
|
+
end
|
119
|
+
class RuboCop::Cop::Sorbet::ValidSigil < RuboCop::Cop::Cop
|
120
|
+
def autocorrect(_node); end
|
121
|
+
def check_sigil_present(sigil); end
|
122
|
+
def check_strictness_level(sigil, strictness); end
|
123
|
+
def check_strictness_not_empty(sigil, strictness); end
|
124
|
+
def check_strictness_valid(sigil, strictness); end
|
125
|
+
def extract_sigil(processed_source); end
|
126
|
+
def extract_strictness(sigil); end
|
127
|
+
def investigate(processed_source); end
|
128
|
+
def minimum_strictness; end
|
129
|
+
def require_sigil_on_all_files?; end
|
130
|
+
def suggested_strictness; end
|
131
|
+
def suggested_strictness_level(minimum_strictness, suggested_strictness); end
|
132
|
+
end
|
133
|
+
class RuboCop::Cop::Sorbet::HasSigil < RuboCop::Cop::Sorbet::ValidSigil
|
134
|
+
def require_sigil_on_all_files?; end
|
135
|
+
end
|
136
|
+
class RuboCop::Cop::Sorbet::IgnoreSigil < RuboCop::Cop::Sorbet::HasSigil
|
137
|
+
def minimum_strictness; end
|
138
|
+
end
|
139
|
+
class RuboCop::Cop::Sorbet::FalseSigil < RuboCop::Cop::Sorbet::HasSigil
|
140
|
+
def minimum_strictness; end
|
141
|
+
end
|
142
|
+
class RuboCop::Cop::Sorbet::TrueSigil < RuboCop::Cop::Sorbet::HasSigil
|
143
|
+
def minimum_strictness; end
|
144
|
+
end
|
145
|
+
class RuboCop::Cop::Sorbet::StrictSigil < RuboCop::Cop::Sorbet::HasSigil
|
146
|
+
def minimum_strictness; end
|
147
|
+
end
|
148
|
+
class RuboCop::Cop::Sorbet::StrongSigil < RuboCop::Cop::Sorbet::HasSigil
|
149
|
+
def minimum_strictness; end
|
150
|
+
end
|
151
|
+
class RuboCop::Cop::Sorbet::EnforceSigilOrder < RuboCop::Cop::Sorbet::ValidSigil
|
152
|
+
def autocorrect(_node); end
|
153
|
+
def check_magic_comments_order(tokens); end
|
154
|
+
def extract_magic_comments(processed_source); end
|
155
|
+
def investigate(processed_source); end
|
156
|
+
include RuboCop::Cop::RangeHelp
|
157
|
+
end
|
@@ -991,12 +991,12 @@
|
|
991
991
|
# Did you mean? Bundler::URI::SCHEME
|
992
992
|
# uninitialized constant Bundler::URI::FTP::TBLDECWWWCOMP_
|
993
993
|
# Did you mean? Bundler::URI::FTP::TBLENCWWWCOMP_
|
994
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
995
994
|
# Bundler::URI::TBLDECWWWCOMP_
|
995
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
996
996
|
# uninitialized constant Bundler::URI::FTP::TBLENCWWWCOMP_
|
997
997
|
# Did you mean? Bundler::URI::FTP::TBLDECWWWCOMP_
|
998
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
999
998
|
# Bundler::URI::TBLDECWWWCOMP_
|
999
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1000
1000
|
# uninitialized constant Bundler::URI::FTP::UNSAFE
|
1001
1001
|
# Did you mean? Bundler::URI::UNSAFE
|
1002
1002
|
# uninitialized constant Bundler::URI::FTP::URI_REF
|
@@ -1057,12 +1057,12 @@
|
|
1057
1057
|
# Did you mean? Bundler::URI::SCHEME
|
1058
1058
|
# uninitialized constant Bundler::URI::File::TBLDECWWWCOMP_
|
1059
1059
|
# Did you mean? Bundler::URI::File::TBLENCWWWCOMP_
|
1060
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1061
1060
|
# Bundler::URI::TBLDECWWWCOMP_
|
1061
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1062
1062
|
# uninitialized constant Bundler::URI::File::TBLENCWWWCOMP_
|
1063
1063
|
# Did you mean? Bundler::URI::File::TBLDECWWWCOMP_
|
1064
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1065
1064
|
# Bundler::URI::TBLDECWWWCOMP_
|
1065
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1066
1066
|
# uninitialized constant Bundler::URI::File::UNSAFE
|
1067
1067
|
# Did you mean? Bundler::URI::UNSAFE
|
1068
1068
|
# uninitialized constant Bundler::URI::File::URI_REF
|
@@ -1126,12 +1126,12 @@
|
|
1126
1126
|
# Did you mean? Bundler::URI::SCHEME
|
1127
1127
|
# uninitialized constant Bundler::URI::Generic::TBLDECWWWCOMP_
|
1128
1128
|
# Did you mean? Bundler::URI::Generic::TBLENCWWWCOMP_
|
1129
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1130
1129
|
# Bundler::URI::TBLDECWWWCOMP_
|
1130
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1131
1131
|
# uninitialized constant Bundler::URI::Generic::TBLENCWWWCOMP_
|
1132
1132
|
# Did you mean? Bundler::URI::Generic::TBLDECWWWCOMP_
|
1133
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1134
1133
|
# Bundler::URI::TBLDECWWWCOMP_
|
1134
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1135
1135
|
# uninitialized constant Bundler::URI::Generic::UNSAFE
|
1136
1136
|
# Did you mean? Bundler::URI::UNSAFE
|
1137
1137
|
# uninitialized constant Bundler::URI::Generic::URI_REF
|
@@ -1245,12 +1245,12 @@
|
|
1245
1245
|
# Did you mean? Bundler::URI::SCHEME
|
1246
1246
|
# uninitialized constant Bundler::URI::HTTP::TBLDECWWWCOMP_
|
1247
1247
|
# Did you mean? Bundler::URI::HTTP::TBLENCWWWCOMP_
|
1248
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1249
1248
|
# Bundler::URI::TBLDECWWWCOMP_
|
1249
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1250
1250
|
# uninitialized constant Bundler::URI::HTTP::TBLENCWWWCOMP_
|
1251
1251
|
# Did you mean? Bundler::URI::HTTP::TBLDECWWWCOMP_
|
1252
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1253
1252
|
# Bundler::URI::TBLDECWWWCOMP_
|
1253
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1254
1254
|
# uninitialized constant Bundler::URI::HTTP::UNSAFE
|
1255
1255
|
# Did you mean? Bundler::URI::UNSAFE
|
1256
1256
|
# uninitialized constant Bundler::URI::HTTP::URI_REF
|
@@ -1309,12 +1309,12 @@
|
|
1309
1309
|
# Did you mean? Bundler::URI::SCHEME
|
1310
1310
|
# uninitialized constant Bundler::URI::HTTPS::TBLDECWWWCOMP_
|
1311
1311
|
# Did you mean? Bundler::URI::HTTPS::TBLENCWWWCOMP_
|
1312
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1313
1312
|
# Bundler::URI::TBLDECWWWCOMP_
|
1313
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1314
1314
|
# uninitialized constant Bundler::URI::HTTPS::TBLENCWWWCOMP_
|
1315
1315
|
# Did you mean? Bundler::URI::HTTPS::TBLDECWWWCOMP_
|
1316
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1317
1316
|
# Bundler::URI::TBLDECWWWCOMP_
|
1317
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1318
1318
|
# uninitialized constant Bundler::URI::HTTPS::UNSAFE
|
1319
1319
|
# Did you mean? Bundler::URI::UNSAFE
|
1320
1320
|
# uninitialized constant Bundler::URI::HTTPS::URI_REF
|
@@ -1373,12 +1373,12 @@
|
|
1373
1373
|
# Did you mean? Bundler::URI::SCHEME
|
1374
1374
|
# uninitialized constant Bundler::URI::LDAP::TBLDECWWWCOMP_
|
1375
1375
|
# Did you mean? Bundler::URI::LDAP::TBLENCWWWCOMP_
|
1376
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1377
1376
|
# Bundler::URI::TBLDECWWWCOMP_
|
1377
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1378
1378
|
# uninitialized constant Bundler::URI::LDAP::TBLENCWWWCOMP_
|
1379
1379
|
# Did you mean? Bundler::URI::LDAP::TBLDECWWWCOMP_
|
1380
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1381
1380
|
# Bundler::URI::TBLDECWWWCOMP_
|
1381
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1382
1382
|
# uninitialized constant Bundler::URI::LDAP::UNSAFE
|
1383
1383
|
# Did you mean? Bundler::URI::UNSAFE
|
1384
1384
|
# uninitialized constant Bundler::URI::LDAP::URI_REF
|
@@ -1460,12 +1460,12 @@
|
|
1460
1460
|
# Did you mean? Bundler::URI::LDAPS::SCOPE_ONE
|
1461
1461
|
# uninitialized constant Bundler::URI::LDAPS::TBLDECWWWCOMP_
|
1462
1462
|
# Did you mean? Bundler::URI::LDAPS::TBLENCWWWCOMP_
|
1463
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1464
1463
|
# Bundler::URI::TBLDECWWWCOMP_
|
1464
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1465
1465
|
# uninitialized constant Bundler::URI::LDAPS::TBLENCWWWCOMP_
|
1466
1466
|
# Did you mean? Bundler::URI::LDAPS::TBLDECWWWCOMP_
|
1467
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1468
1467
|
# Bundler::URI::TBLDECWWWCOMP_
|
1468
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1469
1469
|
# uninitialized constant Bundler::URI::LDAPS::UNSAFE
|
1470
1470
|
# Did you mean? Bundler::URI::UNSAFE
|
1471
1471
|
# uninitialized constant Bundler::URI::LDAPS::URI_REF
|
@@ -1522,12 +1522,12 @@
|
|
1522
1522
|
# Did you mean? Bundler::URI::SCHEME
|
1523
1523
|
# uninitialized constant Bundler::URI::MailTo::TBLDECWWWCOMP_
|
1524
1524
|
# Did you mean? Bundler::URI::MailTo::TBLENCWWWCOMP_
|
1525
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1526
1525
|
# Bundler::URI::TBLDECWWWCOMP_
|
1526
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1527
1527
|
# uninitialized constant Bundler::URI::MailTo::TBLENCWWWCOMP_
|
1528
1528
|
# Did you mean? Bundler::URI::MailTo::TBLDECWWWCOMP_
|
1529
|
-
# Bundler::URI::TBLENCWWWCOMP_
|
1530
1529
|
# Bundler::URI::TBLDECWWWCOMP_
|
1530
|
+
# Bundler::URI::TBLENCWWWCOMP_
|
1531
1531
|
# uninitialized constant Bundler::URI::MailTo::UNSAFE
|
1532
1532
|
# Did you mean? Bundler::URI::UNSAFE
|
1533
1533
|
# uninitialized constant Bundler::URI::MailTo::URI_REF
|
@@ -1953,6 +1953,163 @@
|
|
1953
1953
|
# uninitialized constant Exception2MessageMapper
|
1954
1954
|
# uninitialized constant Exception2MessageMapper
|
1955
1955
|
# wrong constant name <static-init>
|
1956
|
+
# wrong constant name <Class:EMHttp>
|
1957
|
+
# wrong constant name <Class:EMSynchrony>
|
1958
|
+
# wrong constant name <Class:Excon>
|
1959
|
+
# wrong constant name <Class:HTTPClient>
|
1960
|
+
# wrong constant name <Class:NetHttpPersistent>
|
1961
|
+
# wrong constant name <Class:Patron>
|
1962
|
+
# wrong constant name <Class:Rack>
|
1963
|
+
# wrong constant name <Class:Test>
|
1964
|
+
# wrong constant name <Class:Typhoeus>
|
1965
|
+
# uninitialized constant Faraday::Adapter::EMHttp::CONTENT_LENGTH
|
1966
|
+
# Did you mean? Faraday::Adapter::CONTENT_LENGTH
|
1967
|
+
# wrong constant name <Class:Manager>
|
1968
|
+
# wrong constant name <Class:Options>
|
1969
|
+
# uninitialized constant Faraday::Adapter::EMHttp::TIMEOUT_KEYS
|
1970
|
+
# Did you mean? Faraday::Adapter::TIMEOUT_KEYS
|
1971
|
+
# wrong constant name create_request
|
1972
|
+
# wrong constant name error_message
|
1973
|
+
# wrong constant name parallel?
|
1974
|
+
# wrong constant name perform_request
|
1975
|
+
# wrong constant name perform_single_request
|
1976
|
+
# wrong constant name raise_error
|
1977
|
+
# wrong constant name timeout_message?
|
1978
|
+
# wrong constant name add
|
1979
|
+
# wrong constant name check_finished
|
1980
|
+
# wrong constant name perform_request
|
1981
|
+
# wrong constant name reset
|
1982
|
+
# wrong constant name run
|
1983
|
+
# wrong constant name running?
|
1984
|
+
# wrong constant name <static-init>
|
1985
|
+
# wrong constant name configure_compression
|
1986
|
+
# wrong constant name configure_proxy
|
1987
|
+
# wrong constant name configure_socket
|
1988
|
+
# wrong constant name configure_ssl
|
1989
|
+
# wrong constant name configure_timeout
|
1990
|
+
# wrong constant name connection_config
|
1991
|
+
# wrong constant name read_body
|
1992
|
+
# wrong constant name request_config
|
1993
|
+
# wrong constant name request_options
|
1994
|
+
# wrong constant name <static-init>
|
1995
|
+
# wrong constant name <static-init>
|
1996
|
+
# wrong constant name setup_parallel_manager
|
1997
|
+
# uninitialized constant Faraday::Adapter::EMSynchrony::CONTENT_LENGTH
|
1998
|
+
# Did you mean? Faraday::Adapter::CONTENT_LENGTH
|
1999
|
+
# wrong constant name <Class:ParallelManager>
|
2000
|
+
# uninitialized constant Faraday::Adapter::EMSynchrony::TIMEOUT_KEYS
|
2001
|
+
# Did you mean? Faraday::Adapter::TIMEOUT_KEYS
|
2002
|
+
# wrong constant name create_request
|
2003
|
+
# wrong constant name add
|
2004
|
+
# wrong constant name run
|
2005
|
+
# wrong constant name <static-init>
|
2006
|
+
# wrong constant name <static-init>
|
2007
|
+
# wrong constant name setup_parallel_manager
|
2008
|
+
# uninitialized constant Faraday::Adapter::Excon::CONTENT_LENGTH
|
2009
|
+
# Did you mean? Faraday::Adapter::CONTENT_LENGTH
|
2010
|
+
# uninitialized constant Faraday::Adapter::Excon::TIMEOUT_KEYS
|
2011
|
+
# Did you mean? Faraday::Adapter::TIMEOUT_KEYS
|
2012
|
+
# wrong constant name build_connection
|
2013
|
+
# wrong constant name read_body
|
2014
|
+
# wrong constant name <static-init>
|
2015
|
+
# uninitialized constant Faraday::Adapter::HTTPClient::CONTENT_LENGTH
|
2016
|
+
# Did you mean? Faraday::Adapter::CONTENT_LENGTH
|
2017
|
+
# uninitialized constant Faraday::Adapter::HTTPClient::TIMEOUT_KEYS
|
2018
|
+
# Did you mean? Faraday::Adapter::TIMEOUT_KEYS
|
2019
|
+
# wrong constant name build_connection
|
2020
|
+
# wrong constant name configure_client
|
2021
|
+
# wrong constant name configure_proxy
|
2022
|
+
# wrong constant name configure_socket
|
2023
|
+
# wrong constant name configure_ssl
|
2024
|
+
# wrong constant name configure_timeouts
|
2025
|
+
# wrong constant name ssl_cert_store
|
2026
|
+
# wrong constant name ssl_verify_mode
|
2027
|
+
# wrong constant name <static-init>
|
2028
|
+
# uninitialized constant Faraday::Adapter::NetHttp::CONTENT_LENGTH
|
2029
|
+
# Did you mean? Faraday::Adapter::CONTENT_LENGTH
|
2030
|
+
# uninitialized constant Faraday::Adapter::NetHttp::TIMEOUT_KEYS
|
2031
|
+
# Did you mean? Faraday::Adapter::TIMEOUT_KEYS
|
2032
|
+
# uninitialized constant Faraday::Adapter::NetHttpPersistent::CONTENT_LENGTH
|
2033
|
+
# Did you mean? Faraday::Adapter::CONTENT_LENGTH
|
2034
|
+
# uninitialized constant Faraday::Adapter::NetHttpPersistent::NET_HTTP_EXCEPTIONS
|
2035
|
+
# uninitialized constant Faraday::Adapter::NetHttpPersistent::TIMEOUT_KEYS
|
2036
|
+
# Did you mean? Faraday::Adapter::TIMEOUT_KEYS
|
2037
|
+
# wrong constant name <static-init>
|
2038
|
+
# uninitialized constant Faraday::Adapter::Patron::CONTENT_LENGTH
|
2039
|
+
# Did you mean? Faraday::Adapter::CONTENT_LENGTH
|
2040
|
+
# uninitialized constant Faraday::Adapter::Patron::TIMEOUT_KEYS
|
2041
|
+
# Did you mean? Faraday::Adapter::TIMEOUT_KEYS
|
2042
|
+
# wrong constant name build_connection
|
2043
|
+
# wrong constant name configure_proxy
|
2044
|
+
# wrong constant name configure_ssl
|
2045
|
+
# wrong constant name configure_timeouts
|
2046
|
+
# wrong constant name <static-init>
|
2047
|
+
# uninitialized constant Faraday::Adapter::Rack::CONTENT_LENGTH
|
2048
|
+
# Did you mean? Faraday::Adapter::CONTENT_LENGTH
|
2049
|
+
# uninitialized constant Faraday::Adapter::Rack::TIMEOUT_KEYS
|
2050
|
+
# Did you mean? Faraday::Adapter::TIMEOUT_KEYS
|
2051
|
+
# wrong constant name initialize
|
2052
|
+
# wrong constant name <static-init>
|
2053
|
+
# uninitialized constant Faraday::Adapter::Test::CONTENT_LENGTH
|
2054
|
+
# Did you mean? Faraday::Adapter::CONTENT_LENGTH
|
2055
|
+
# wrong constant name <Class:Stub>
|
2056
|
+
# wrong constant name <Class:Stubs>
|
2057
|
+
# uninitialized constant Faraday::Adapter::Test::TIMEOUT_KEYS
|
2058
|
+
# Did you mean? Faraday::Adapter::TIMEOUT_KEYS
|
2059
|
+
# wrong constant name configure
|
2060
|
+
# wrong constant name initialize
|
2061
|
+
# wrong constant name stubs
|
2062
|
+
# wrong constant name stubs=
|
2063
|
+
# wrong constant name headers_match?
|
2064
|
+
# wrong constant name initialize
|
2065
|
+
# wrong constant name matches?
|
2066
|
+
# wrong constant name params_match?
|
2067
|
+
# wrong constant name path_match?
|
2068
|
+
# wrong constant name <static-init>
|
2069
|
+
# wrong constant name <Class:NotFound>
|
2070
|
+
# wrong constant name delete
|
2071
|
+
# wrong constant name empty?
|
2072
|
+
# wrong constant name get
|
2073
|
+
# wrong constant name head
|
2074
|
+
# wrong constant name match
|
2075
|
+
# wrong constant name matches?
|
2076
|
+
# wrong constant name new_stub
|
2077
|
+
# wrong constant name options
|
2078
|
+
# wrong constant name patch
|
2079
|
+
# wrong constant name post
|
2080
|
+
# wrong constant name put
|
2081
|
+
# wrong constant name verify_stubbed_calls
|
2082
|
+
# wrong constant name <static-init>
|
2083
|
+
# wrong constant name <static-init>
|
2084
|
+
# wrong constant name <static-init>
|
2085
|
+
# uninitialized constant Faraday::Adapter::Typhoeus::CONTENT_LENGTH
|
2086
|
+
# Did you mean? Faraday::Adapter::CONTENT_LENGTH
|
2087
|
+
# uninitialized constant Faraday::Adapter::Typhoeus::TIMEOUT_KEYS
|
2088
|
+
# Did you mean? Faraday::Adapter::TIMEOUT_KEYS
|
2089
|
+
# wrong constant name call
|
2090
|
+
# wrong constant name <static-init>
|
2091
|
+
# wrong constant name call
|
2092
|
+
# wrong constant name initialize
|
2093
|
+
# wrong constant name <static-init>
|
2094
|
+
# wrong constant name build_hash
|
2095
|
+
# wrong constant name header
|
2096
|
+
# uninitialized constant Faraday::Request::BasicAuthentication::KEY
|
2097
|
+
# Did you mean? Faraday::Request::Key
|
2098
|
+
# wrong constant name <static-init>
|
2099
|
+
# wrong constant name header
|
2100
|
+
# wrong constant name <Class:Options>
|
2101
|
+
# wrong constant name call
|
2102
|
+
# wrong constant name initialize
|
2103
|
+
# wrong constant name <static-init>
|
2104
|
+
# wrong constant name <static-init>
|
2105
|
+
# uninitialized constant Faraday::Request::Multipart::CONTENT_TYPE
|
2106
|
+
# uninitialized constant Faraday::Request::TokenAuthentication::KEY
|
2107
|
+
# Did you mean? Faraday::Request::Key
|
2108
|
+
# wrong constant name initialize
|
2109
|
+
# wrong constant name <static-init>
|
2110
|
+
# wrong constant name header
|
2111
|
+
# wrong constant name initialize
|
2112
|
+
# wrong constant name <static-init>
|
1956
2113
|
# uninitialized constant Fcntl
|
1957
2114
|
# uninitialized constant Fcntl
|
1958
2115
|
# wrong constant name initialize
|
@@ -2477,55 +2634,6 @@
|
|
2477
2634
|
# wrong constant name ==
|
2478
2635
|
# wrong constant name to_der
|
2479
2636
|
# wrong constant name fips_mode
|
2480
|
-
# wrong constant name __id__!
|
2481
|
-
# wrong constant name __send__!
|
2482
|
-
# wrong constant name class!
|
2483
|
-
# wrong constant name clone!
|
2484
|
-
# wrong constant name define_singleton_method!
|
2485
|
-
# wrong constant name delete_field!
|
2486
|
-
# wrong constant name dig!
|
2487
|
-
# wrong constant name display!
|
2488
|
-
# wrong constant name dup!
|
2489
|
-
# wrong constant name each_pair!
|
2490
|
-
# wrong constant name encode_with
|
2491
|
-
# wrong constant name encode_with!
|
2492
|
-
# wrong constant name enum_for!
|
2493
|
-
# wrong constant name extend!
|
2494
|
-
# wrong constant name freeze!
|
2495
|
-
# wrong constant name hash!
|
2496
|
-
# wrong constant name init_with
|
2497
|
-
# wrong constant name init_with!
|
2498
|
-
# wrong constant name inspect!
|
2499
|
-
# wrong constant name instance_eval!
|
2500
|
-
# wrong constant name instance_exec!
|
2501
|
-
# wrong constant name instance_variable_get!
|
2502
|
-
# wrong constant name instance_variable_set!
|
2503
|
-
# wrong constant name instance_variables!
|
2504
|
-
# wrong constant name itself!
|
2505
|
-
# wrong constant name marshal_dump!
|
2506
|
-
# wrong constant name method!
|
2507
|
-
# wrong constant name methods!
|
2508
|
-
# wrong constant name object_id!
|
2509
|
-
# wrong constant name private_methods!
|
2510
|
-
# wrong constant name protected_methods!
|
2511
|
-
# wrong constant name public_method!
|
2512
|
-
# wrong constant name public_methods!
|
2513
|
-
# wrong constant name public_send!
|
2514
|
-
# wrong constant name remove_instance_variable!
|
2515
|
-
# wrong constant name send!
|
2516
|
-
# wrong constant name singleton_class!
|
2517
|
-
# wrong constant name singleton_method!
|
2518
|
-
# wrong constant name singleton_methods!
|
2519
|
-
# wrong constant name taint!
|
2520
|
-
# wrong constant name tap!
|
2521
|
-
# wrong constant name then!
|
2522
|
-
# wrong constant name to_enum!
|
2523
|
-
# wrong constant name to_h!
|
2524
|
-
# wrong constant name to_s!
|
2525
|
-
# wrong constant name trust!
|
2526
|
-
# wrong constant name untaint!
|
2527
|
-
# wrong constant name untrust!
|
2528
|
-
# wrong constant name yield_self!
|
2529
2637
|
# uninitialized constant OpenURI
|
2530
2638
|
# Did you mean? OpenStruct
|
2531
2639
|
# uninitialized constant OpenURI
|
@@ -2789,8 +2897,8 @@
|
|
2789
2897
|
# Did you mean? Ripper::EVENTS
|
2790
2898
|
# uninitialized constant Ripper::Lexer::EXPR_ARG
|
2791
2899
|
# Did you mean? Ripper::Lexer::EXPR_BEG
|
2792
|
-
# Ripper::EXPR_ARG
|
2793
2900
|
# Ripper::EXPR_BEG
|
2901
|
+
# Ripper::EXPR_ARG
|
2794
2902
|
# uninitialized constant Ripper::Lexer::EXPR_ARG_ANY
|
2795
2903
|
# Did you mean? Ripper::Lexer::EXPR_END_ANY
|
2796
2904
|
# Ripper::Lexer::EXPR_BEG_ANY
|
@@ -2799,8 +2907,8 @@
|
|
2799
2907
|
# Ripper::EXPR_BEG_ANY
|
2800
2908
|
# uninitialized constant Ripper::Lexer::EXPR_BEG
|
2801
2909
|
# Did you mean? Ripper::Lexer::EXPR_ARG
|
2802
|
-
# Ripper::EXPR_ARG
|
2803
2910
|
# Ripper::EXPR_BEG
|
2911
|
+
# Ripper::EXPR_ARG
|
2804
2912
|
# uninitialized constant Ripper::Lexer::EXPR_BEG_ANY
|
2805
2913
|
# Did you mean? Ripper::Lexer::EXPR_END_ANY
|
2806
2914
|
# Ripper::Lexer::EXPR_ARG_ANY
|
@@ -2813,25 +2921,25 @@
|
|
2813
2921
|
# Did you mean? Ripper::Lexer::EXPR_ARG
|
2814
2922
|
# Ripper::EXPR_ARG
|
2815
2923
|
# Ripper::Lexer::EXPR_ENDARG
|
2816
|
-
# Ripper::EXPR_CMDARG
|
2817
2924
|
# Ripper::EXPR_ENDARG
|
2925
|
+
# Ripper::EXPR_CMDARG
|
2818
2926
|
# uninitialized constant Ripper::Lexer::EXPR_DOT
|
2819
2927
|
# Did you mean? Ripper::EXPR_DOT
|
2820
2928
|
# uninitialized constant Ripper::Lexer::EXPR_END
|
2821
2929
|
# Did you mean? Ripper::Lexer::EXPR_MID
|
2822
|
-
# Ripper::EXPR_MID
|
2823
2930
|
# Ripper::EXPR_END
|
2931
|
+
# Ripper::EXPR_MID
|
2824
2932
|
# Ripper::Lexer::EXPR_ENDFN
|
2825
2933
|
# Ripper::EXPR_ENDFN
|
2826
2934
|
# uninitialized constant Ripper::Lexer::EXPR_ENDARG
|
2827
2935
|
# Did you mean? Ripper::Lexer::EXPR_ARG
|
2828
|
-
# Ripper::EXPR_ARG
|
2829
2936
|
# Ripper::EXPR_END
|
2937
|
+
# Ripper::EXPR_ARG
|
2830
2938
|
# Ripper::Lexer::EXPR_ENDFN
|
2831
2939
|
# Ripper::EXPR_ENDFN
|
2832
2940
|
# Ripper::Lexer::EXPR_CMDARG
|
2833
|
-
# Ripper::EXPR_CMDARG
|
2834
2941
|
# Ripper::EXPR_ENDARG
|
2942
|
+
# Ripper::EXPR_CMDARG
|
2835
2943
|
# Ripper::Lexer::EXPR_END_ANY
|
2836
2944
|
# Ripper::EXPR_END_ANY
|
2837
2945
|
# uninitialized constant Ripper::Lexer::EXPR_ENDFN
|
@@ -2868,13 +2976,13 @@
|
|
2868
2976
|
# Ripper::EXPR_LABELED
|
2869
2977
|
# uninitialized constant Ripper::Lexer::EXPR_MID
|
2870
2978
|
# Did you mean? Ripper::Lexer::EXPR_END
|
2871
|
-
# Ripper::EXPR_MID
|
2872
2979
|
# Ripper::EXPR_END
|
2980
|
+
# Ripper::EXPR_MID
|
2873
2981
|
# uninitialized constant Ripper::Lexer::EXPR_NONE
|
2874
|
-
# Did you mean? Ripper::Lexer::
|
2875
|
-
# Ripper::Lexer::
|
2876
|
-
# Ripper::EXPR_DOT
|
2982
|
+
# Did you mean? Ripper::Lexer::EXPR_END
|
2983
|
+
# Ripper::Lexer::EXPR_DOT
|
2877
2984
|
# Ripper::EXPR_END
|
2985
|
+
# Ripper::EXPR_DOT
|
2878
2986
|
# Ripper::EXPR_NONE
|
2879
2987
|
# Ripper::Lexer::EXPR_FNAME
|
2880
2988
|
# Ripper::EXPR_FNAME
|
@@ -2932,8 +3040,8 @@
|
|
2932
3040
|
# Did you mean? Ripper::EVENTS
|
2933
3041
|
# uninitialized constant Ripper::SexpBuilder::EXPR_ARG
|
2934
3042
|
# Did you mean? Ripper::SexpBuilder::EXPR_BEG
|
2935
|
-
# Ripper::EXPR_ARG
|
2936
3043
|
# Ripper::EXPR_BEG
|
3044
|
+
# Ripper::EXPR_ARG
|
2937
3045
|
# uninitialized constant Ripper::SexpBuilder::EXPR_ARG_ANY
|
2938
3046
|
# Did you mean? Ripper::SexpBuilder::EXPR_END_ANY
|
2939
3047
|
# Ripper::SexpBuilder::EXPR_BEG_ANY
|
@@ -2942,8 +3050,8 @@
|
|
2942
3050
|
# Ripper::EXPR_BEG_ANY
|
2943
3051
|
# uninitialized constant Ripper::SexpBuilder::EXPR_BEG
|
2944
3052
|
# Did you mean? Ripper::SexpBuilder::EXPR_ARG
|
2945
|
-
# Ripper::EXPR_ARG
|
2946
3053
|
# Ripper::EXPR_BEG
|
3054
|
+
# Ripper::EXPR_ARG
|
2947
3055
|
# uninitialized constant Ripper::SexpBuilder::EXPR_BEG_ANY
|
2948
3056
|
# Did you mean? Ripper::SexpBuilder::EXPR_END_ANY
|
2949
3057
|
# Ripper::SexpBuilder::EXPR_ARG_ANY
|
@@ -2956,25 +3064,25 @@
|
|
2956
3064
|
# Did you mean? Ripper::SexpBuilder::EXPR_ARG
|
2957
3065
|
# Ripper::EXPR_ARG
|
2958
3066
|
# Ripper::SexpBuilder::EXPR_ENDARG
|
2959
|
-
# Ripper::EXPR_CMDARG
|
2960
3067
|
# Ripper::EXPR_ENDARG
|
3068
|
+
# Ripper::EXPR_CMDARG
|
2961
3069
|
# uninitialized constant Ripper::SexpBuilder::EXPR_DOT
|
2962
3070
|
# Did you mean? Ripper::EXPR_DOT
|
2963
3071
|
# uninitialized constant Ripper::SexpBuilder::EXPR_END
|
2964
3072
|
# Did you mean? Ripper::SexpBuilder::EXPR_MID
|
2965
|
-
# Ripper::EXPR_MID
|
2966
3073
|
# Ripper::EXPR_END
|
3074
|
+
# Ripper::EXPR_MID
|
2967
3075
|
# Ripper::SexpBuilder::EXPR_ENDFN
|
2968
3076
|
# Ripper::EXPR_ENDFN
|
2969
3077
|
# uninitialized constant Ripper::SexpBuilder::EXPR_ENDARG
|
2970
3078
|
# Did you mean? Ripper::SexpBuilder::EXPR_ARG
|
2971
|
-
# Ripper::EXPR_ARG
|
2972
3079
|
# Ripper::EXPR_END
|
3080
|
+
# Ripper::EXPR_ARG
|
2973
3081
|
# Ripper::SexpBuilder::EXPR_ENDFN
|
2974
3082
|
# Ripper::EXPR_ENDFN
|
2975
3083
|
# Ripper::SexpBuilder::EXPR_CMDARG
|
2976
|
-
# Ripper::EXPR_CMDARG
|
2977
3084
|
# Ripper::EXPR_ENDARG
|
3085
|
+
# Ripper::EXPR_CMDARG
|
2978
3086
|
# Ripper::SexpBuilder::EXPR_END_ANY
|
2979
3087
|
# Ripper::EXPR_END_ANY
|
2980
3088
|
# uninitialized constant Ripper::SexpBuilder::EXPR_ENDFN
|
@@ -3011,13 +3119,13 @@
|
|
3011
3119
|
# Ripper::EXPR_LABELED
|
3012
3120
|
# uninitialized constant Ripper::SexpBuilder::EXPR_MID
|
3013
3121
|
# Did you mean? Ripper::SexpBuilder::EXPR_END
|
3014
|
-
# Ripper::EXPR_MID
|
3015
3122
|
# Ripper::EXPR_END
|
3123
|
+
# Ripper::EXPR_MID
|
3016
3124
|
# uninitialized constant Ripper::SexpBuilder::EXPR_NONE
|
3017
|
-
# Did you mean? Ripper::SexpBuilder::
|
3018
|
-
# Ripper::SexpBuilder::
|
3019
|
-
# Ripper::EXPR_DOT
|
3125
|
+
# Did you mean? Ripper::SexpBuilder::EXPR_END
|
3126
|
+
# Ripper::SexpBuilder::EXPR_DOT
|
3020
3127
|
# Ripper::EXPR_END
|
3128
|
+
# Ripper::EXPR_DOT
|
3021
3129
|
# Ripper::EXPR_NONE
|
3022
3130
|
# Ripper::SexpBuilder::EXPR_FNAME
|
3023
3131
|
# Ripper::EXPR_FNAME
|
@@ -3226,8 +3334,8 @@
|
|
3226
3334
|
# Did you mean? Ripper::EVENTS
|
3227
3335
|
# uninitialized constant Ripper::SexpBuilderPP::EXPR_ARG
|
3228
3336
|
# Did you mean? Ripper::SexpBuilderPP::EXPR_BEG
|
3229
|
-
# Ripper::EXPR_ARG
|
3230
3337
|
# Ripper::EXPR_BEG
|
3338
|
+
# Ripper::EXPR_ARG
|
3231
3339
|
# uninitialized constant Ripper::SexpBuilderPP::EXPR_ARG_ANY
|
3232
3340
|
# Did you mean? Ripper::SexpBuilderPP::EXPR_END_ANY
|
3233
3341
|
# Ripper::SexpBuilderPP::EXPR_BEG_ANY
|
@@ -3236,8 +3344,8 @@
|
|
3236
3344
|
# Ripper::EXPR_BEG_ANY
|
3237
3345
|
# uninitialized constant Ripper::SexpBuilderPP::EXPR_BEG
|
3238
3346
|
# Did you mean? Ripper::SexpBuilderPP::EXPR_ARG
|
3239
|
-
# Ripper::EXPR_ARG
|
3240
3347
|
# Ripper::EXPR_BEG
|
3348
|
+
# Ripper::EXPR_ARG
|
3241
3349
|
# uninitialized constant Ripper::SexpBuilderPP::EXPR_BEG_ANY
|
3242
3350
|
# Did you mean? Ripper::SexpBuilderPP::EXPR_END_ANY
|
3243
3351
|
# Ripper::SexpBuilderPP::EXPR_ARG_ANY
|
@@ -3250,25 +3358,25 @@
|
|
3250
3358
|
# Did you mean? Ripper::SexpBuilderPP::EXPR_ARG
|
3251
3359
|
# Ripper::EXPR_ARG
|
3252
3360
|
# Ripper::SexpBuilderPP::EXPR_ENDARG
|
3253
|
-
# Ripper::EXPR_CMDARG
|
3254
3361
|
# Ripper::EXPR_ENDARG
|
3362
|
+
# Ripper::EXPR_CMDARG
|
3255
3363
|
# uninitialized constant Ripper::SexpBuilderPP::EXPR_DOT
|
3256
3364
|
# Did you mean? Ripper::EXPR_DOT
|
3257
3365
|
# uninitialized constant Ripper::SexpBuilderPP::EXPR_END
|
3258
3366
|
# Did you mean? Ripper::SexpBuilderPP::EXPR_MID
|
3259
|
-
# Ripper::EXPR_MID
|
3260
3367
|
# Ripper::EXPR_END
|
3368
|
+
# Ripper::EXPR_MID
|
3261
3369
|
# Ripper::SexpBuilderPP::EXPR_ENDFN
|
3262
3370
|
# Ripper::EXPR_ENDFN
|
3263
3371
|
# uninitialized constant Ripper::SexpBuilderPP::EXPR_ENDARG
|
3264
3372
|
# Did you mean? Ripper::SexpBuilderPP::EXPR_ARG
|
3265
|
-
# Ripper::EXPR_ARG
|
3266
3373
|
# Ripper::EXPR_END
|
3374
|
+
# Ripper::EXPR_ARG
|
3267
3375
|
# Ripper::SexpBuilderPP::EXPR_ENDFN
|
3268
3376
|
# Ripper::EXPR_ENDFN
|
3269
3377
|
# Ripper::SexpBuilderPP::EXPR_CMDARG
|
3270
|
-
# Ripper::EXPR_CMDARG
|
3271
3378
|
# Ripper::EXPR_ENDARG
|
3379
|
+
# Ripper::EXPR_CMDARG
|
3272
3380
|
# Ripper::SexpBuilderPP::EXPR_END_ANY
|
3273
3381
|
# Ripper::EXPR_END_ANY
|
3274
3382
|
# uninitialized constant Ripper::SexpBuilderPP::EXPR_ENDFN
|
@@ -3305,13 +3413,13 @@
|
|
3305
3413
|
# Ripper::EXPR_LABELED
|
3306
3414
|
# uninitialized constant Ripper::SexpBuilderPP::EXPR_MID
|
3307
3415
|
# Did you mean? Ripper::SexpBuilderPP::EXPR_END
|
3308
|
-
# Ripper::EXPR_MID
|
3309
3416
|
# Ripper::EXPR_END
|
3417
|
+
# Ripper::EXPR_MID
|
3310
3418
|
# uninitialized constant Ripper::SexpBuilderPP::EXPR_NONE
|
3311
|
-
# Did you mean? Ripper::SexpBuilderPP::
|
3312
|
-
# Ripper::SexpBuilderPP::
|
3313
|
-
# Ripper::EXPR_DOT
|
3419
|
+
# Did you mean? Ripper::SexpBuilderPP::EXPR_END
|
3420
|
+
# Ripper::SexpBuilderPP::EXPR_DOT
|
3314
3421
|
# Ripper::EXPR_END
|
3422
|
+
# Ripper::EXPR_DOT
|
3315
3423
|
# Ripper::EXPR_NONE
|
3316
3424
|
# Ripper::SexpBuilderPP::EXPR_FNAME
|
3317
3425
|
# Ripper::EXPR_FNAME
|
@@ -4196,6 +4304,21 @@
|
|
4196
4304
|
# uninitialized constant RuboCop::Cop::Security::MarshalLoad::LITERAL_REGEX
|
4197
4305
|
# uninitialized constant RuboCop::Cop::Security::Open::LITERAL_REGEX
|
4198
4306
|
# uninitialized constant RuboCop::Cop::Security::YAMLLoad::LITERAL_REGEX
|
4307
|
+
# uninitialized constant RuboCop::Cop::Sorbet::EnforceSigilOrder::BYTE_ORDER_MARK
|
4308
|
+
# uninitialized constant RuboCop::Cop::Sorbet::EnforceSigilOrder::LITERAL_REGEX
|
4309
|
+
# uninitialized constant RuboCop::Cop::Sorbet::EnforceSigilOrder::RESTRICT_ON_SEND
|
4310
|
+
# uninitialized constant RuboCop::Cop::Sorbet::EnforceSigilOrder::SIGIL_REGEX
|
4311
|
+
# uninitialized constant RuboCop::Cop::Sorbet::EnforceSigilOrder::STRICTNESS_LEVELS
|
4312
|
+
# uninitialized constant RuboCop::Cop::Sorbet::ForbidIncludeConstLiteral::LITERAL_REGEX
|
4313
|
+
# uninitialized constant RuboCop::Cop::Sorbet::ForbidIncludeConstLiteral::RESTRICT_ON_SEND
|
4314
|
+
# uninitialized constant RuboCop::Cop::Sorbet::ForbidSuperclassConstLiteral::LITERAL_REGEX
|
4315
|
+
# uninitialized constant RuboCop::Cop::Sorbet::ForbidSuperclassConstLiteral::RESTRICT_ON_SEND
|
4316
|
+
# uninitialized constant RuboCop::Cop::Sorbet::ForbidUntypedStructProps::LITERAL_REGEX
|
4317
|
+
# uninitialized constant RuboCop::Cop::Sorbet::ForbidUntypedStructProps::RESTRICT_ON_SEND
|
4318
|
+
# uninitialized constant RuboCop::Cop::Sorbet::SignatureBuildOrder::LITERAL_REGEX
|
4319
|
+
# uninitialized constant RuboCop::Cop::Sorbet::SignatureBuildOrder::RESTRICT_ON_SEND
|
4320
|
+
# uninitialized constant RuboCop::Cop::Sorbet::ValidSigil::LITERAL_REGEX
|
4321
|
+
# uninitialized constant RuboCop::Cop::Sorbet::ValidSigil::RESTRICT_ON_SEND
|
4199
4322
|
# uninitialized constant RuboCop::Cop::SpaceBeforePunctuation::BYTE_ORDER_MARK
|
4200
4323
|
# uninitialized constant RuboCop::Cop::Style::AccessModifierDeclarations::LITERAL_REGEX
|
4201
4324
|
# uninitialized constant RuboCop::Cop::Style::AccessorGrouping::BYTE_ORDER_MARK
|
@@ -4841,12 +4964,12 @@
|
|
4841
4964
|
# Did you mean? URI::SCHEME
|
4842
4965
|
# uninitialized constant URI::File::TBLDECWWWCOMP_
|
4843
4966
|
# Did you mean? URI::File::TBLENCWWWCOMP_
|
4844
|
-
# URI::TBLENCWWWCOMP_
|
4845
4967
|
# URI::TBLDECWWWCOMP_
|
4968
|
+
# URI::TBLENCWWWCOMP_
|
4846
4969
|
# uninitialized constant URI::File::TBLENCWWWCOMP_
|
4847
4970
|
# Did you mean? URI::File::TBLDECWWWCOMP_
|
4848
|
-
# URI::TBLENCWWWCOMP_
|
4849
4971
|
# URI::TBLDECWWWCOMP_
|
4972
|
+
# URI::TBLENCWWWCOMP_
|
4850
4973
|
# uninitialized constant URI::File::UNSAFE
|
4851
4974
|
# Did you mean? URI::UNSAFE
|
4852
4975
|
# uninitialized constant URI::File::URI_REF
|