setsuzoku 0.11.9 → 0.12.54

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +5 -13
  3. data/lib/setsuzoku.rb +1 -2
  4. data/lib/setsuzoku/api_strategy.rb +6 -4
  5. data/lib/setsuzoku/auth_strategy.rb +28 -14
  6. data/lib/setsuzoku/credential.rb +10 -0
  7. data/lib/setsuzoku/has_config_context.rb +27 -0
  8. data/lib/setsuzoku/pluggable.rb +6 -4
  9. data/lib/setsuzoku/plugin.rb +1 -1
  10. data/lib/setsuzoku/rspec/dynamic_spec_helper.rb +4 -3
  11. data/lib/setsuzoku/service.rb +1 -1
  12. data/lib/setsuzoku/service/web_service.rb +6 -2
  13. data/lib/setsuzoku/service/web_service/api_strategies/rest_strategy.rb +35 -16
  14. data/lib/setsuzoku/service/web_service/api_strategy.rb +13 -8
  15. data/lib/setsuzoku/service/web_service/auth_strategies/basic_auth_strategy.rb +6 -4
  16. data/lib/setsuzoku/service/web_service/auth_strategies/custom_auth_strategy.rb +66 -0
  17. data/lib/setsuzoku/service/web_service/auth_strategies/o_auth_strategy.rb +25 -88
  18. data/lib/setsuzoku/service/web_service/auth_strategies/strategy_can_use_tokens.rb +175 -0
  19. data/lib/setsuzoku/service/web_service/auth_strategy.rb +1 -14
  20. data/lib/setsuzoku/service/web_service/credentials/basic_auth_credential.rb +3 -3
  21. data/lib/setsuzoku/service/web_service/credentials/custom_auth_credential.rb +46 -0
  22. data/lib/setsuzoku/service/web_service/credentials/o_auth_credential.rb +41 -35
  23. data/lib/setsuzoku/service/web_service/credentials/uses_credential_token.rb +68 -0
  24. data/lib/setsuzoku/service/web_service/service.rb +2 -1
  25. data/lib/setsuzoku/version.rb +1 -1
  26. data/setsuzoku.gemspec +0 -1
  27. data/sorbet/rbi/gems/activesupport.rbi +4 -54
  28. data/sorbet/rbi/gems/i18n.rbi +2 -2
  29. data/sorbet/rbi/gems/rspec-core.rbi +3 -155
  30. data/sorbet/rbi/gems/rspec-expectations.rbi +2 -6
  31. data/sorbet/rbi/gems/rspec-mocks.rbi +1 -5
  32. data/sorbet/rbi/gems/rspec-support.rbi +63 -74
  33. data/sorbet/rbi/gems/rspec.rbi +1 -1
  34. data/sorbet/rbi/gems/webmock.rbi +1 -5
  35. data/sorbet/rbi/hidden-definitions/hidden.rbi +3651 -619
  36. data/sorbet/rbi/sorbet-typed/lib/activesupport/all/activesupport.rbi +17 -17
  37. data/sorbet/rbi/sorbet-typed/lib/faraday/all/faraday.rbi +685 -0
  38. data/sorbet/rbi/todo.rbi +1 -0
  39. metadata +8 -20
  40. data/lib/setsuzoku/utilities.rb +0 -7
  41. data/sorbet/rbi/sorbet-typed/lib/bundler/all/bundler.rbi +0 -8684
  42. data/sorbet/rbi/sorbet-typed/lib/ruby/all/open3.rbi +0 -111
  43. data/sorbet/rbi/sorbet-typed/lib/ruby/all/resolv.rbi +0 -543
@@ -7,7 +7,7 @@
7
7
  #
8
8
  # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rspec-expectations/all/rspec-expectations.rbi
9
9
  #
10
- # rspec-expectations-3.9.2
10
+ # rspec-expectations-3.8.6
11
11
 
12
12
  module RSpec
13
13
  end
@@ -204,7 +204,7 @@ module RSpec::Matchers::DSL::Macros
204
204
  def failure_message_when_negated(&definition); end
205
205
  def match(options = nil, &match_block); end
206
206
  def match_unless_raises(expected_exception = nil, &match_block); end
207
- def match_when_negated(options = nil, &match_block); end
207
+ def match_when_negated(&match_block); end
208
208
  def supports_block_expectations; end
209
209
  end
210
210
  module RSpec::Matchers::DSL::Macros::Deprecated
@@ -1012,13 +1012,10 @@ class RSpec::Matchers::BuiltIn::RespondTo < RSpec::Matchers::BuiltIn::BaseMatche
1012
1012
  def failure_message; end
1013
1013
  def failure_message_when_negated; end
1014
1014
  def find_failing_method_names(actual, filter_method); end
1015
- def ignoring_method_signature_failure!; end
1016
1015
  def initialize(*names); end
1017
1016
  def matches?(actual); end
1018
1017
  def matches_arity?(actual, name); end
1019
- def method_signature_for(actual, name); end
1020
1018
  def pp_names; end
1021
- def setup_method_signature_expectation; end
1022
1019
  def with(n); end
1023
1020
  def with_any_keywords; end
1024
1021
  def with_arity; end
@@ -1069,7 +1066,6 @@ end
1069
1066
  class RSpec::Matchers::BuiltIn::YieldControl < RSpec::Matchers::BuiltIn::BaseMatcher
1070
1067
  def at_least(number); end
1071
1068
  def at_most(number); end
1072
- def count_constraint_to_number(n); end
1073
1069
  def does_not_match?(block); end
1074
1070
  def exactly(number); end
1075
1071
  def failure_message; end
@@ -7,7 +7,7 @@
7
7
  #
8
8
  # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rspec-mocks/all/rspec-mocks.rbi
9
9
  #
10
- # rspec-mocks-3.9.1
10
+ # rspec-mocks-3.8.2
11
11
 
12
12
  module RSpec
13
13
  end
@@ -334,7 +334,6 @@ class RSpec::Mocks::MessageExpectation
334
334
  def once(&block); end
335
335
  def ordered(&block); end
336
336
  def thrice(&block); end
337
- def time(&block); end
338
337
  def times(&block); end
339
338
  def to_s; end
340
339
  def twice(&block); end
@@ -845,7 +844,6 @@ module RSpec::Mocks::AnyInstance::Chain::Customizations
845
844
  def once(*args, &block); end
846
845
  def self.record(method_name); end
847
846
  def thrice(*args, &block); end
848
- def time(*args, &block); end
849
847
  def times(*args, &block); end
850
848
  def twice(*args, &block); end
851
849
  def with(*args, &block); end
@@ -997,7 +995,6 @@ class RSpec::Mocks::Matchers::HaveReceived
997
995
  def setup_expectation(subject, &block); end
998
996
  def setup_negative_expectation(subject, &block); end
999
997
  def thrice(*args); end
1000
- def time(*args); end
1001
998
  def times(*args); end
1002
999
  def twice(*args); end
1003
1000
  def with(*args); end
@@ -1039,7 +1036,6 @@ class RSpec::Mocks::Matchers::Receive
1039
1036
  def setup_mock_proxy_method_substitute(subject, method, block); end
1040
1037
  def setup_negative_expectation(subject, &block); end
1041
1038
  def thrice(*args, &block); end
1042
- def time(*args, &block); end
1043
1039
  def times(*args, &block); end
1044
1040
  def twice(*args, &block); end
1045
1041
  def warn_if_any_instance(expression, subject); end
@@ -7,7 +7,7 @@
7
7
  #
8
8
  # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rspec-support/all/rspec-support.rbi
9
9
  #
10
- # rspec-support-3.9.3
10
+ # rspec-support-3.8.3
11
11
 
12
12
  module RSpec
13
13
  extend RSpec::Support::Warnings
@@ -58,8 +58,6 @@ module RSpec::Support::Ruby
58
58
  def self.mri?; end
59
59
  def self.non_mri?; end
60
60
  def self.rbx?; end
61
- def self.truffleruby?; end
62
- def truffleruby?; end
63
61
  end
64
62
  module RSpec::Support::RubyFeatures
65
63
  def caller_locations_supported?; end
@@ -80,10 +78,8 @@ module RSpec::Support::RubyFeatures
80
78
  def self.ripper_supported?; end
81
79
  def self.supports_exception_cause?; end
82
80
  def self.supports_rebinding_module_methods?; end
83
- def self.supports_taint?; end
84
81
  def supports_exception_cause?; end
85
82
  def supports_rebinding_module_methods?; end
86
- def supports_taint?; end
87
83
  end
88
84
  module RSpec::Support::AllExceptionsExceptOnesWeMustNotRescue
89
85
  def self.===(exception); end
@@ -120,81 +116,12 @@ class RSpec::Support::ReentrantMutex
120
116
  def initialize; end
121
117
  def synchronize; end
122
118
  end
123
- class RSpec::Support::Mutex < Thread::Mutex
124
- def self.new; end
125
- end
126
119
  class RSpec::Support::DirectoryMaker
127
120
  def self.directory_exists?(dirname); end
128
121
  def self.generate_path(stack, part); end
129
122
  def self.generate_stack(path); end
130
123
  def self.mkdir_p(path); end
131
124
  end
132
- class RSpec::Support::MethodSignature
133
- def arbitrary_kw_args?; end
134
- def classify_arity(arity = nil); end
135
- def classify_parameters; end
136
- def could_contain_kw_args?(args); end
137
- def description; end
138
- def has_kw_args_in?(args); end
139
- def initialize(method); end
140
- def invalid_kw_args_from(given_kw_args); end
141
- def max_non_kw_args; end
142
- def min_non_kw_args; end
143
- def missing_kw_args_from(given_kw_args); end
144
- def non_kw_args_arity_description; end
145
- def optional_kw_args; end
146
- def required_kw_args; end
147
- def unlimited_args?; end
148
- def valid_non_kw_args?(positional_arg_count, optional_max_arg_count = nil); end
149
- end
150
- class RSpec::Support::MethodSignatureExpectation
151
- def empty?; end
152
- def expect_arbitrary_keywords; end
153
- def expect_arbitrary_keywords=(arg0); end
154
- def expect_unlimited_arguments; end
155
- def expect_unlimited_arguments=(arg0); end
156
- def initialize; end
157
- def keywords; end
158
- def keywords=(values); end
159
- def max_count; end
160
- def max_count=(number); end
161
- def min_count; end
162
- def min_count=(number); end
163
- end
164
- class RSpec::Support::BlockSignature < RSpec::Support::MethodSignature
165
- def classify_parameters; end
166
- end
167
- class RSpec::Support::MethodSignatureVerifier
168
- def arbitrary_kw_args?; end
169
- def error_message; end
170
- def initialize(signature, args = nil); end
171
- def invalid_kw_args; end
172
- def kw_args; end
173
- def max_non_kw_args; end
174
- def min_non_kw_args; end
175
- def missing_kw_args; end
176
- def non_kw_args; end
177
- def split_args(*args); end
178
- def unlimited_args?; end
179
- def valid?; end
180
- def valid_non_kw_args?; end
181
- def with_expectation(expectation); end
182
- end
183
- class RSpec::Support::LooseSignatureVerifier < RSpec::Support::MethodSignatureVerifier
184
- def split_args(*args); end
185
- end
186
- class RSpec::Support::LooseSignatureVerifier::SignatureWithKeywordArgumentsMatcher
187
- def has_kw_args_in?(args); end
188
- def initialize(signature); end
189
- def invalid_kw_args_from(_kw_args); end
190
- def missing_kw_args_from(_kw_args); end
191
- def non_kw_args_arity_description; end
192
- def valid_non_kw_args?(*args); end
193
- end
194
- module RSpec::Support::WithKeywordsWhenNeeded
195
- def class_exec(klass, *args, &block); end
196
- def self.class_exec(klass, *args, &block); end
197
- end
198
125
  module RSpec::Support::RecursiveConstMethods
199
126
  def const_defined_on?(mod, const_name); end
200
127
  def constants_defined_on(mod); end
@@ -278,3 +205,65 @@ module RSpec::Support::FuzzyMatcher
278
205
  def self.hashes_match?(expected_hash, actual_hash); end
279
206
  def self.values_match?(expected, actual); end
280
207
  end
208
+ class RSpec::Support::MethodSignature
209
+ def arbitrary_kw_args?; end
210
+ def classify_arity(arity = nil); end
211
+ def classify_parameters; end
212
+ def could_contain_kw_args?(args); end
213
+ def description; end
214
+ def has_kw_args_in?(args); end
215
+ def initialize(method); end
216
+ def invalid_kw_args_from(given_kw_args); end
217
+ def max_non_kw_args; end
218
+ def min_non_kw_args; end
219
+ def missing_kw_args_from(given_kw_args); end
220
+ def non_kw_args_arity_description; end
221
+ def optional_kw_args; end
222
+ def required_kw_args; end
223
+ def unlimited_args?; end
224
+ def valid_non_kw_args?(positional_arg_count, optional_max_arg_count = nil); end
225
+ end
226
+ class RSpec::Support::MethodSignatureExpectation
227
+ def empty?; end
228
+ def expect_arbitrary_keywords; end
229
+ def expect_arbitrary_keywords=(arg0); end
230
+ def expect_unlimited_arguments; end
231
+ def expect_unlimited_arguments=(arg0); end
232
+ def initialize; end
233
+ def keywords; end
234
+ def keywords=(values); end
235
+ def max_count; end
236
+ def max_count=(number); end
237
+ def min_count; end
238
+ def min_count=(number); end
239
+ end
240
+ class RSpec::Support::BlockSignature < RSpec::Support::MethodSignature
241
+ def classify_parameters; end
242
+ end
243
+ class RSpec::Support::MethodSignatureVerifier
244
+ def arbitrary_kw_args?; end
245
+ def error_message; end
246
+ def initialize(signature, args = nil); end
247
+ def invalid_kw_args; end
248
+ def kw_args; end
249
+ def max_non_kw_args; end
250
+ def min_non_kw_args; end
251
+ def missing_kw_args; end
252
+ def non_kw_args; end
253
+ def split_args(*args); end
254
+ def unlimited_args?; end
255
+ def valid?; end
256
+ def valid_non_kw_args?; end
257
+ def with_expectation(expectation); end
258
+ end
259
+ class RSpec::Support::LooseSignatureVerifier < RSpec::Support::MethodSignatureVerifier
260
+ def split_args(*args); end
261
+ end
262
+ class RSpec::Support::LooseSignatureVerifier::SignatureWithKeywordArgumentsMatcher
263
+ def has_kw_args_in?(args); end
264
+ def initialize(signature); end
265
+ def invalid_kw_args_from(_kw_args); end
266
+ def missing_kw_args_from(_kw_args); end
267
+ def non_kw_args_arity_description; end
268
+ def valid_non_kw_args?(*args); end
269
+ end
@@ -7,7 +7,7 @@
7
7
  #
8
8
  # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rspec/all/rspec.rbi
9
9
  #
10
- # rspec-3.9.0
10
+ # rspec-3.8.0
11
11
 
12
12
  module RSpec
13
13
  end
@@ -7,7 +7,7 @@
7
7
  #
8
8
  # https://github.com/sorbet/sorbet-typed/new/master?filename=lib/webmock/all/webmock.rbi
9
9
  #
10
- # webmock-3.8.3
10
+ # webmock-3.8.0
11
11
 
12
12
  module WebMock
13
13
  def after_request(*args, &block); end
@@ -522,10 +522,6 @@ class WebMock::WebMockMatcher
522
522
  def twice; end
523
523
  def with(options = nil, &block); end
524
524
  end
525
- class RSpec::ExampleGroups::SetsuzokuPluginMobilePlugin < RSpec::Core::ExampleGroup
526
- include WebMock::API
527
- include WebMock::Matchers
528
- end
529
525
  class RSpec::ExampleGroups::Setsuzoku < RSpec::Core::ExampleGroup
530
526
  include WebMock::API
531
527
  include WebMock::Matchers
@@ -1212,9 +1212,44 @@ module ActiveSupport::Multibyte::Unicode
1212
1212
  end
1213
1213
 
1214
1214
  class ActiveSupport::NumberHelper::NumberConverter
1215
+ def execute(); end
1216
+
1217
+ def initialize(number, options); end
1218
+
1219
+ def namespace(); end
1220
+
1221
+ def namespace=(val); end
1222
+
1223
+ def namespace?(); end
1224
+
1225
+ def number(); end
1226
+
1227
+ def opts(); end
1228
+
1229
+ def validate_float(); end
1230
+
1231
+ def validate_float=(val); end
1232
+
1233
+ def validate_float?(); end
1215
1234
  DEFAULTS = ::T.let(nil, ::T.untyped)
1216
1235
  end
1217
1236
 
1237
+ class ActiveSupport::NumberHelper::NumberConverter
1238
+ def self.convert(number, options); end
1239
+
1240
+ def self.namespace(); end
1241
+
1242
+ def self.namespace=(val); end
1243
+
1244
+ def self.namespace?(); end
1245
+
1246
+ def self.validate_float(); end
1247
+
1248
+ def self.validate_float=(val); end
1249
+
1250
+ def self.validate_float?(); end
1251
+ end
1252
+
1218
1253
  class ActiveSupport::NumberHelper::NumberToCurrencyConverter
1219
1254
  def convert(); end
1220
1255
  end
@@ -1254,6 +1289,13 @@ end
1254
1289
  class ActiveSupport::NumberHelper::NumberToPercentageConverter
1255
1290
  end
1256
1291
 
1292
+ class ActiveSupport::NumberHelper::NumberToPhoneConverter
1293
+ def convert(); end
1294
+ end
1295
+
1296
+ class ActiveSupport::NumberHelper::NumberToPhoneConverter
1297
+ end
1298
+
1257
1299
  class ActiveSupport::NumberHelper::NumberToRoundedConverter
1258
1300
  def convert(); end
1259
1301
  end
@@ -1274,6 +1316,11 @@ end
1274
1316
  class ActiveSupport::NumberHelper::RoundingHelper
1275
1317
  end
1276
1318
 
1319
+ module ActiveSupport::NumberHelper
1320
+ extend ::ActiveSupport::Autoload
1321
+ extend ::ActiveSupport::NumberHelper
1322
+ end
1323
+
1277
1324
  class ActiveSupport::OptionMerger
1278
1325
  def initialize(context, options); end
1279
1326
  end
@@ -1908,575 +1955,3453 @@ class Binding
1908
1955
  def irb(); end
1909
1956
  end
1910
1957
 
1911
- Bundler::Deprecate = Gem::Deprecate
1912
-
1913
- class Bundler::Env
1958
+ module Bundler
1959
+ FREEBSD = ::T.let(nil, ::T.untyped)
1960
+ NULL = ::T.let(nil, ::T.untyped)
1961
+ ORIGINAL_ENV = ::T.let(nil, ::T.untyped)
1962
+ SUDO_MUTEX = ::T.let(nil, ::T.untyped)
1963
+ VERSION = ::T.let(nil, ::T.untyped)
1964
+ WINDOWS = ::T.let(nil, ::T.untyped)
1914
1965
  end
1915
1966
 
1916
- class Bundler::Env
1917
- def self.environment(); end
1918
-
1919
- def self.report(options=T.unsafe(nil)); end
1920
-
1921
- def self.write(io); end
1967
+ class Bundler::APIResponseMismatchError
1968
+ def status_code(); end
1922
1969
  end
1923
1970
 
1924
- class Bundler::FeatureFlag
1925
- def github_https?(); end
1971
+ class Bundler::APIResponseMismatchError
1926
1972
  end
1927
1973
 
1928
- class Bundler::Fetcher
1929
- def fetch_spec(spec); end
1930
-
1931
- def fetchers(); end
1974
+ module Bundler::BuildMetadata
1975
+ end
1932
1976
 
1933
- def http_proxy(); end
1977
+ module Bundler::BuildMetadata
1978
+ def self.built_at(); end
1934
1979
 
1935
- def initialize(remote); end
1980
+ def self.git_commit_sha(); end
1936
1981
 
1937
- def specs(gem_names, source); end
1982
+ def self.release?(); end
1938
1983
 
1939
- def specs_with_retry(gem_names, source); end
1984
+ def self.to_h(); end
1985
+ end
1940
1986
 
1941
- def uri(); end
1987
+ class Bundler::BundlerError
1988
+ end
1942
1989
 
1943
- def use_api(); end
1990
+ class Bundler::BundlerError
1991
+ def self.all_errors(); end
1944
1992
 
1945
- def user_agent(); end
1946
- FAIL_ERRORS = ::T.let(nil, ::T.untyped)
1947
- FETCHERS = ::T.let(nil, ::T.untyped)
1948
- HTTP_ERRORS = ::T.let(nil, ::T.untyped)
1949
- NET_ERRORS = ::T.let(nil, ::T.untyped)
1993
+ def self.status_code(code); end
1950
1994
  end
1951
1995
 
1952
- class Bundler::Fetcher::AuthenticationRequiredError
1953
- def initialize(remote_uri); end
1954
- end
1996
+ class Bundler::CurrentRuby
1997
+ def jruby?(); end
1955
1998
 
1956
- class Bundler::Fetcher::BadAuthenticationError
1957
- def initialize(remote_uri); end
1958
- end
1999
+ def jruby_18?(); end
1959
2000
 
1960
- class Bundler::Fetcher::Base
1961
- def api_fetcher?(); end
2001
+ def jruby_19?(); end
1962
2002
 
1963
- def available?(); end
2003
+ def jruby_1?(); end
1964
2004
 
1965
- def display_uri(); end
2005
+ def jruby_20?(); end
1966
2006
 
1967
- def downloader(); end
2007
+ def jruby_21?(); end
1968
2008
 
1969
- def fetch_uri(); end
2009
+ def jruby_22?(); end
1970
2010
 
1971
- def initialize(downloader, remote, display_uri); end
2011
+ def jruby_23?(); end
1972
2012
 
1973
- def remote(); end
2013
+ def jruby_24?(); end
1974
2014
 
1975
- def remote_uri(); end
1976
- end
2015
+ def jruby_25?(); end
1977
2016
 
1978
- class Bundler::Fetcher::Base
1979
- end
2017
+ def jruby_26?(); end
1980
2018
 
1981
- class Bundler::Fetcher::CertificateFailureError
1982
- def initialize(remote_uri); end
1983
- end
2019
+ def jruby_2?(); end
1984
2020
 
1985
- class Bundler::Fetcher::CompactIndex
1986
- def available?(*args, &blk); end
2021
+ def maglev?(); end
1987
2022
 
1988
- def fetch_spec(*args, &blk); end
2023
+ def maglev_18?(); end
1989
2024
 
1990
- def specs(*args, &blk); end
2025
+ def maglev_19?(); end
1991
2026
 
1992
- def specs_for_names(gem_names); end
1993
- end
2027
+ def maglev_1?(); end
1994
2028
 
1995
- class Bundler::Fetcher::CompactIndex::ClientFetcher
1996
- def call(path, headers); end
2029
+ def maglev_20?(); end
1997
2030
 
1998
- def fetcher(); end
2031
+ def maglev_21?(); end
1999
2032
 
2000
- def fetcher=(_); end
2033
+ def maglev_22?(); end
2001
2034
 
2002
- def ui(); end
2035
+ def maglev_23?(); end
2003
2036
 
2004
- def ui=(_); end
2005
- end
2037
+ def maglev_24?(); end
2006
2038
 
2007
- class Bundler::Fetcher::CompactIndex::ClientFetcher
2008
- def self.[](*_); end
2039
+ def maglev_25?(); end
2009
2040
 
2010
- def self.members(); end
2011
- end
2041
+ def maglev_26?(); end
2012
2042
 
2013
- class Bundler::Fetcher::CompactIndex
2014
- def self.compact_index_request(method_name); end
2015
- end
2043
+ def maglev_2?(); end
2016
2044
 
2017
- class Bundler::Fetcher::Dependency
2018
- def dependency_api_uri(gem_names=T.unsafe(nil)); end
2045
+ def mingw?(); end
2019
2046
 
2020
- def dependency_specs(gem_names); end
2047
+ def mingw_18?(); end
2021
2048
 
2022
- def get_formatted_specs_and_deps(gem_list); end
2049
+ def mingw_19?(); end
2023
2050
 
2024
- def specs(gem_names, full_dependency_list=T.unsafe(nil), last_spec_list=T.unsafe(nil)); end
2051
+ def mingw_1?(); end
2025
2052
 
2026
- def unmarshalled_dep_gems(gem_names); end
2027
- end
2053
+ def mingw_20?(); end
2028
2054
 
2029
- class Bundler::Fetcher::Dependency
2030
- end
2055
+ def mingw_21?(); end
2031
2056
 
2032
- class Bundler::Fetcher::Downloader
2033
- def connection(); end
2057
+ def mingw_22?(); end
2034
2058
 
2035
- def fetch(uri, headers=T.unsafe(nil), counter=T.unsafe(nil)); end
2059
+ def mingw_23?(); end
2036
2060
 
2037
- def initialize(connection, redirect_limit); end
2061
+ def mingw_24?(); end
2038
2062
 
2039
- def redirect_limit(); end
2063
+ def mingw_25?(); end
2040
2064
 
2041
- def request(uri, headers); end
2042
- end
2065
+ def mingw_26?(); end
2043
2066
 
2044
- class Bundler::Fetcher::Downloader
2045
- end
2067
+ def mingw_2?(); end
2046
2068
 
2047
- class Bundler::Fetcher::Index
2048
- def fetch_spec(spec); end
2069
+ def mri?(); end
2049
2070
 
2050
- def specs(_gem_names); end
2051
- end
2071
+ def mri_18?(); end
2052
2072
 
2053
- class Bundler::Fetcher::Index
2054
- end
2073
+ def mri_19?(); end
2055
2074
 
2056
- class Bundler::Fetcher::SSLError
2057
- def initialize(msg=T.unsafe(nil)); end
2058
- end
2075
+ def mri_1?(); end
2059
2076
 
2060
- class Bundler::Fetcher
2061
- def self.api_timeout(); end
2077
+ def mri_20?(); end
2062
2078
 
2063
- def self.api_timeout=(api_timeout); end
2079
+ def mri_21?(); end
2064
2080
 
2065
- def self.disable_endpoint(); end
2081
+ def mri_22?(); end
2066
2082
 
2067
- def self.disable_endpoint=(disable_endpoint); end
2083
+ def mri_23?(); end
2068
2084
 
2069
- def self.max_retries(); end
2085
+ def mri_24?(); end
2070
2086
 
2071
- def self.max_retries=(max_retries); end
2087
+ def mri_25?(); end
2072
2088
 
2073
- def self.redirect_limit(); end
2089
+ def mri_26?(); end
2074
2090
 
2075
- def self.redirect_limit=(redirect_limit); end
2076
- end
2091
+ def mri_2?(); end
2077
2092
 
2078
- class Bundler::GemHelper
2079
- include ::Rake::DSL
2080
- include ::Rake::FileUtilsExt
2081
- include ::FileUtils
2082
- include ::FileUtils::StreamUtils_
2083
- def allowed_push_host(); end
2093
+ def mswin64?(); end
2084
2094
 
2085
- def already_tagged?(); end
2095
+ def mswin64_18?(); end
2086
2096
 
2087
- def base(); end
2097
+ def mswin64_19?(); end
2088
2098
 
2089
- def build_gem(); end
2099
+ def mswin64_1?(); end
2090
2100
 
2091
- def built_gem_path(); end
2101
+ def mswin64_20?(); end
2092
2102
 
2093
- def clean?(); end
2103
+ def mswin64_21?(); end
2094
2104
 
2095
- def committed?(); end
2105
+ def mswin64_22?(); end
2096
2106
 
2097
- def gem_key(); end
2107
+ def mswin64_23?(); end
2098
2108
 
2099
- def gem_push?(); end
2109
+ def mswin64_24?(); end
2100
2110
 
2101
- def gem_push_host(); end
2111
+ def mswin64_25?(); end
2102
2112
 
2103
- def gemspec(); end
2113
+ def mswin64_26?(); end
2104
2114
 
2105
- def git_push(remote=T.unsafe(nil)); end
2115
+ def mswin64_2?(); end
2106
2116
 
2107
- def guard_clean(); end
2117
+ def mswin?(); end
2108
2118
 
2109
- def initialize(base=T.unsafe(nil), name=T.unsafe(nil)); end
2119
+ def mswin_18?(); end
2110
2120
 
2111
- def install(); end
2121
+ def mswin_19?(); end
2112
2122
 
2113
- def install_gem(built_gem_path=T.unsafe(nil), local=T.unsafe(nil)); end
2123
+ def mswin_1?(); end
2114
2124
 
2115
- def name(); end
2125
+ def mswin_20?(); end
2116
2126
 
2117
- def perform_git_push(options=T.unsafe(nil)); end
2127
+ def mswin_21?(); end
2118
2128
 
2119
- def rubygem_push(path); end
2129
+ def mswin_22?(); end
2120
2130
 
2121
- def sh(cmd, &block); end
2131
+ def mswin_23?(); end
2122
2132
 
2123
- def sh_with_code(cmd, &block); end
2133
+ def mswin_24?(); end
2124
2134
 
2125
- def spec_path(); end
2135
+ def mswin_25?(); end
2126
2136
 
2127
- def tag_version(); end
2137
+ def mswin_26?(); end
2128
2138
 
2129
- def version(); end
2139
+ def mswin_2?(); end
2130
2140
 
2131
- def version_tag(); end
2132
- end
2141
+ def on_18?(); end
2133
2142
 
2134
- class Bundler::GemHelper
2135
- def self.gemspec(&block); end
2143
+ def on_19?(); end
2136
2144
 
2137
- def self.install_tasks(opts=T.unsafe(nil)); end
2145
+ def on_1?(); end
2138
2146
 
2139
- def self.instance(); end
2147
+ def on_20?(); end
2140
2148
 
2141
- def self.instance=(instance); end
2142
- end
2149
+ def on_21?(); end
2143
2150
 
2144
- class Bundler::GemRemoteFetcher
2145
- end
2151
+ def on_22?(); end
2146
2152
 
2147
- class Bundler::GemRemoteFetcher
2148
- end
2153
+ def on_23?(); end
2149
2154
 
2150
- class Bundler::GemVersionPromoter
2151
- def initialize(locked_specs=T.unsafe(nil), unlock_gems=T.unsafe(nil)); end
2155
+ def on_24?(); end
2152
2156
 
2153
- def level(); end
2157
+ def on_25?(); end
2154
2158
 
2155
- def level=(value); end
2159
+ def on_26?(); end
2156
2160
 
2157
- def locked_specs(); end
2161
+ def on_2?(); end
2158
2162
 
2159
- def major?(); end
2163
+ def rbx?(); end
2160
2164
 
2161
- def minor?(); end
2165
+ def rbx_18?(); end
2162
2166
 
2163
- def prerelease_specified(); end
2167
+ def rbx_19?(); end
2164
2168
 
2165
- def prerelease_specified=(prerelease_specified); end
2169
+ def rbx_1?(); end
2166
2170
 
2167
- def sort_versions(dep, spec_groups); end
2171
+ def rbx_20?(); end
2168
2172
 
2169
- def strict(); end
2173
+ def rbx_21?(); end
2170
2174
 
2171
- def strict=(strict); end
2175
+ def rbx_22?(); end
2172
2176
 
2173
- def unlock_gems(); end
2174
- DEBUG = ::T.let(nil, ::T.untyped)
2175
- end
2177
+ def rbx_23?(); end
2176
2178
 
2177
- class Bundler::GemVersionPromoter
2178
- end
2179
+ def rbx_24?(); end
2179
2180
 
2180
- class Bundler::Graph
2181
- def edge_options(); end
2181
+ def rbx_25?(); end
2182
2182
 
2183
- def groups(); end
2183
+ def rbx_26?(); end
2184
2184
 
2185
- def initialize(env, output_file, show_version=T.unsafe(nil), show_requirements=T.unsafe(nil), output_format=T.unsafe(nil), without=T.unsafe(nil)); end
2185
+ def rbx_2?(); end
2186
2186
 
2187
- def node_options(); end
2187
+ def ruby?(); end
2188
2188
 
2189
- def output_file(); end
2189
+ def ruby_18?(); end
2190
2190
 
2191
- def output_format(); end
2191
+ def ruby_19?(); end
2192
2192
 
2193
- def relations(); end
2193
+ def ruby_1?(); end
2194
2194
 
2195
- def viz(); end
2196
- GRAPH_NAME = ::T.let(nil, ::T.untyped)
2197
- end
2195
+ def ruby_20?(); end
2198
2196
 
2199
- class Bundler::Graph::GraphVizClient
2200
- def g(); end
2197
+ def ruby_21?(); end
2201
2198
 
2202
- def initialize(graph_instance); end
2199
+ def ruby_22?(); end
2203
2200
 
2204
- def run(); end
2205
- end
2201
+ def ruby_23?(); end
2206
2202
 
2207
- class Bundler::Graph::GraphVizClient
2208
- end
2203
+ def ruby_24?(); end
2209
2204
 
2210
- class Bundler::Graph
2211
- end
2205
+ def ruby_25?(); end
2212
2206
 
2213
- class Bundler::Index
2214
- include ::Enumerable
2215
- end
2207
+ def ruby_26?(); end
2216
2208
 
2217
- class Bundler::Injector
2218
- def initialize(deps, options=T.unsafe(nil)); end
2209
+ def ruby_2?(); end
2219
2210
 
2220
- def inject(gemfile_path, lockfile_path); end
2211
+ def truffleruby?(); end
2221
2212
 
2222
- def remove(gemfile_path, lockfile_path); end
2223
- INJECTED_GEMS = ::T.let(nil, ::T.untyped)
2224
- end
2213
+ def truffleruby_18?(); end
2225
2214
 
2226
- class Bundler::Injector
2227
- def self.inject(new_deps, options=T.unsafe(nil)); end
2215
+ def truffleruby_19?(); end
2228
2216
 
2229
- def self.remove(gems, options=T.unsafe(nil)); end
2230
- end
2217
+ def truffleruby_1?(); end
2231
2218
 
2232
- class Bundler::Installer
2233
- def generate_bundler_executable_stubs(spec, options=T.unsafe(nil)); end
2219
+ def truffleruby_20?(); end
2234
2220
 
2235
- def generate_standalone_bundler_executable_stubs(spec); end
2221
+ def truffleruby_21?(); end
2236
2222
 
2237
- def initialize(root, definition); end
2223
+ def truffleruby_22?(); end
2238
2224
 
2239
- def post_install_messages(); end
2225
+ def truffleruby_23?(); end
2240
2226
 
2241
- def run(options); end
2242
- end
2227
+ def truffleruby_24?(); end
2243
2228
 
2244
- class Bundler::Installer
2245
- def self.ambiguous_gems(); end
2229
+ def truffleruby_25?(); end
2246
2230
 
2247
- def self.ambiguous_gems=(ambiguous_gems); end
2231
+ def truffleruby_26?(); end
2248
2232
 
2249
- def self.install(root, definition, options=T.unsafe(nil)); end
2250
- end
2233
+ def truffleruby_2?(); end
2251
2234
 
2252
- class Bundler::Molinillo::DependencyGraph
2253
- include ::Enumerable
2254
- end
2235
+ def x64_mingw?(); end
2255
2236
 
2256
- class Bundler::Molinillo::DependencyGraph::Log
2257
- extend ::Enumerable
2258
- end
2237
+ def x64_mingw_18?(); end
2259
2238
 
2260
- module Bundler::Plugin::API::Source
2261
- def ==(other); end
2239
+ def x64_mingw_19?(); end
2262
2240
 
2263
- def app_cache_dirname(); end
2241
+ def x64_mingw_1?(); end
2264
2242
 
2265
- def app_cache_path(custom_path=T.unsafe(nil)); end
2243
+ def x64_mingw_20?(); end
2266
2244
 
2267
- def bundler_plugin_api_source?(); end
2245
+ def x64_mingw_21?(); end
2268
2246
 
2269
- def cache(spec, custom_path=T.unsafe(nil)); end
2247
+ def x64_mingw_22?(); end
2270
2248
 
2271
- def cached!(); end
2249
+ def x64_mingw_23?(); end
2272
2250
 
2273
- def can_lock?(spec); end
2251
+ def x64_mingw_24?(); end
2274
2252
 
2275
- def dependency_names(); end
2253
+ def x64_mingw_25?(); end
2276
2254
 
2277
- def dependency_names=(dependency_names); end
2255
+ def x64_mingw_26?(); end
2256
+
2257
+ def x64_mingw_2?(); end
2258
+ KNOWN_MAJOR_VERSIONS = ::T.let(nil, ::T.untyped)
2259
+ KNOWN_MINOR_VERSIONS = ::T.let(nil, ::T.untyped)
2260
+ KNOWN_PLATFORMS = ::T.let(nil, ::T.untyped)
2261
+ end
2262
+
2263
+ class Bundler::CurrentRuby
2264
+ end
2265
+
2266
+ class Bundler::CyclicDependencyError
2267
+ def status_code(); end
2268
+ end
2269
+
2270
+ class Bundler::CyclicDependencyError
2271
+ end
2272
+
2273
+ class Bundler::Definition
2274
+ include ::Bundler::GemHelpers
2275
+ def add_current_platform(); end
2276
+
2277
+ def add_platform(platform); end
2278
+
2279
+ def current_dependencies(); end
2280
+
2281
+ def dependencies(); end
2282
+
2283
+ def ensure_equivalent_gemfile_and_lockfile(explicit_flag=T.unsafe(nil)); end
2284
+
2285
+ def find_indexed_specs(current_spec); end
2286
+
2287
+ def find_resolved_spec(current_spec); end
2288
+
2289
+ def gem_version_promoter(); end
2290
+
2291
+ def gemfiles(); end
2292
+
2293
+ def groups(); end
2294
+
2295
+ def has_local_dependencies?(); end
2296
+
2297
+ def has_rubygems_remotes?(); end
2298
+
2299
+ def index(); end
2300
+
2301
+ def initialize(lockfile, dependencies, sources, unlock, ruby_version=T.unsafe(nil), optional_groups=T.unsafe(nil), gemfiles=T.unsafe(nil)); end
2302
+
2303
+ def lock(file, preserve_unknown_sections=T.unsafe(nil)); end
2304
+
2305
+ def locked_bundler_version(); end
2306
+
2307
+ def locked_deps(); end
2308
+
2309
+ def locked_gems(); end
2310
+
2311
+ def locked_ruby_version(); end
2312
+
2313
+ def locked_ruby_version_object(); end
2314
+
2315
+ def lockfile(); end
2316
+
2317
+ def missing_specs(); end
2318
+
2319
+ def missing_specs?(); end
2320
+
2321
+ def new_platform?(); end
2322
+
2323
+ def new_specs(); end
2324
+
2325
+ def nothing_changed?(); end
2326
+
2327
+ def platforms(); end
2328
+
2329
+ def remove_platform(platform); end
2330
+
2331
+ def removed_specs(); end
2332
+
2333
+ def requested_specs(); end
2334
+
2335
+ def requires(); end
2336
+
2337
+ def resolve(); end
2338
+
2339
+ def resolve_remotely!(); end
2340
+
2341
+ def resolve_with_cache!(); end
2342
+
2343
+ def ruby_version(); end
2344
+
2345
+ def spec_git_paths(); end
2346
+
2347
+ def specs(); end
2348
+
2349
+ def specs_for(groups); end
2350
+
2351
+ def to_lock(); end
2352
+
2353
+ def unlocking?(); end
2354
+
2355
+ def validate_platforms!(); end
2356
+
2357
+ def validate_ruby!(); end
2358
+
2359
+ def validate_runtime!(); end
2360
+ end
2361
+
2362
+ class Bundler::Definition
2363
+ def self.build(gemfile, lockfile, unlock); end
2364
+ end
2365
+
2366
+ class Bundler::DepProxy
2367
+ def ==(other); end
2368
+
2369
+ def __platform(); end
2370
+
2371
+ def dep(); end
2372
+
2373
+ def eql?(other); end
2374
+
2375
+ def initialize(dep, platform); end
2376
+
2377
+ def name(); end
2378
+
2379
+ def requirement(); end
2380
+
2381
+ def type(); end
2382
+ end
2383
+
2384
+ class Bundler::DepProxy
2385
+ end
2386
+
2387
+ class Bundler::Dependency
2388
+ def autorequire(); end
2389
+
2390
+ def current_env?(); end
2391
+
2392
+ def current_platform?(); end
2393
+
2394
+ def gem_platforms(valid_platforms); end
2395
+
2396
+ def gemfile(); end
2397
+
2398
+ def initialize(name, version, options=T.unsafe(nil), &blk); end
2399
+
2400
+ def platforms(); end
2401
+
2402
+ def should_include?(); end
2403
+ PLATFORM_MAP = ::T.let(nil, ::T.untyped)
2404
+ REVERSE_PLATFORM_MAP = ::T.let(nil, ::T.untyped)
2405
+ end
2406
+
2407
+ class Bundler::Dependency
2408
+ end
2409
+
2410
+ Bundler::Deprecate = Gem::Deprecate
2411
+
2412
+ class Bundler::DeprecatedError
2413
+ def status_code(); end
2414
+ end
2415
+
2416
+ class Bundler::DeprecatedError
2417
+ end
2418
+
2419
+ class Bundler::Dsl
2420
+ include ::Bundler::RubyDsl
2421
+ def dependencies(); end
2422
+
2423
+ def dependencies=(dependencies); end
2424
+
2425
+ def env(name); end
2426
+
2427
+ def eval_gemfile(gemfile, contents=T.unsafe(nil)); end
2428
+
2429
+ def gem(name, *args); end
2430
+
2431
+ def gemspec(opts=T.unsafe(nil)); end
2432
+
2433
+ def gemspecs(); end
2434
+
2435
+ def git(uri, options=T.unsafe(nil), &blk); end
2436
+
2437
+ def git_source(name, &block); end
2438
+
2439
+ def github(repo, options=T.unsafe(nil)); end
2440
+
2441
+ def group(*args, &blk); end
2442
+
2443
+ def install_if(*args); end
2444
+
2445
+ def method_missing(name, *args); end
2446
+
2447
+ def path(path, options=T.unsafe(nil), &blk); end
2448
+
2449
+ def platform(*platforms); end
2450
+
2451
+ def platforms(*platforms); end
2452
+
2453
+ def plugin(*args); end
2454
+
2455
+ def source(source, *args, &blk); end
2456
+
2457
+ def to_definition(lockfile, unlock); end
2458
+ VALID_KEYS = ::T.let(nil, ::T.untyped)
2459
+ VALID_PLATFORMS = ::T.let(nil, ::T.untyped)
2460
+ end
2461
+
2462
+ class Bundler::Dsl::DSLError
2463
+ def contents(); end
2464
+
2465
+ def description(); end
2466
+
2467
+ def dsl_path(); end
2468
+
2469
+ def initialize(description, dsl_path, backtrace, contents=T.unsafe(nil)); end
2470
+ end
2471
+
2472
+ class Bundler::Dsl::DSLError
2473
+ end
2474
+
2475
+ class Bundler::Dsl
2476
+ def self.evaluate(gemfile, lockfile, unlock); end
2477
+ end
2478
+
2479
+ class Bundler::EndpointSpecification
2480
+ def __swap__(spec); end
2481
+
2482
+ def _local_specification(); end
2483
+
2484
+ def checksum(); end
2485
+
2486
+ def dependencies=(dependencies); end
2487
+
2488
+ def fetch_platform(); end
2489
+
2490
+ def initialize(name, version, platform, dependencies, metadata=T.unsafe(nil)); end
2491
+ ILLFORMED_MESSAGE = ::T.let(nil, ::T.untyped)
2492
+ end
2493
+
2494
+ class Bundler::EndpointSpecification
2495
+ end
2496
+
2497
+ class Bundler::Env
2498
+ end
2499
+
2500
+ class Bundler::Env
2501
+ def self.environment(); end
2502
+
2503
+ def self.report(options=T.unsafe(nil)); end
2504
+
2505
+ def self.write(io); end
2506
+ end
2507
+
2508
+ class Bundler::EnvironmentPreserver
2509
+ def backup(); end
2510
+
2511
+ def initialize(env, keys); end
2512
+
2513
+ def restore(); end
2514
+ BUNDLER_KEYS = ::T.let(nil, ::T.untyped)
2515
+ BUNDLER_PREFIX = ::T.let(nil, ::T.untyped)
2516
+ INTENTIONALLY_NIL = ::T.let(nil, ::T.untyped)
2517
+ end
2518
+
2519
+ class Bundler::EnvironmentPreserver
2520
+ end
2521
+
2522
+ class Bundler::FeatureFlag
2523
+ def allow_bundler_dependency_conflicts?(); end
2524
+
2525
+ def allow_offline_install?(); end
2526
+
2527
+ def auto_clean_without_path?(); end
2528
+
2529
+ def auto_config_jobs?(); end
2530
+
2531
+ def bundler_10_mode?(); end
2532
+
2533
+ def bundler_1_mode?(); end
2534
+
2535
+ def bundler_2_mode?(); end
2536
+
2537
+ def bundler_3_mode?(); end
2538
+
2539
+ def bundler_4_mode?(); end
2540
+
2541
+ def bundler_5_mode?(); end
2542
+
2543
+ def bundler_6_mode?(); end
2544
+
2545
+ def bundler_7_mode?(); end
2546
+
2547
+ def bundler_8_mode?(); end
2548
+
2549
+ def bundler_9_mode?(); end
2550
+
2551
+ def cache_all?(); end
2552
+
2553
+ def cache_command_is_package?(); end
2554
+
2555
+ def console_command?(); end
2556
+
2557
+ def default_cli_command(); end
2558
+
2559
+ def default_install_uses_path?(); end
2560
+
2561
+ def deployment_means_frozen?(); end
2562
+
2563
+ def disable_multisource?(); end
2564
+
2565
+ def error_on_stderr?(); end
2566
+
2567
+ def forget_cli_options?(); end
2568
+
2569
+ def github_https?(); end
2570
+
2571
+ def global_gem_cache?(); end
2572
+
2573
+ def global_path_appends_ruby_scope?(); end
2574
+
2575
+ def init_gems_rb?(); end
2576
+
2577
+ def initialize(bundler_version); end
2578
+
2579
+ def list_command?(); end
2580
+
2581
+ def lockfile_uses_separate_rubygems_sources?(); end
2582
+
2583
+ def only_update_to_newer_versions?(); end
2584
+
2585
+ def path_relative_to_cwd?(); end
2586
+
2587
+ def plugins?(); end
2588
+
2589
+ def prefer_gems_rb?(); end
2590
+
2591
+ def print_only_version_number?(); end
2592
+
2593
+ def setup_makes_kernel_gem_public?(); end
2594
+
2595
+ def skip_default_git_sources?(); end
2596
+
2597
+ def specific_platform?(); end
2598
+
2599
+ def suppress_install_using_messages?(); end
2600
+
2601
+ def unlock_source_unlocks_spec?(); end
2602
+
2603
+ def update_requires_all_flag?(); end
2604
+
2605
+ def use_gem_version_promoter_for_major_updates?(); end
2606
+
2607
+ def viz_command?(); end
2608
+ end
2609
+
2610
+ class Bundler::FeatureFlag
2611
+ end
2612
+
2613
+ class Bundler::Fetcher
2614
+ def fetch_spec(spec); end
2615
+
2616
+ def fetchers(); end
2617
+
2618
+ def http_proxy(); end
2619
+
2620
+ def initialize(remote); end
2621
+
2622
+ def specs(gem_names, source); end
2623
+
2624
+ def specs_with_retry(gem_names, source); end
2625
+
2626
+ def uri(); end
2627
+
2628
+ def use_api(); end
2629
+
2630
+ def user_agent(); end
2631
+ FAIL_ERRORS = ::T.let(nil, ::T.untyped)
2632
+ FETCHERS = ::T.let(nil, ::T.untyped)
2633
+ HTTP_ERRORS = ::T.let(nil, ::T.untyped)
2634
+ NET_ERRORS = ::T.let(nil, ::T.untyped)
2635
+ end
2636
+
2637
+ class Bundler::Fetcher::AuthenticationRequiredError
2638
+ def initialize(remote_uri); end
2639
+ end
2640
+
2641
+ class Bundler::Fetcher::AuthenticationRequiredError
2642
+ end
2643
+
2644
+ class Bundler::Fetcher::BadAuthenticationError
2645
+ def initialize(remote_uri); end
2646
+ end
2647
+
2648
+ class Bundler::Fetcher::BadAuthenticationError
2649
+ end
2650
+
2651
+ class Bundler::Fetcher::Base
2652
+ def api_fetcher?(); end
2653
+
2654
+ def available?(); end
2655
+
2656
+ def display_uri(); end
2657
+
2658
+ def downloader(); end
2659
+
2660
+ def fetch_uri(); end
2661
+
2662
+ def initialize(downloader, remote, display_uri); end
2663
+
2664
+ def remote(); end
2665
+
2666
+ def remote_uri(); end
2667
+ end
2668
+
2669
+ class Bundler::Fetcher::Base
2670
+ end
2671
+
2672
+ class Bundler::Fetcher::CertificateFailureError
2673
+ def initialize(remote_uri); end
2674
+ end
2675
+
2676
+ class Bundler::Fetcher::CertificateFailureError
2677
+ end
2678
+
2679
+ class Bundler::Fetcher::CompactIndex
2680
+ def available?(*args, &blk); end
2681
+
2682
+ def fetch_spec(*args, &blk); end
2683
+
2684
+ def specs(*args, &blk); end
2685
+
2686
+ def specs_for_names(gem_names); end
2687
+ end
2688
+
2689
+ class Bundler::Fetcher::CompactIndex::ClientFetcher
2690
+ def call(path, headers); end
2691
+
2692
+ def fetcher(); end
2693
+
2694
+ def fetcher=(_); end
2695
+
2696
+ def ui(); end
2697
+
2698
+ def ui=(_); end
2699
+ end
2700
+
2701
+ class Bundler::Fetcher::CompactIndex::ClientFetcher
2702
+ def self.[](*_); end
2703
+
2704
+ def self.members(); end
2705
+ end
2706
+
2707
+ class Bundler::Fetcher::CompactIndex
2708
+ def self.compact_index_request(method_name); end
2709
+ end
2710
+
2711
+ class Bundler::Fetcher::Dependency
2712
+ def dependency_api_uri(gem_names=T.unsafe(nil)); end
2713
+
2714
+ def dependency_specs(gem_names); end
2715
+
2716
+ def get_formatted_specs_and_deps(gem_list); end
2717
+
2718
+ def specs(gem_names, full_dependency_list=T.unsafe(nil), last_spec_list=T.unsafe(nil)); end
2719
+
2720
+ def unmarshalled_dep_gems(gem_names); end
2721
+ end
2722
+
2723
+ class Bundler::Fetcher::Dependency
2724
+ end
2725
+
2726
+ class Bundler::Fetcher::Downloader
2727
+ def connection(); end
2728
+
2729
+ def fetch(uri, headers=T.unsafe(nil), counter=T.unsafe(nil)); end
2730
+
2731
+ def initialize(connection, redirect_limit); end
2732
+
2733
+ def redirect_limit(); end
2734
+
2735
+ def request(uri, headers); end
2736
+ end
2737
+
2738
+ class Bundler::Fetcher::Downloader
2739
+ end
2740
+
2741
+ class Bundler::Fetcher::FallbackError
2742
+ end
2743
+
2744
+ class Bundler::Fetcher::FallbackError
2745
+ end
2746
+
2747
+ class Bundler::Fetcher::Index
2748
+ def fetch_spec(spec); end
2749
+
2750
+ def specs(_gem_names); end
2751
+ end
2752
+
2753
+ class Bundler::Fetcher::Index
2754
+ end
2755
+
2756
+ class Bundler::Fetcher::NetworkDownError
2757
+ end
2758
+
2759
+ class Bundler::Fetcher::NetworkDownError
2760
+ end
2761
+
2762
+ class Bundler::Fetcher::SSLError
2763
+ def initialize(msg=T.unsafe(nil)); end
2764
+ end
2765
+
2766
+ class Bundler::Fetcher::SSLError
2767
+ end
2768
+
2769
+ class Bundler::Fetcher
2770
+ def self.api_timeout(); end
2771
+
2772
+ def self.api_timeout=(api_timeout); end
2773
+
2774
+ def self.disable_endpoint(); end
2775
+
2776
+ def self.disable_endpoint=(disable_endpoint); end
2777
+
2778
+ def self.max_retries(); end
2779
+
2780
+ def self.max_retries=(max_retries); end
2781
+
2782
+ def self.redirect_limit(); end
2783
+
2784
+ def self.redirect_limit=(redirect_limit); end
2785
+ end
2786
+
2787
+ module Bundler::FileUtils
2788
+ include ::Bundler::FileUtils::StreamUtils_
2789
+ LOW_METHODS = ::T.let(nil, ::T.untyped)
2790
+ METHODS = ::T.let(nil, ::T.untyped)
2791
+ OPT_TABLE = ::T.let(nil, ::T.untyped)
2792
+ end
2793
+
2794
+ module Bundler::FileUtils::DryRun
2795
+ include ::Bundler::FileUtils
2796
+ include ::Bundler::FileUtils::StreamUtils_
2797
+ include ::Bundler::FileUtils::LowMethods
2798
+ end
2799
+
2800
+ module Bundler::FileUtils::DryRun
2801
+ extend ::Bundler::FileUtils::DryRun
2802
+ extend ::Bundler::FileUtils
2803
+ extend ::Bundler::FileUtils::StreamUtils_
2804
+ extend ::Bundler::FileUtils::LowMethods
2805
+ end
2806
+
2807
+ class Bundler::FileUtils::Entry_
2808
+ include ::Bundler::FileUtils::StreamUtils_
2809
+ def blockdev?(); end
2810
+
2811
+ def chardev?(); end
2812
+
2813
+ def chmod(mode); end
2814
+
2815
+ def chown(uid, gid); end
2816
+
2817
+ def copy(dest); end
2818
+
2819
+ def copy_file(dest); end
2820
+
2821
+ def copy_metadata(path); end
2822
+
2823
+ def dereference?(); end
2824
+
2825
+ def directory?(); end
2826
+
2827
+ def door?(); end
2828
+
2829
+ def entries(); end
2830
+
2831
+ def exist?(); end
2832
+
2833
+ def file?(); end
2834
+
2835
+ def initialize(a, b=T.unsafe(nil), deref=T.unsafe(nil)); end
2836
+
2837
+ def lstat(); end
2838
+
2839
+ def lstat!(); end
2840
+
2841
+ def path(); end
2842
+
2843
+ def pipe?(); end
2844
+
2845
+ def platform_support(); end
2846
+
2847
+ def postorder_traverse(); end
2848
+
2849
+ def prefix(); end
2850
+
2851
+ def preorder_traverse(); end
2852
+
2853
+ def rel(); end
2854
+
2855
+ def remove(); end
2856
+
2857
+ def remove_dir1(); end
2858
+
2859
+ def remove_file(); end
2860
+
2861
+ def socket?(); end
2862
+
2863
+ def stat(); end
2864
+
2865
+ def stat!(); end
2866
+
2867
+ def symlink?(); end
2868
+
2869
+ def traverse(); end
2870
+
2871
+ def wrap_traverse(pre, post); end
2872
+ DIRECTORY_TERM = ::T.let(nil, ::T.untyped)
2873
+ SYSCASE = ::T.let(nil, ::T.untyped)
2874
+ S_IF_DOOR = ::T.let(nil, ::T.untyped)
2875
+ end
2876
+
2877
+ class Bundler::FileUtils::Entry_
2878
+ end
2879
+
2880
+ module Bundler::FileUtils::LowMethods
2881
+ end
2882
+
2883
+ module Bundler::FileUtils::LowMethods
2884
+ end
2885
+
2886
+ module Bundler::FileUtils::NoWrite
2887
+ include ::Bundler::FileUtils
2888
+ include ::Bundler::FileUtils::StreamUtils_
2889
+ include ::Bundler::FileUtils::LowMethods
2890
+ end
2891
+
2892
+ module Bundler::FileUtils::NoWrite
2893
+ extend ::Bundler::FileUtils::NoWrite
2894
+ extend ::Bundler::FileUtils
2895
+ extend ::Bundler::FileUtils::StreamUtils_
2896
+ extend ::Bundler::FileUtils::LowMethods
2897
+ end
2898
+
2899
+ module Bundler::FileUtils::StreamUtils_
2900
+ end
2901
+
2902
+ module Bundler::FileUtils::StreamUtils_
2903
+ end
2904
+
2905
+ module Bundler::FileUtils::Verbose
2906
+ include ::Bundler::FileUtils
2907
+ include ::Bundler::FileUtils::StreamUtils_
2908
+ end
2909
+
2910
+ module Bundler::FileUtils::Verbose
2911
+ extend ::Bundler::FileUtils::Verbose
2912
+ extend ::Bundler::FileUtils
2913
+ extend ::Bundler::FileUtils::StreamUtils_
2914
+ end
2915
+
2916
+ module Bundler::FileUtils
2917
+ extend ::Bundler::FileUtils::StreamUtils_
2918
+ def self.cd(dir, verbose: T.unsafe(nil), &block); end
2919
+
2920
+ def self.chdir(dir, verbose: T.unsafe(nil), &block); end
2921
+
2922
+ def self.chmod(mode, list, noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2923
+
2924
+ def self.chmod_R(mode, list, noop: T.unsafe(nil), verbose: T.unsafe(nil), force: T.unsafe(nil)); end
2925
+
2926
+ def self.chown(user, group, list, noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2927
+
2928
+ def self.chown_R(user, group, list, noop: T.unsafe(nil), verbose: T.unsafe(nil), force: T.unsafe(nil)); end
2929
+
2930
+ def self.cmp(a, b); end
2931
+
2932
+ def self.collect_method(opt); end
2933
+
2934
+ def self.commands(); end
2935
+
2936
+ def self.compare_file(a, b); end
2937
+
2938
+ def self.compare_stream(a, b); end
2939
+
2940
+ def self.copy(src, dest, preserve: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2941
+
2942
+ def self.copy_entry(src, dest, preserve=T.unsafe(nil), dereference_root=T.unsafe(nil), remove_destination=T.unsafe(nil)); end
2943
+
2944
+ def self.copy_file(src, dest, preserve=T.unsafe(nil), dereference=T.unsafe(nil)); end
2945
+
2946
+ def self.copy_stream(src, dest); end
2947
+
2948
+ def self.cp(src, dest, preserve: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2949
+
2950
+ def self.cp_r(src, dest, preserve: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil), dereference_root: T.unsafe(nil), remove_destination: T.unsafe(nil)); end
2951
+
2952
+ def self.getwd(); end
2953
+
2954
+ def self.have_option?(mid, opt); end
2955
+
2956
+ def self.identical?(a, b); end
2957
+
2958
+ def self.install(src, dest, mode: T.unsafe(nil), owner: T.unsafe(nil), group: T.unsafe(nil), preserve: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2959
+
2960
+ def self.link(src, dest, force: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2961
+
2962
+ def self.ln(src, dest, force: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2963
+
2964
+ def self.ln_s(src, dest, force: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2965
+
2966
+ def self.ln_sf(src, dest, noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2967
+
2968
+ def self.makedirs(list, mode: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2969
+
2970
+ def self.mkdir(list, mode: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2971
+
2972
+ def self.mkdir_p(list, mode: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2973
+
2974
+ def self.mkpath(list, mode: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2975
+
2976
+ def self.move(src, dest, force: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil), secure: T.unsafe(nil)); end
2977
+
2978
+ def self.mv(src, dest, force: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil), secure: T.unsafe(nil)); end
2979
+
2980
+ def self.options(); end
2981
+
2982
+ def self.options_of(mid); end
2983
+
2984
+ def self.private_module_function(name); end
2985
+
2986
+ def self.pwd(); end
2987
+
2988
+ def self.remove(list, force: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2989
+
2990
+ def self.remove_dir(path, force=T.unsafe(nil)); end
2991
+
2992
+ def self.remove_entry(path, force=T.unsafe(nil)); end
2993
+
2994
+ def self.remove_entry_secure(path, force=T.unsafe(nil)); end
2995
+
2996
+ def self.remove_file(path, force=T.unsafe(nil)); end
2997
+
2998
+ def self.rm(list, force: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
2999
+
3000
+ def self.rm_f(list, noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
3001
+
3002
+ def self.rm_r(list, force: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil), secure: T.unsafe(nil)); end
3003
+
3004
+ def self.rm_rf(list, noop: T.unsafe(nil), verbose: T.unsafe(nil), secure: T.unsafe(nil)); end
3005
+
3006
+ def self.rmdir(list, parents: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
3007
+
3008
+ def self.rmtree(list, noop: T.unsafe(nil), verbose: T.unsafe(nil), secure: T.unsafe(nil)); end
3009
+
3010
+ def self.safe_unlink(list, noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
3011
+
3012
+ def self.symlink(src, dest, force: T.unsafe(nil), noop: T.unsafe(nil), verbose: T.unsafe(nil)); end
3013
+
3014
+ def self.touch(list, noop: T.unsafe(nil), verbose: T.unsafe(nil), mtime: T.unsafe(nil), nocreate: T.unsafe(nil)); end
3015
+
3016
+ def self.uptodate?(new, old_list); end
3017
+ end
3018
+
3019
+ class Bundler::GemHelper
3020
+ include ::Rake::DSL
3021
+ include ::Rake::FileUtilsExt
3022
+ include ::FileUtils
3023
+ include ::FileUtils::StreamUtils_
3024
+ def allowed_push_host(); end
3025
+
3026
+ def already_tagged?(); end
3027
+
3028
+ def base(); end
3029
+
3030
+ def build_gem(); end
3031
+
3032
+ def built_gem_path(); end
3033
+
3034
+ def clean?(); end
3035
+
3036
+ def committed?(); end
3037
+
3038
+ def gem_key(); end
3039
+
3040
+ def gem_push?(); end
3041
+
3042
+ def gem_push_host(); end
3043
+
3044
+ def gemspec(); end
3045
+
3046
+ def git_push(remote=T.unsafe(nil)); end
3047
+
3048
+ def guard_clean(); end
3049
+
3050
+ def initialize(base=T.unsafe(nil), name=T.unsafe(nil)); end
3051
+
3052
+ def install(); end
3053
+
3054
+ def install_gem(built_gem_path=T.unsafe(nil), local=T.unsafe(nil)); end
3055
+
3056
+ def name(); end
3057
+
3058
+ def perform_git_push(options=T.unsafe(nil)); end
3059
+
3060
+ def rubygem_push(path); end
3061
+
3062
+ def sh(cmd, &block); end
3063
+
3064
+ def sh_with_code(cmd, &block); end
3065
+
3066
+ def spec_path(); end
3067
+
3068
+ def tag_version(); end
3069
+
3070
+ def version(); end
3071
+
3072
+ def version_tag(); end
3073
+ end
3074
+
3075
+ class Bundler::GemHelper
3076
+ def self.gemspec(&block); end
3077
+
3078
+ def self.install_tasks(opts=T.unsafe(nil)); end
3079
+
3080
+ def self.instance(); end
3081
+
3082
+ def self.instance=(instance); end
3083
+ end
3084
+
3085
+ module Bundler::GemHelpers
3086
+ GENERICS = ::T.let(nil, ::T.untyped)
3087
+ GENERIC_CACHE = ::T.let(nil, ::T.untyped)
3088
+ end
3089
+
3090
+ class Bundler::GemHelpers::PlatformMatch
3091
+ def cpu_match(); end
3092
+
3093
+ def cpu_match=(_); end
3094
+
3095
+ def os_match(); end
3096
+
3097
+ def os_match=(_); end
3098
+
3099
+ def platform_version_match(); end
3100
+
3101
+ def platform_version_match=(_); end
3102
+ EXACT_MATCH = ::T.let(nil, ::T.untyped)
3103
+ WORST_MATCH = ::T.let(nil, ::T.untyped)
3104
+ end
3105
+
3106
+ class Bundler::GemHelpers::PlatformMatch
3107
+ def self.[](*_); end
3108
+
3109
+ def self.cpu_match(spec_platform, user_platform); end
3110
+
3111
+ def self.members(); end
3112
+
3113
+ def self.os_match(spec_platform, user_platform); end
3114
+
3115
+ def self.platform_version_match(spec_platform, user_platform); end
3116
+ end
3117
+
3118
+ module Bundler::GemHelpers
3119
+ def self.generic(p); end
3120
+
3121
+ def self.generic_local_platform(); end
3122
+
3123
+ def self.platform_specificity_match(spec_platform, user_platform); end
3124
+
3125
+ def self.select_best_platform_match(specs, platform); end
3126
+ end
3127
+
3128
+ class Bundler::GemNotFound
3129
+ def status_code(); end
3130
+ end
3131
+
3132
+ class Bundler::GemNotFound
3133
+ end
3134
+
3135
+ class Bundler::GemRemoteFetcher
3136
+ end
3137
+
3138
+ class Bundler::GemRemoteFetcher
3139
+ end
3140
+
3141
+ class Bundler::GemRequireError
3142
+ def initialize(orig_exception, msg); end
3143
+
3144
+ def orig_exception(); end
3145
+
3146
+ def status_code(); end
3147
+ end
3148
+
3149
+ class Bundler::GemRequireError
3150
+ end
3151
+
3152
+ class Bundler::GemVersionPromoter
3153
+ def initialize(locked_specs=T.unsafe(nil), unlock_gems=T.unsafe(nil)); end
3154
+
3155
+ def level(); end
3156
+
3157
+ def level=(value); end
3158
+
3159
+ def locked_specs(); end
3160
+
3161
+ def major?(); end
3162
+
3163
+ def minor?(); end
3164
+
3165
+ def prerelease_specified(); end
3166
+
3167
+ def prerelease_specified=(prerelease_specified); end
3168
+
3169
+ def sort_versions(dep, spec_groups); end
3170
+
3171
+ def strict(); end
3172
+
3173
+ def strict=(strict); end
3174
+
3175
+ def unlock_gems(); end
3176
+ DEBUG = ::T.let(nil, ::T.untyped)
3177
+ end
3178
+
3179
+ class Bundler::GemVersionPromoter
3180
+ end
3181
+
3182
+ class Bundler::GemfileError
3183
+ def status_code(); end
3184
+ end
3185
+
3186
+ class Bundler::GemfileError
3187
+ end
3188
+
3189
+ class Bundler::GemfileEvalError
3190
+ end
3191
+
3192
+ class Bundler::GemfileEvalError
3193
+ end
3194
+
3195
+ class Bundler::GemfileLockNotFound
3196
+ def status_code(); end
3197
+ end
3198
+
3199
+ class Bundler::GemfileLockNotFound
3200
+ end
3201
+
3202
+ class Bundler::GemfileNotFound
3203
+ def status_code(); end
3204
+ end
3205
+
3206
+ class Bundler::GemfileNotFound
3207
+ end
3208
+
3209
+ class Bundler::GemspecError
3210
+ def status_code(); end
3211
+ end
3212
+
3213
+ class Bundler::GemspecError
3214
+ end
3215
+
3216
+ class Bundler::GenericSystemCallError
3217
+ def initialize(underlying_error, message); end
3218
+
3219
+ def status_code(); end
3220
+
3221
+ def underlying_error(); end
3222
+ end
3223
+
3224
+ class Bundler::GenericSystemCallError
3225
+ end
3226
+
3227
+ class Bundler::GitError
3228
+ def status_code(); end
3229
+ end
3230
+
3231
+ class Bundler::GitError
3232
+ end
3233
+
3234
+ class Bundler::Graph
3235
+ def edge_options(); end
3236
+
3237
+ def groups(); end
3238
+
3239
+ def initialize(env, output_file, show_version=T.unsafe(nil), show_requirements=T.unsafe(nil), output_format=T.unsafe(nil), without=T.unsafe(nil)); end
3240
+
3241
+ def node_options(); end
3242
+
3243
+ def output_file(); end
3244
+
3245
+ def output_format(); end
3246
+
3247
+ def relations(); end
3248
+
3249
+ def viz(); end
3250
+ GRAPH_NAME = ::T.let(nil, ::T.untyped)
3251
+ end
3252
+
3253
+ class Bundler::Graph::GraphVizClient
3254
+ def g(); end
3255
+
3256
+ def initialize(graph_instance); end
3257
+
3258
+ def run(); end
3259
+ end
3260
+
3261
+ class Bundler::Graph::GraphVizClient
3262
+ end
3263
+
3264
+ class Bundler::Graph
3265
+ end
3266
+
3267
+ class Bundler::HTTPError
3268
+ def filter_uri(uri); end
3269
+
3270
+ def status_code(); end
3271
+ end
3272
+
3273
+ class Bundler::HTTPError
3274
+ end
3275
+
3276
+ class Bundler::Index
3277
+ include ::Enumerable
3278
+ def <<(spec); end
3279
+
3280
+ def ==(other); end
3281
+
3282
+ def [](query, base=T.unsafe(nil)); end
3283
+
3284
+ def add_source(index); end
3285
+
3286
+ def all_specs(); end
3287
+
3288
+ def dependencies_eql?(spec, other_spec); end
3289
+
3290
+ def dependency_names(); end
3291
+
3292
+ def each(&blk); end
3293
+
3294
+ def empty?(); end
3295
+
3296
+ def local_search(query, base=T.unsafe(nil)); end
3297
+
3298
+ def search(query, base=T.unsafe(nil)); end
3299
+
3300
+ def search_all(name); end
3301
+
3302
+ def size(); end
3303
+
3304
+ def sort_specs(specs); end
3305
+
3306
+ def sources(); end
3307
+
3308
+ def spec_names(); end
3309
+
3310
+ def specs(); end
3311
+
3312
+ def unmet_dependency_names(); end
3313
+
3314
+ def unsorted_search(query, base); end
3315
+
3316
+ def use(other, override_dupes=T.unsafe(nil)); end
3317
+ EMPTY_SEARCH = ::T.let(nil, ::T.untyped)
3318
+ NULL = ::T.let(nil, ::T.untyped)
3319
+ RUBY = ::T.let(nil, ::T.untyped)
3320
+ end
3321
+
3322
+ class Bundler::Index
3323
+ def self.build(); end
3324
+
3325
+ def self.sort_specs(specs); end
3326
+ end
3327
+
3328
+ class Bundler::Injector
3329
+ def initialize(deps, options=T.unsafe(nil)); end
3330
+
3331
+ def inject(gemfile_path, lockfile_path); end
3332
+
3333
+ def remove(gemfile_path, lockfile_path); end
3334
+ INJECTED_GEMS = ::T.let(nil, ::T.untyped)
3335
+ end
3336
+
3337
+ class Bundler::Injector
3338
+ def self.inject(new_deps, options=T.unsafe(nil)); end
3339
+
3340
+ def self.remove(gems, options=T.unsafe(nil)); end
3341
+ end
3342
+
3343
+ class Bundler::InstallError
3344
+ def status_code(); end
3345
+ end
3346
+
3347
+ class Bundler::InstallError
3348
+ end
3349
+
3350
+ class Bundler::InstallHookError
3351
+ def status_code(); end
3352
+ end
3353
+
3354
+ class Bundler::InstallHookError
3355
+ end
3356
+
3357
+ class Bundler::Installer
3358
+ def generate_bundler_executable_stubs(spec, options=T.unsafe(nil)); end
3359
+
3360
+ def generate_standalone_bundler_executable_stubs(spec); end
3361
+
3362
+ def initialize(root, definition); end
3363
+
3364
+ def post_install_messages(); end
3365
+
3366
+ def run(options); end
3367
+ end
3368
+
3369
+ class Bundler::Installer
3370
+ def self.ambiguous_gems(); end
3371
+
3372
+ def self.ambiguous_gems=(ambiguous_gems); end
3373
+
3374
+ def self.install(root, definition, options=T.unsafe(nil)); end
3375
+ end
3376
+
3377
+ class Bundler::InvalidOption
3378
+ def status_code(); end
3379
+ end
3380
+
3381
+ class Bundler::InvalidOption
3382
+ end
3383
+
3384
+ class Bundler::LazySpecification
3385
+ include ::Bundler::MatchPlatform
3386
+ include ::Bundler::GemHelpers
3387
+ def ==(other); end
3388
+
3389
+ def __materialize__(); end
3390
+
3391
+ def dependencies(); end
3392
+
3393
+ def full_name(); end
3394
+
3395
+ def git_version(); end
3396
+
3397
+ def identifier(); end
3398
+
3399
+ def initialize(name, version, platform, source=T.unsafe(nil)); end
3400
+
3401
+ def name(); end
3402
+
3403
+ def platform(); end
3404
+
3405
+ def remote(); end
3406
+
3407
+ def remote=(remote); end
3408
+
3409
+ def respond_to?(*args); end
3410
+
3411
+ def satisfies?(dependency); end
3412
+
3413
+ def source(); end
3414
+
3415
+ def source=(source); end
3416
+
3417
+ def to_lock(); end
3418
+
3419
+ def version(); end
3420
+ end
3421
+
3422
+ class Bundler::LazySpecification::Identifier
3423
+ include ::Comparable
3424
+ def dependencies(); end
3425
+
3426
+ def dependencies=(_); end
3427
+
3428
+ def name(); end
3429
+
3430
+ def name=(_); end
3431
+
3432
+ def platform(); end
3433
+
3434
+ def platform=(_); end
3435
+
3436
+ def platform_string(); end
3437
+
3438
+ def source(); end
3439
+
3440
+ def source=(_); end
3441
+
3442
+ def version(); end
3443
+
3444
+ def version=(_); end
3445
+ end
3446
+
3447
+ class Bundler::LazySpecification::Identifier
3448
+ def self.[](*_); end
3449
+
3450
+ def self.members(); end
3451
+ end
3452
+
3453
+ class Bundler::LazySpecification
3454
+ end
3455
+
3456
+ class Bundler::LockfileError
3457
+ def status_code(); end
3458
+ end
3459
+
3460
+ class Bundler::LockfileError
3461
+ end
3462
+
3463
+ class Bundler::LockfileParser
3464
+ def bundler_version(); end
3465
+
3466
+ def dependencies(); end
3467
+
3468
+ def initialize(lockfile); end
3469
+
3470
+ def platforms(); end
3471
+
3472
+ def ruby_version(); end
3473
+
3474
+ def sources(); end
3475
+
3476
+ def specs(); end
3477
+
3478
+ def warn_for_outdated_bundler_version(); end
3479
+ BUNDLED = ::T.let(nil, ::T.untyped)
3480
+ DEPENDENCIES = ::T.let(nil, ::T.untyped)
3481
+ ENVIRONMENT_VERSION_SECTIONS = ::T.let(nil, ::T.untyped)
3482
+ GEM = ::T.let(nil, ::T.untyped)
3483
+ GIT = ::T.let(nil, ::T.untyped)
3484
+ KNOWN_SECTIONS = ::T.let(nil, ::T.untyped)
3485
+ NAME_VERSION = ::T.let(nil, ::T.untyped)
3486
+ OPTIONS = ::T.let(nil, ::T.untyped)
3487
+ PATH = ::T.let(nil, ::T.untyped)
3488
+ PLATFORMS = ::T.let(nil, ::T.untyped)
3489
+ PLUGIN = ::T.let(nil, ::T.untyped)
3490
+ RUBY = ::T.let(nil, ::T.untyped)
3491
+ SECTIONS_BY_VERSION_INTRODUCED = ::T.let(nil, ::T.untyped)
3492
+ SOURCE = ::T.let(nil, ::T.untyped)
3493
+ SPECS = ::T.let(nil, ::T.untyped)
3494
+ TYPES = ::T.let(nil, ::T.untyped)
3495
+ end
3496
+
3497
+ class Bundler::LockfileParser
3498
+ def self.sections_in_lockfile(lockfile_contents); end
3499
+
3500
+ def self.sections_to_ignore(base_version=T.unsafe(nil)); end
3501
+
3502
+ def self.unknown_sections_in_lockfile(lockfile_contents); end
3503
+ end
3504
+
3505
+ class Bundler::MarshalError
3506
+ end
3507
+
3508
+ class Bundler::MarshalError
3509
+ end
3510
+
3511
+ module Bundler::MatchPlatform
3512
+ include ::Bundler::GemHelpers
3513
+ def match_platform(p); end
3514
+ end
3515
+
3516
+ module Bundler::MatchPlatform
3517
+ def self.platforms_match?(gemspec_platform, local_platform); end
3518
+ end
3519
+
3520
+ module Bundler::Molinillo
3521
+ VERSION = ::T.let(nil, ::T.untyped)
3522
+ end
3523
+
3524
+ class Bundler::Molinillo::CircularDependencyError
3525
+ def dependencies(); end
3526
+
3527
+ def initialize(vertices); end
3528
+ end
3529
+
3530
+ class Bundler::Molinillo::CircularDependencyError
3531
+ end
3532
+
3533
+ module Bundler::Molinillo::Compatibility
3534
+ end
3535
+
3536
+ module Bundler::Molinillo::Compatibility
3537
+ def self.flat_map(enum, &blk); end
3538
+ end
3539
+
3540
+ module Bundler::Molinillo::Delegates
3541
+ end
3542
+
3543
+ module Bundler::Molinillo::Delegates::ResolutionState
3544
+ def activated(); end
3545
+
3546
+ def conflicts(); end
3547
+
3548
+ def depth(); end
3549
+
3550
+ def name(); end
3551
+
3552
+ def possibilities(); end
3553
+
3554
+ def requirement(); end
3555
+
3556
+ def requirements(); end
3557
+
3558
+ def unused_unwind_options(); end
3559
+ end
3560
+
3561
+ module Bundler::Molinillo::Delegates::ResolutionState
3562
+ end
3563
+
3564
+ module Bundler::Molinillo::Delegates::SpecificationProvider
3565
+ def allow_missing?(dependency); end
3566
+
3567
+ def dependencies_for(specification); end
3568
+
3569
+ def name_for(dependency); end
3570
+
3571
+ def name_for_explicit_dependency_source(); end
3572
+
3573
+ def name_for_locking_dependency_source(); end
3574
+
3575
+ def requirement_satisfied_by?(requirement, activated, spec); end
3576
+
3577
+ def search_for(dependency); end
3578
+
3579
+ def sort_dependencies(dependencies, activated, conflicts); end
3580
+ end
3581
+
3582
+ module Bundler::Molinillo::Delegates::SpecificationProvider
3583
+ end
3584
+
3585
+ module Bundler::Molinillo::Delegates
3586
+ end
3587
+
3588
+ class Bundler::Molinillo::DependencyGraph
3589
+ include ::Enumerable
3590
+ include ::TSort
3591
+ def ==(other); end
3592
+
3593
+ def add_child_vertex(name, payload, parent_names, requirement); end
3594
+
3595
+ def add_edge(origin, destination, requirement); end
3596
+
3597
+ def add_vertex(name, payload, root=T.unsafe(nil)); end
3598
+
3599
+ def delete_edge(edge); end
3600
+
3601
+ def detach_vertex_named(name); end
3602
+
3603
+ def each(&blk); end
3604
+
3605
+ def log(); end
3606
+
3607
+ def rewind_to(tag); end
3608
+
3609
+ def root_vertex_named(name); end
3610
+
3611
+ def set_payload(name, payload); end
3612
+
3613
+ def tag(tag); end
3614
+
3615
+ def to_dot(options=T.unsafe(nil)); end
3616
+
3617
+ def tsort_each_child(vertex, &block); end
3618
+
3619
+ def vertex_named(name); end
3620
+
3621
+ def vertices(); end
3622
+ end
3623
+
3624
+ class Bundler::Molinillo::DependencyGraph::Action
3625
+ def down(graph); end
3626
+
3627
+ def next(); end
3628
+
3629
+ def next=(_); end
3630
+
3631
+ def previous(); end
3632
+
3633
+ def previous=(previous); end
3634
+
3635
+ def up(graph); end
3636
+ end
3637
+
3638
+ class Bundler::Molinillo::DependencyGraph::Action
3639
+ def self.action_name(); end
3640
+ end
3641
+
3642
+ class Bundler::Molinillo::DependencyGraph::AddEdgeNoCircular
3643
+ def destination(); end
3644
+
3645
+ def initialize(origin, destination, requirement); end
3646
+
3647
+ def make_edge(graph); end
3648
+
3649
+ def origin(); end
3650
+
3651
+ def requirement(); end
3652
+ end
3653
+
3654
+ class Bundler::Molinillo::DependencyGraph::AddEdgeNoCircular
3655
+ end
3656
+
3657
+ class Bundler::Molinillo::DependencyGraph::AddVertex
3658
+ def initialize(name, payload, root); end
3659
+
3660
+ def name(); end
3661
+
3662
+ def payload(); end
3663
+
3664
+ def root(); end
3665
+ end
3666
+
3667
+ class Bundler::Molinillo::DependencyGraph::AddVertex
3668
+ end
3669
+
3670
+ class Bundler::Molinillo::DependencyGraph::DeleteEdge
3671
+ def destination_name(); end
3672
+
3673
+ def initialize(origin_name, destination_name, requirement); end
3674
+
3675
+ def make_edge(graph); end
3676
+
3677
+ def origin_name(); end
3678
+
3679
+ def requirement(); end
3680
+ end
3681
+
3682
+ class Bundler::Molinillo::DependencyGraph::DeleteEdge
3683
+ end
3684
+
3685
+ class Bundler::Molinillo::DependencyGraph::DetachVertexNamed
3686
+ def initialize(name); end
3687
+
3688
+ def name(); end
3689
+ end
3690
+
3691
+ class Bundler::Molinillo::DependencyGraph::DetachVertexNamed
3692
+ end
3693
+
3694
+ class Bundler::Molinillo::DependencyGraph::Edge
3695
+ def destination(); end
3696
+
3697
+ def destination=(_); end
3698
+
3699
+ def origin(); end
3700
+
3701
+ def origin=(_); end
3702
+
3703
+ def requirement(); end
3704
+
3705
+ def requirement=(_); end
3706
+ end
3707
+
3708
+ class Bundler::Molinillo::DependencyGraph::Edge
3709
+ def self.[](*_); end
3710
+
3711
+ def self.members(); end
3712
+ end
3713
+
3714
+ class Bundler::Molinillo::DependencyGraph::Log
3715
+ def add_edge_no_circular(graph, origin, destination, requirement); end
3716
+
3717
+ def add_vertex(graph, name, payload, root); end
3718
+
3719
+ def delete_edge(graph, origin_name, destination_name, requirement); end
3720
+
3721
+ def detach_vertex_named(graph, name); end
3722
+
3723
+ def each(&blk); end
3724
+
3725
+ def pop!(graph); end
3726
+
3727
+ def reverse_each(); end
3728
+
3729
+ def rewind_to(graph, tag); end
3730
+
3731
+ def set_payload(graph, name, payload); end
3732
+
3733
+ def tag(graph, tag); end
3734
+ end
3735
+
3736
+ class Bundler::Molinillo::DependencyGraph::Log
3737
+ extend ::Enumerable
3738
+ end
3739
+
3740
+ class Bundler::Molinillo::DependencyGraph::SetPayload
3741
+ def initialize(name, payload); end
3742
+
3743
+ def name(); end
3744
+
3745
+ def payload(); end
3746
+ end
3747
+
3748
+ class Bundler::Molinillo::DependencyGraph::SetPayload
3749
+ end
3750
+
3751
+ class Bundler::Molinillo::DependencyGraph::Tag
3752
+ def down(_graph); end
3753
+
3754
+ def initialize(tag); end
3755
+
3756
+ def tag(); end
3757
+
3758
+ def up(_graph); end
3759
+ end
3760
+
3761
+ class Bundler::Molinillo::DependencyGraph::Tag
3762
+ end
3763
+
3764
+ class Bundler::Molinillo::DependencyGraph::Vertex
3765
+ def ==(other); end
3766
+
3767
+ def _path_to?(other, visited=T.unsafe(nil)); end
3768
+
3769
+ def ancestor?(other); end
3770
+
3771
+ def descendent?(other); end
3772
+
3773
+ def eql?(other); end
3774
+
3775
+ def explicit_requirements(); end
3776
+
3777
+ def incoming_edges(); end
3778
+
3779
+ def incoming_edges=(incoming_edges); end
3780
+
3781
+ def initialize(name, payload); end
3782
+
3783
+ def is_reachable_from?(other); end
3784
+
3785
+ def name(); end
3786
+
3787
+ def name=(name); end
3788
+
3789
+ def outgoing_edges(); end
3790
+
3791
+ def outgoing_edges=(outgoing_edges); end
3792
+
3793
+ def path_to?(other); end
3794
+
3795
+ def payload(); end
3796
+
3797
+ def payload=(payload); end
3798
+
3799
+ def predecessors(); end
3800
+
3801
+ def recursive_predecessors(); end
3802
+
3803
+ def recursive_successors(); end
3804
+
3805
+ def requirements(); end
3806
+
3807
+ def root(); end
3808
+
3809
+ def root=(root); end
3810
+
3811
+ def root?(); end
3812
+
3813
+ def shallow_eql?(other); end
3814
+
3815
+ def successors(); end
3816
+ end
3817
+
3818
+ class Bundler::Molinillo::DependencyGraph::Vertex
3819
+ end
3820
+
3821
+ class Bundler::Molinillo::DependencyGraph
3822
+ def self.tsort(vertices); end
3823
+ end
3824
+
3825
+ class Bundler::Molinillo::DependencyState
3826
+ def pop_possibility_state(); end
3827
+ end
3828
+
3829
+ class Bundler::Molinillo::DependencyState
3830
+ end
3831
+
3832
+ class Bundler::Molinillo::NoSuchDependencyError
3833
+ def dependency(); end
3834
+
3835
+ def dependency=(dependency); end
3836
+
3837
+ def initialize(dependency, required_by=T.unsafe(nil)); end
3838
+
3839
+ def required_by(); end
3840
+
3841
+ def required_by=(required_by); end
3842
+ end
3843
+
3844
+ class Bundler::Molinillo::NoSuchDependencyError
3845
+ end
3846
+
3847
+ class Bundler::Molinillo::PossibilityState
3848
+ end
3849
+
3850
+ class Bundler::Molinillo::PossibilityState
3851
+ end
3852
+
3853
+ class Bundler::Molinillo::ResolutionState
3854
+ def activated(); end
3855
+
3856
+ def activated=(_); end
3857
+
3858
+ def conflicts(); end
3859
+
3860
+ def conflicts=(_); end
3861
+
3862
+ def depth(); end
3863
+
3864
+ def depth=(_); end
3865
+
3866
+ def name(); end
3867
+
3868
+ def name=(_); end
3869
+
3870
+ def possibilities(); end
3871
+
3872
+ def possibilities=(_); end
3873
+
3874
+ def requirement(); end
3875
+
3876
+ def requirement=(_); end
3877
+
3878
+ def requirements(); end
3879
+
3880
+ def requirements=(_); end
3881
+
3882
+ def unused_unwind_options(); end
3883
+
3884
+ def unused_unwind_options=(_); end
3885
+ end
3886
+
3887
+ class Bundler::Molinillo::ResolutionState
3888
+ def self.[](*_); end
3889
+
3890
+ def self.empty(); end
3891
+
3892
+ def self.members(); end
3893
+ end
3894
+
3895
+ class Bundler::Molinillo::Resolver
3896
+ def initialize(specification_provider, resolver_ui); end
3897
+
3898
+ def resolve(requested, base=T.unsafe(nil)); end
3899
+
3900
+ def resolver_ui(); end
3901
+
3902
+ def specification_provider(); end
3903
+ end
3904
+
3905
+ class Bundler::Molinillo::Resolver::Resolution
3906
+ include ::Bundler::Molinillo::Delegates::ResolutionState
3907
+ include ::Bundler::Molinillo::Delegates::SpecificationProvider
3908
+ def base(); end
3909
+
3910
+ def initialize(specification_provider, resolver_ui, requested, base); end
3911
+
3912
+ def iteration_rate=(iteration_rate); end
3913
+
3914
+ def original_requested(); end
3915
+
3916
+ def resolve(); end
3917
+
3918
+ def resolver_ui(); end
3919
+
3920
+ def specification_provider(); end
3921
+
3922
+ def started_at=(started_at); end
3923
+
3924
+ def states=(states); end
3925
+ end
3926
+
3927
+ class Bundler::Molinillo::Resolver::Resolution::Conflict
3928
+ def activated_by_name(); end
3929
+
3930
+ def activated_by_name=(_); end
3931
+
3932
+ def existing(); end
3933
+
3934
+ def existing=(_); end
3935
+
3936
+ def locked_requirement(); end
3937
+
3938
+ def locked_requirement=(_); end
3939
+
3940
+ def possibility(); end
3941
+
3942
+ def possibility_set(); end
3943
+
3944
+ def possibility_set=(_); end
3945
+
3946
+ def requirement(); end
3947
+
3948
+ def requirement=(_); end
3949
+
3950
+ def requirement_trees(); end
3951
+
3952
+ def requirement_trees=(_); end
3953
+
3954
+ def requirements(); end
3955
+
3956
+ def requirements=(_); end
3957
+
3958
+ def underlying_error(); end
3959
+
3960
+ def underlying_error=(_); end
3961
+ end
3962
+
3963
+ class Bundler::Molinillo::Resolver::Resolution::Conflict
3964
+ def self.[](*_); end
3965
+
3966
+ def self.members(); end
3967
+ end
3968
+
3969
+ class Bundler::Molinillo::Resolver::Resolution::PossibilitySet
3970
+ def dependencies(); end
3971
+
3972
+ def dependencies=(_); end
3973
+
3974
+ def latest_version(); end
3975
+
3976
+ def possibilities(); end
3977
+
3978
+ def possibilities=(_); end
3979
+ end
3980
+
3981
+ class Bundler::Molinillo::Resolver::Resolution::PossibilitySet
3982
+ def self.[](*_); end
3983
+
3984
+ def self.members(); end
3985
+ end
3986
+
3987
+ class Bundler::Molinillo::Resolver::Resolution::UnwindDetails
3988
+ include ::Comparable
3989
+ def all_requirements(); end
3990
+
3991
+ def conflicting_requirements(); end
3992
+
3993
+ def conflicting_requirements=(_); end
3994
+
3995
+ def requirement_tree(); end
3996
+
3997
+ def requirement_tree=(_); end
3998
+
3999
+ def requirement_trees(); end
4000
+
4001
+ def requirement_trees=(_); end
4002
+
4003
+ def requirements_unwound_to_instead(); end
4004
+
4005
+ def requirements_unwound_to_instead=(_); end
4006
+
4007
+ def reversed_requirement_tree_index(); end
4008
+
4009
+ def state_index(); end
4010
+
4011
+ def state_index=(_); end
4012
+
4013
+ def state_requirement(); end
4014
+
4015
+ def state_requirement=(_); end
4016
+
4017
+ def sub_dependencies_to_avoid(); end
4018
+
4019
+ def unwinding_to_primary_requirement?(); end
4020
+ end
4021
+
4022
+ class Bundler::Molinillo::Resolver::Resolution::UnwindDetails
4023
+ def self.[](*_); end
4024
+
4025
+ def self.members(); end
4026
+ end
4027
+
4028
+ class Bundler::Molinillo::Resolver::Resolution
4029
+ end
4030
+
4031
+ class Bundler::Molinillo::Resolver
4032
+ end
4033
+
4034
+ class Bundler::Molinillo::ResolverError
4035
+ end
4036
+
4037
+ class Bundler::Molinillo::ResolverError
4038
+ end
4039
+
4040
+ module Bundler::Molinillo::SpecificationProvider
4041
+ def allow_missing?(dependency); end
4042
+
4043
+ def dependencies_for(specification); end
4044
+
4045
+ def name_for(dependency); end
4046
+
4047
+ def name_for_explicit_dependency_source(); end
4048
+
4049
+ def name_for_locking_dependency_source(); end
4050
+
4051
+ def requirement_satisfied_by?(requirement, activated, spec); end
4052
+
4053
+ def search_for(dependency); end
4054
+
4055
+ def sort_dependencies(dependencies, activated, conflicts); end
4056
+ end
4057
+
4058
+ module Bundler::Molinillo::SpecificationProvider
4059
+ end
4060
+
4061
+ module Bundler::Molinillo::UI
4062
+ def after_resolution(); end
4063
+
4064
+ def before_resolution(); end
4065
+
4066
+ def debug(depth=T.unsafe(nil)); end
4067
+
4068
+ def debug?(); end
4069
+
4070
+ def indicate_progress(); end
4071
+
4072
+ def output(); end
4073
+
4074
+ def progress_rate(); end
4075
+ end
4076
+
4077
+ module Bundler::Molinillo::UI
4078
+ end
4079
+
4080
+ class Bundler::Molinillo::VersionConflict
4081
+ include ::Bundler::Molinillo::Delegates::SpecificationProvider
4082
+ def conflicts(); end
4083
+
4084
+ def initialize(conflicts, specification_provider); end
4085
+
4086
+ def message_with_trees(opts=T.unsafe(nil)); end
4087
+
4088
+ def specification_provider(); end
4089
+ end
4090
+
4091
+ class Bundler::Molinillo::VersionConflict
4092
+ end
4093
+
4094
+ module Bundler::Molinillo
4095
+ end
4096
+
4097
+ class Bundler::NoSpaceOnDeviceError
4098
+ end
4099
+
4100
+ class Bundler::NoSpaceOnDeviceError
4101
+ end
4102
+
4103
+ class Bundler::OperationNotSupportedError
4104
+ end
4105
+
4106
+ class Bundler::OperationNotSupportedError
4107
+ end
4108
+
4109
+ class Bundler::PathError
4110
+ def status_code(); end
4111
+ end
4112
+
4113
+ class Bundler::PathError
4114
+ end
4115
+
4116
+ class Bundler::PermissionError
4117
+ def action(); end
4118
+
4119
+ def initialize(path, permission_type=T.unsafe(nil)); end
4120
+
4121
+ def status_code(); end
4122
+ end
4123
+
4124
+ class Bundler::PermissionError
4125
+ end
4126
+
4127
+ module Bundler::Plugin
4128
+ PLUGIN_FILE_NAME = ::T.let(nil, ::T.untyped)
4129
+ end
4130
+
4131
+ class Bundler::Plugin::API
4132
+ def cache_dir(); end
4133
+
4134
+ def method_missing(name, *args, &blk); end
4135
+
4136
+ def tmp(*names); end
4137
+ end
4138
+
4139
+ module Bundler::Plugin::API::Source
4140
+ def ==(other); end
4141
+
4142
+ def app_cache_dirname(); end
4143
+
4144
+ def app_cache_path(custom_path=T.unsafe(nil)); end
4145
+
4146
+ def bundler_plugin_api_source?(); end
4147
+
4148
+ def cache(spec, custom_path=T.unsafe(nil)); end
4149
+
4150
+ def cached!(); end
4151
+
4152
+ def can_lock?(spec); end
4153
+
4154
+ def dependency_names(); end
4155
+
4156
+ def dependency_names=(dependency_names); end
2278
4157
 
2279
4158
  def double_check_for(*_); end
2280
4159
 
2281
- def eql?(other); end
4160
+ def eql?(other); end
4161
+
4162
+ def fetch_gemspec_files(); end
4163
+
4164
+ def gem_install_dir(); end
4165
+
4166
+ def hash(); end
4167
+
4168
+ def include?(other); end
4169
+
4170
+ def initialize(opts); end
4171
+
4172
+ def install(spec, opts); end
4173
+
4174
+ def install_path(); end
4175
+
4176
+ def installed?(); end
4177
+
4178
+ def name(); end
4179
+
4180
+ def options(); end
4181
+
4182
+ def options_to_lock(); end
4183
+
4184
+ def post_install(spec, disable_exts=T.unsafe(nil)); end
4185
+
4186
+ def remote!(); end
4187
+
4188
+ def root(); end
4189
+
4190
+ def specs(); end
4191
+
4192
+ def to_lock(); end
4193
+
4194
+ def to_s(); end
4195
+
4196
+ def unlock!(); end
4197
+
4198
+ def unmet_deps(); end
4199
+
4200
+ def uri(); end
4201
+
4202
+ def uri_hash(); end
4203
+ end
4204
+
4205
+ module Bundler::Plugin::API::Source
4206
+ end
4207
+
4208
+ class Bundler::Plugin::API
4209
+ def self.command(command, cls=T.unsafe(nil)); end
4210
+
4211
+ def self.hook(event, &block); end
4212
+
4213
+ def self.source(source, cls=T.unsafe(nil)); end
4214
+ end
4215
+
4216
+ class Bundler::Plugin::DSL
4217
+ def _gem(name, *args); end
4218
+
4219
+ def inferred_plugins(); end
4220
+
4221
+ def plugin(name, *args); end
4222
+ end
4223
+
4224
+ class Bundler::Plugin::DSL::PluginGemfileError
4225
+ end
4226
+
4227
+ class Bundler::Plugin::DSL::PluginGemfileError
4228
+ end
4229
+
4230
+ class Bundler::Plugin::DSL
4231
+ end
4232
+
4233
+ module Bundler::Plugin::Events
4234
+ GEM_AFTER_INSTALL = ::T.let(nil, ::T.untyped)
4235
+ GEM_AFTER_INSTALL_ALL = ::T.let(nil, ::T.untyped)
4236
+ GEM_BEFORE_INSTALL = ::T.let(nil, ::T.untyped)
4237
+ GEM_BEFORE_INSTALL_ALL = ::T.let(nil, ::T.untyped)
4238
+ end
4239
+
4240
+ module Bundler::Plugin::Events
4241
+ def self.defined_event?(event); end
4242
+ end
4243
+
4244
+ class Bundler::Plugin::Index
4245
+ def command_plugin(command); end
4246
+
4247
+ def commands(); end
4248
+
4249
+ def global_index_file(); end
4250
+
4251
+ def hook_plugins(event); end
4252
+
4253
+ def index_file(); end
4254
+
4255
+ def installed?(name); end
4256
+
4257
+ def load_paths(name); end
4258
+
4259
+ def local_index_file(); end
4260
+
4261
+ def plugin_path(name); end
4262
+
4263
+ def register_plugin(name, path, load_paths, commands, sources, hooks); end
4264
+
4265
+ def source?(source); end
4266
+
4267
+ def source_plugin(name); end
4268
+ end
4269
+
4270
+ class Bundler::Plugin::Index::CommandConflict
4271
+ def initialize(plugin, commands); end
4272
+ end
4273
+
4274
+ class Bundler::Plugin::Index::CommandConflict
4275
+ end
4276
+
4277
+ class Bundler::Plugin::Index::SourceConflict
4278
+ def initialize(plugin, sources); end
4279
+ end
4280
+
4281
+ class Bundler::Plugin::Index::SourceConflict
4282
+ end
4283
+
4284
+ class Bundler::Plugin::Index
4285
+ end
4286
+
4287
+ class Bundler::Plugin::Installer
4288
+ def install(names, options); end
4289
+
4290
+ def install_definition(definition); end
4291
+ end
4292
+
4293
+ class Bundler::Plugin::Installer::Git
4294
+ def generate_bin(spec, disable_extensions=T.unsafe(nil)); end
4295
+ end
4296
+
4297
+ class Bundler::Plugin::Installer::Git
4298
+ end
4299
+
4300
+ class Bundler::Plugin::Installer::Rubygems
4301
+ end
4302
+
4303
+ class Bundler::Plugin::Installer::Rubygems
4304
+ end
4305
+
4306
+ class Bundler::Plugin::Installer
4307
+ end
4308
+
4309
+ class Bundler::Plugin::MalformattedPlugin
4310
+ end
4311
+
4312
+ class Bundler::Plugin::MalformattedPlugin
4313
+ end
4314
+
4315
+ class Bundler::Plugin::SourceList
4316
+ end
4317
+
4318
+ class Bundler::Plugin::SourceList
4319
+ end
4320
+
4321
+ class Bundler::Plugin::UndefinedCommandError
4322
+ end
4323
+
4324
+ class Bundler::Plugin::UndefinedCommandError
4325
+ end
4326
+
4327
+ class Bundler::Plugin::UnknownSourceError
4328
+ end
4329
+
4330
+ class Bundler::Plugin::UnknownSourceError
4331
+ end
4332
+
4333
+ module Bundler::Plugin
4334
+ def self.add_command(command, cls); end
4335
+
4336
+ def self.add_hook(event, &block); end
4337
+
4338
+ def self.add_source(source, cls); end
4339
+
4340
+ def self.cache(); end
4341
+
4342
+ def self.command?(command); end
4343
+
4344
+ def self.exec_command(command, args); end
4345
+
4346
+ def self.gemfile_install(gemfile=T.unsafe(nil), &inline); end
4347
+
4348
+ def self.global_root(); end
4349
+
4350
+ def self.hook(event, *args, &arg_blk); end
4351
+
4352
+ def self.index(); end
4353
+
4354
+ def self.install(names, options); end
4355
+
4356
+ def self.installed?(plugin); end
4357
+
4358
+ def self.local_root(); end
4359
+
4360
+ def self.reset!(); end
4361
+
4362
+ def self.root(); end
4363
+
4364
+ def self.source(name); end
4365
+
4366
+ def self.source?(name); end
4367
+
4368
+ def self.source_from_lock(locked_opts); end
4369
+ end
4370
+
4371
+ class Bundler::PluginError
4372
+ def status_code(); end
4373
+ end
4374
+
4375
+ class Bundler::PluginError
4376
+ end
4377
+
4378
+ class Bundler::ProcessLock
4379
+ end
4380
+
4381
+ class Bundler::ProcessLock
4382
+ def self.lock(bundle_path=T.unsafe(nil)); end
4383
+ end
4384
+
4385
+ class Bundler::ProductionError
4386
+ def status_code(); end
4387
+ end
4388
+
4389
+ class Bundler::ProductionError
4390
+ end
4391
+
4392
+ class Bundler::RemoteSpecification
4393
+ include ::Bundler::MatchPlatform
4394
+ include ::Bundler::GemHelpers
4395
+ include ::Comparable
4396
+ def __swap__(spec); end
4397
+
4398
+ def dependencies(); end
4399
+
4400
+ def dependencies=(dependencies); end
4401
+
4402
+ def fetch_platform(); end
4403
+
4404
+ def full_name(); end
4405
+
4406
+ def git_version(); end
4407
+
4408
+ def initialize(name, version, platform, spec_fetcher); end
4409
+
4410
+ def name(); end
4411
+
4412
+ def platform(); end
4413
+
4414
+ def remote(); end
4415
+
4416
+ def remote=(remote); end
4417
+
4418
+ def respond_to?(method, include_all=T.unsafe(nil)); end
4419
+
4420
+ def sort_obj(); end
4421
+
4422
+ def source(); end
4423
+
4424
+ def source=(source); end
4425
+
4426
+ def version(); end
4427
+ end
4428
+
4429
+ class Bundler::RemoteSpecification
4430
+ end
4431
+
4432
+ class Bundler::Resolver
4433
+ include ::Bundler::Molinillo::UI
4434
+ include ::Bundler::Molinillo::SpecificationProvider
4435
+ def index_for(dependency); end
4436
+
4437
+ def initialize(index, source_requirements, base, gem_version_promoter, additional_base_requirements, platforms); end
4438
+
4439
+ def relevant_sources_for_vertex(vertex); end
4440
+
4441
+ def start(requirements); end
4442
+ end
4443
+
4444
+ class Bundler::Resolver::SpecGroup
4445
+ include ::Bundler::GemHelpers
4446
+ def ==(other); end
4447
+
4448
+ def activate_platform!(platform); end
4449
+
4450
+ def dependencies_for_activated_platforms(); end
4451
+
4452
+ def eql?(other); end
4453
+
4454
+ def for?(platform); end
4455
+
4456
+ def ignores_bundler_dependencies(); end
4457
+
4458
+ def ignores_bundler_dependencies=(ignores_bundler_dependencies); end
4459
+
4460
+ def initialize(all_specs); end
4461
+
4462
+ def name(); end
4463
+
4464
+ def name=(name); end
4465
+
4466
+ def source(); end
4467
+
4468
+ def source=(source); end
4469
+
4470
+ def to_specs(); end
4471
+
4472
+ def version(); end
4473
+
4474
+ def version=(version); end
4475
+ end
4476
+
4477
+ class Bundler::Resolver::SpecGroup
4478
+ end
4479
+
4480
+ class Bundler::Resolver
4481
+ def self.platform_sort_key(platform); end
4482
+
4483
+ def self.resolve(requirements, index, source_requirements=T.unsafe(nil), base=T.unsafe(nil), gem_version_promoter=T.unsafe(nil), additional_base_requirements=T.unsafe(nil), platforms=T.unsafe(nil)); end
4484
+
4485
+ def self.sort_platforms(platforms); end
4486
+ end
4487
+
4488
+ class Bundler::Retry
4489
+ def attempt(&block); end
4490
+
4491
+ def attempts(&block); end
4492
+
4493
+ def current_run(); end
4494
+
4495
+ def current_run=(current_run); end
4496
+
4497
+ def initialize(name, exceptions=T.unsafe(nil), retries=T.unsafe(nil)); end
4498
+
4499
+ def name(); end
4500
+
4501
+ def name=(name); end
4502
+
4503
+ def total_runs(); end
4504
+
4505
+ def total_runs=(total_runs); end
4506
+ end
4507
+
4508
+ class Bundler::Retry
4509
+ def self.attempts(); end
4510
+
4511
+ def self.default_attempts(); end
4512
+
4513
+ def self.default_retries(); end
4514
+ end
4515
+
4516
+ module Bundler::RubyDsl
4517
+ def ruby(*ruby_version); end
4518
+ end
4519
+
4520
+ module Bundler::RubyDsl
4521
+ end
4522
+
4523
+ class Bundler::RubyGemsGemInstaller
4524
+ end
4525
+
4526
+ class Bundler::RubyGemsGemInstaller
4527
+ end
4528
+
4529
+ class Bundler::RubyVersion
4530
+ def ==(other); end
4531
+
4532
+ def diff(other); end
4533
+
4534
+ def engine(); end
4535
+
4536
+ def engine_gem_version(); end
4537
+
4538
+ def engine_versions(); end
4539
+
4540
+ def exact?(); end
4541
+
4542
+ def gem_version(); end
4543
+
4544
+ def host(); end
4545
+
4546
+ def initialize(versions, patchlevel, engine, engine_version); end
4547
+
4548
+ def patchlevel(); end
4549
+
4550
+ def single_version_string(); end
4551
+
4552
+ def to_gem_version_with_patchlevel(); end
4553
+
4554
+ def to_s(versions=T.unsafe(nil)); end
4555
+
4556
+ def versions(); end
4557
+
4558
+ def versions_string(versions); end
4559
+ PATTERN = ::T.let(nil, ::T.untyped)
4560
+ end
4561
+
4562
+ class Bundler::RubyVersion
4563
+ def self.from_string(string); end
4564
+
4565
+ def self.system(); end
4566
+ end
4567
+
4568
+ class Bundler::RubyVersionMismatch
4569
+ def status_code(); end
4570
+ end
4571
+
4572
+ class Bundler::RubyVersionMismatch
4573
+ end
4574
+
4575
+ class Bundler::RubygemsIntegration
4576
+ def backport_base_dir(); end
4577
+
4578
+ def backport_cache_file(); end
4579
+
4580
+ def backport_segment_generation(); end
4581
+
4582
+ def backport_spec_file(); end
4583
+
4584
+ def backport_yaml_initialize(); end
4585
+
4586
+ def bin_path(gem, bin, ver); end
4587
+
4588
+ def binstubs_call_gem?(); end
4589
+
4590
+ def build(spec, skip_validation=T.unsafe(nil)); end
4591
+
4592
+ def build_args(); end
4593
+
4594
+ def build_args=(args); end
4595
+
4596
+ def build_gem(gem_dir, spec); end
4597
+
4598
+ def clear_paths(); end
4599
+
4600
+ def config_map(); end
4601
+
4602
+ def configuration(); end
4603
+
4604
+ def download_gem(spec, uri, path); end
4605
+
4606
+ def ext_lock(); end
4607
+
4608
+ def fetch_all_remote_specs(remote); end
4609
+
4610
+ def fetch_prerelease_specs(); end
4611
+
4612
+ def fetch_specs(all, pre, &blk); end
4613
+
4614
+ def gem_bindir(); end
4615
+
4616
+ def gem_cache(); end
4617
+
4618
+ def gem_dir(); end
4619
+
4620
+ def gem_from_path(path, policy=T.unsafe(nil)); end
4621
+
4622
+ def gem_path(); end
4623
+
4624
+ def inflate(obj); end
4625
+
4626
+ def install_with_build_args(args); end
4627
+
4628
+ def load_path_insert_index(); end
4629
+
4630
+ def load_plugin_files(files); end
4631
+
4632
+ def load_plugins(); end
4633
+
4634
+ def loaded_gem_paths(); end
4635
+
4636
+ def loaded_specs(name); end
4637
+
4638
+ def mark_loaded(spec); end
4639
+
4640
+ def marshal_spec_dir(); end
4641
+
4642
+ def method_visibility(klass, method); end
4643
+
4644
+ def path(obj); end
4645
+
4646
+ def path_separator(); end
4647
+
4648
+ def platforms(); end
4649
+
4650
+ def post_reset_hooks(); end
4651
+
4652
+ def preserve_paths(); end
4653
+
4654
+ def provides?(req_str); end
4655
+
4656
+ def read_binary(path); end
4657
+
4658
+ def redefine_method(klass, method, unbound_method=T.unsafe(nil), &block); end
4659
+
4660
+ def replace_bin_path(specs, specs_by_name); end
4661
+
4662
+ def replace_entrypoints(specs); end
4663
+
4664
+ def replace_gem(specs, specs_by_name); end
4665
+
4666
+ def replace_refresh(); end
4667
+
4668
+ def repository_subdirectories(); end
4669
+
4670
+ def reset(); end
4671
+
4672
+ def reverse_rubygems_kernel_mixin(); end
4673
+
4674
+ def ruby_engine(); end
4675
+
4676
+ def security_policies(); end
4677
+
4678
+ def security_policy_keys(); end
4679
+
4680
+ def set_installed_by_version(spec, installed_by_version=T.unsafe(nil)); end
4681
+
4682
+ def sources(); end
4683
+
4684
+ def sources=(val); end
4685
+
4686
+ def spec_cache_dirs(); end
4687
+
4688
+ def spec_default_gem?(spec); end
4689
+
4690
+ def spec_extension_dir(spec); end
4691
+
4692
+ def spec_from_gem(path, policy=T.unsafe(nil)); end
4693
+
4694
+ def spec_matches_for_glob(spec, glob); end
4695
+
4696
+ def spec_missing_extensions?(spec, default=T.unsafe(nil)); end
4697
+
4698
+ def stub_set_spec(stub, spec); end
4699
+
4700
+ def stub_source_index(specs); end
4701
+
4702
+ def stubs_provide_full_functionality?(); end
4703
+
4704
+ def suffix_pattern(); end
4705
+
4706
+ def ui=(obj); end
4707
+
4708
+ def undo_replacements(); end
4709
+
4710
+ def user_home(); end
4711
+
4712
+ def validate(spec); end
4713
+
4714
+ def version(); end
4715
+
4716
+ def with_build_args(args); end
4717
+ EXT_LOCK = ::T.let(nil, ::T.untyped)
4718
+ end
4719
+
4720
+ class Bundler::RubygemsIntegration::AlmostModern
4721
+ end
4722
+
4723
+ class Bundler::RubygemsIntegration::AlmostModern
4724
+ end
4725
+
4726
+ class Bundler::RubygemsIntegration::Ancient
4727
+ end
4728
+
4729
+ class Bundler::RubygemsIntegration::Ancient
4730
+ end
4731
+
4732
+ class Bundler::RubygemsIntegration::Future
4733
+ def all_specs(); end
4734
+
4735
+ def fetch_specs(source, remote, name); end
4736
+
4737
+ def find_name(name); end
4738
+
4739
+ def gem_remote_fetcher(); end
4740
+
4741
+ def stub_rubygems(specs); end
4742
+ end
4743
+
4744
+ class Bundler::RubygemsIntegration::Future
4745
+ end
4746
+
4747
+ class Bundler::RubygemsIntegration::Legacy
4748
+ def all_specs(); end
4749
+
4750
+ def find_name(name); end
4751
+
4752
+ def stub_rubygems(specs); end
4753
+ end
4754
+
4755
+ class Bundler::RubygemsIntegration::Legacy
4756
+ end
4757
+
4758
+ class Bundler::RubygemsIntegration::Modern
4759
+ def all_specs(); end
4760
+
4761
+ def find_name(name); end
4762
+
4763
+ def stub_rubygems(specs); end
4764
+ end
4765
+
4766
+ class Bundler::RubygemsIntegration::Modern
4767
+ end
4768
+
4769
+ class Bundler::RubygemsIntegration::MoreFuture
4770
+ def backport_ext_builder_monitor(); end
4771
+
4772
+ def use_gemdeps(gemfile); end
4773
+ end
4774
+
4775
+ class Bundler::RubygemsIntegration::MoreFuture
4776
+ end
4777
+
4778
+ class Bundler::RubygemsIntegration::MoreModern
4779
+ end
4780
+
4781
+ class Bundler::RubygemsIntegration::MoreModern
4782
+ end
4783
+
4784
+ class Bundler::RubygemsIntegration::Transitional
4785
+ end
4786
+
4787
+ class Bundler::RubygemsIntegration::Transitional
4788
+ end
4789
+
4790
+ class Bundler::RubygemsIntegration
4791
+ def self.provides?(req_str); end
4792
+
4793
+ def self.version(); end
4794
+ end
4795
+
4796
+ class Bundler::Runtime
4797
+ include ::Bundler::SharedHelpers
4798
+ def cache(custom_path=T.unsafe(nil)); end
4799
+
4800
+ def clean(dry_run=T.unsafe(nil)); end
4801
+
4802
+ def current_dependencies(); end
4803
+
4804
+ def dependencies(); end
4805
+
4806
+ def gems(); end
4807
+
4808
+ def initialize(root, definition); end
4809
+
4810
+ def lock(opts=T.unsafe(nil)); end
4811
+
4812
+ def prune_cache(cache_path); end
4813
+
4814
+ def requested_specs(); end
4815
+
4816
+ def require(*groups); end
4817
+
4818
+ def requires(); end
4819
+
4820
+ def setup(*groups); end
4821
+
4822
+ def specs(); end
4823
+ REQUIRE_ERRORS = ::T.let(nil, ::T.untyped)
4824
+ end
4825
+
4826
+ class Bundler::Runtime
4827
+ end
4828
+
4829
+ class Bundler::SecurityError
4830
+ def status_code(); end
4831
+ end
4832
+
4833
+ class Bundler::SecurityError
4834
+ end
4835
+
4836
+ class Bundler::Settings
4837
+ def [](name); end
4838
+
4839
+ def all(); end
4840
+
4841
+ def allow_sudo?(); end
4842
+
4843
+ def app_cache_path(); end
4844
+
4845
+ def credentials_for(uri); end
4846
+
4847
+ def gem_mirrors(); end
4848
+
4849
+ def ignore_config?(); end
4850
+
4851
+ def initialize(root=T.unsafe(nil)); end
4852
+
4853
+ def key_for(key); end
4854
+
4855
+ def local_overrides(); end
4856
+
4857
+ def locations(key); end
4858
+
4859
+ def mirror_for(uri); end
4860
+
4861
+ def path(); end
4862
+
4863
+ def pretty_values_for(exposed_key); end
4864
+
4865
+ def set_command_option(key, value); end
4866
+
4867
+ def set_command_option_if_given(key, value); end
4868
+
4869
+ def set_global(key, value); end
4870
+
4871
+ def set_local(key, value); end
4872
+
4873
+ def temporary(update); end
4874
+
4875
+ def validate!(); end
4876
+ ARRAY_KEYS = ::T.let(nil, ::T.untyped)
4877
+ BOOL_KEYS = ::T.let(nil, ::T.untyped)
4878
+ CONFIG_REGEX = ::T.let(nil, ::T.untyped)
4879
+ DEFAULT_CONFIG = ::T.let(nil, ::T.untyped)
4880
+ NORMALIZE_URI_OPTIONS_PATTERN = ::T.let(nil, ::T.untyped)
4881
+ NUMBER_KEYS = ::T.let(nil, ::T.untyped)
4882
+ PER_URI_OPTIONS = ::T.let(nil, ::T.untyped)
4883
+ end
4884
+
4885
+ class Bundler::Settings::Mirror
4886
+ def ==(other); end
4887
+
4888
+ def fallback_timeout(); end
4889
+
4890
+ def fallback_timeout=(timeout); end
2282
4891
 
2283
- def fetch_gemspec_files(); end
4892
+ def initialize(uri=T.unsafe(nil), fallback_timeout=T.unsafe(nil)); end
2284
4893
 
2285
- def gem_install_dir(); end
4894
+ def uri(); end
2286
4895
 
2287
- def hash(); end
4896
+ def uri=(uri); end
4897
+
4898
+ def valid?(); end
4899
+
4900
+ def validate!(probe=T.unsafe(nil)); end
4901
+ DEFAULT_FALLBACK_TIMEOUT = ::T.let(nil, ::T.untyped)
4902
+ end
4903
+
4904
+ class Bundler::Settings::Mirror
4905
+ end
4906
+
4907
+ class Bundler::Settings::Mirrors
4908
+ def each(&blk); end
4909
+
4910
+ def for(uri); end
4911
+
4912
+ def initialize(prober=T.unsafe(nil)); end
4913
+
4914
+ def parse(key, value); end
4915
+ end
4916
+
4917
+ class Bundler::Settings::Mirrors
4918
+ end
4919
+
4920
+ class Bundler::Settings::Path
4921
+ def append_ruby_scope(); end
4922
+
4923
+ def append_ruby_scope=(_); end
4924
+
4925
+ def base_path(); end
4926
+
4927
+ def base_path_relative_to_pwd(); end
4928
+
4929
+ def default_install_uses_path(); end
4930
+
4931
+ def default_install_uses_path=(_); end
4932
+
4933
+ def explicit_path(); end
4934
+
4935
+ def explicit_path=(_); end
4936
+
4937
+ def path(); end
4938
+
4939
+ def system_path(); end
4940
+
4941
+ def system_path=(_); end
4942
+
4943
+ def use_system_gems?(); end
4944
+
4945
+ def validate!(); end
4946
+ end
4947
+
4948
+ class Bundler::Settings::Path
4949
+ def self.[](*_); end
4950
+
4951
+ def self.members(); end
4952
+ end
4953
+
4954
+ class Bundler::Settings::Validator
4955
+ end
4956
+
4957
+ class Bundler::Settings::Validator::Rule
4958
+ def description(); end
4959
+
4960
+ def fail!(key, value, *reasons); end
4961
+
4962
+ def initialize(keys, description, &validate); end
4963
+
4964
+ def k(key); end
4965
+
4966
+ def set(settings, key, value, *reasons); end
4967
+
4968
+ def validate!(key, value, settings); end
4969
+ end
4970
+
4971
+ class Bundler::Settings::Validator::Rule
4972
+ end
4973
+
4974
+ class Bundler::Settings::Validator
4975
+ def self.validate!(key, value, settings); end
4976
+ end
4977
+
4978
+ class Bundler::Settings
4979
+ def self.normalize_uri(uri); end
4980
+ end
4981
+
4982
+ module Bundler::SharedHelpers
4983
+ def chdir(dir, &blk); end
4984
+
4985
+ def const_get_safely(constant_name, namespace); end
4986
+
4987
+ def default_bundle_dir(); end
4988
+
4989
+ def default_gemfile(); end
4990
+
4991
+ def default_lockfile(); end
4992
+
4993
+ def digest(name); end
4994
+
4995
+ def ensure_same_dependencies(spec, old_deps, new_deps); end
4996
+
4997
+ def filesystem_access(path, action=T.unsafe(nil), &block); end
4998
+
4999
+ def in_bundle?(); end
5000
+
5001
+ def major_deprecation(major_version, message); end
5002
+
5003
+ def md5_available?(); end
5004
+
5005
+ def pretty_dependency(dep, print_source=T.unsafe(nil)); end
5006
+
5007
+ def print_major_deprecations!(); end
5008
+
5009
+ def pwd(); end
5010
+
5011
+ def root(); end
5012
+
5013
+ def set_bundle_environment(); end
5014
+
5015
+ def set_env(key, value); end
5016
+
5017
+ def trap(signal, override=T.unsafe(nil), &block); end
5018
+
5019
+ def with_clean_git_env(&block); end
5020
+
5021
+ def write_to_gemfile(gemfile_path, contents); end
5022
+ end
5023
+
5024
+ module Bundler::SharedHelpers
5025
+ extend ::Bundler::SharedHelpers
5026
+ end
5027
+
5028
+ class Bundler::Source
5029
+ def can_lock?(spec); end
5030
+
5031
+ def dependency_names(); end
5032
+
5033
+ def dependency_names=(dependency_names); end
5034
+
5035
+ def dependency_names_to_double_check(); end
5036
+
5037
+ def double_check_for(*_); end
5038
+
5039
+ def extension_cache_path(spec); end
2288
5040
 
2289
5041
  def include?(other); end
2290
5042
 
2291
- def initialize(opts); end
5043
+ def path?(); end
2292
5044
 
2293
- def install(spec, opts); end
5045
+ def unmet_deps(); end
5046
+
5047
+ def version_message(spec); end
5048
+ end
5049
+
5050
+ class Bundler::Source::Gemspec
5051
+ def as_path_source(); end
5052
+
5053
+ def gemspec(); end
5054
+ end
5055
+
5056
+ class Bundler::Source::Gemspec
5057
+ end
5058
+
5059
+ class Bundler::Source::Git
5060
+ def allow_git_ops?(); end
5061
+
5062
+ def branch(); end
5063
+
5064
+ def cache_path(); end
5065
+
5066
+ def extension_dir_name(); end
2294
5067
 
2295
5068
  def install_path(); end
2296
5069
 
2297
- def installed?(); end
5070
+ def local_override!(path); end
5071
+
5072
+ def ref(); end
5073
+
5074
+ def revision(); end
5075
+
5076
+ def specs(*_); end
5077
+
5078
+ def submodules(); end
5079
+
5080
+ def unlock!(); end
5081
+
5082
+ def uri(); end
5083
+ end
5084
+
5085
+ class Bundler::Source::Git
5086
+ end
5087
+
5088
+ class Bundler::Source::Metadata
5089
+ def ==(other); end
5090
+
5091
+ def cached!(); end
5092
+
5093
+ def eql?(other); end
5094
+
5095
+ def install(spec, _opts=T.unsafe(nil)); end
5096
+
5097
+ def options(); end
5098
+
5099
+ def remote!(); end
5100
+
5101
+ def specs(); end
5102
+ end
5103
+
5104
+ class Bundler::Source::Metadata
5105
+ end
5106
+
5107
+ class Bundler::Source::Path
5108
+ def ==(other); end
5109
+
5110
+ def app_cache_dirname(); end
5111
+
5112
+ def cache(spec, custom_path=T.unsafe(nil)); end
5113
+
5114
+ def cached!(); end
5115
+
5116
+ def eql?(other); end
5117
+
5118
+ def expanded_original_path(); end
5119
+
5120
+ def initialize(options); end
5121
+
5122
+ def install(spec, options=T.unsafe(nil)); end
5123
+
5124
+ def local_specs(*_); end
2298
5125
 
2299
5126
  def name(); end
2300
5127
 
5128
+ def name=(name); end
5129
+
2301
5130
  def options(); end
2302
5131
 
2303
- def options_to_lock(); end
5132
+ def original_path(); end
2304
5133
 
2305
- def post_install(spec, disable_exts=T.unsafe(nil)); end
5134
+ def path(); end
2306
5135
 
2307
5136
  def remote!(); end
2308
5137
 
2309
5138
  def root(); end
2310
5139
 
5140
+ def root_path(); end
5141
+
2311
5142
  def specs(); end
2312
5143
 
2313
5144
  def to_lock(); end
2314
5145
 
2315
- def to_s(); end
5146
+ def version(); end
2316
5147
 
2317
- def unlock!(); end
5148
+ def version=(version); end
5149
+ DEFAULT_GLOB = ::T.let(nil, ::T.untyped)
5150
+ end
2318
5151
 
2319
- def unmet_deps(); end
5152
+ class Bundler::Source::Path
5153
+ def self.from_lock(options); end
5154
+ end
2320
5155
 
2321
- def uri(); end
5156
+ class Bundler::Source::Rubygems
5157
+ def ==(other); end
2322
5158
 
2323
- def uri_hash(); end
5159
+ def add_remote(source); end
5160
+
5161
+ def api_fetchers(); end
5162
+
5163
+ def builtin_gem?(spec); end
5164
+
5165
+ def cache(spec, custom_path=T.unsafe(nil)); end
5166
+
5167
+ def cache_path(); end
5168
+
5169
+ def cached!(); end
5170
+
5171
+ def cached_built_in_gem(spec); end
5172
+
5173
+ def cached_gem(spec); end
5174
+
5175
+ def cached_path(spec); end
5176
+
5177
+ def cached_specs(); end
5178
+
5179
+ def caches(); end
5180
+
5181
+ def credless_remotes(); end
5182
+
5183
+ def double_check_for(unmet_dependency_names); end
5184
+
5185
+ def eql?(other); end
5186
+
5187
+ def equivalent_remotes?(other_remotes); end
5188
+
5189
+ def fetch_gem(spec); end
5190
+
5191
+ def fetch_names(fetchers, dependency_names, index, override_dupes); end
5192
+
5193
+ def fetchers(); end
5194
+
5195
+ def include?(o); end
5196
+
5197
+ def initialize(options=T.unsafe(nil)); end
5198
+
5199
+ def install(spec, opts=T.unsafe(nil)); end
5200
+
5201
+ def installed?(spec); end
5202
+
5203
+ def installed_specs(); end
5204
+
5205
+ def loaded_from(spec); end
5206
+
5207
+ def name(); end
5208
+
5209
+ def normalize_uri(uri); end
5210
+
5211
+ def options(); end
5212
+
5213
+ def remote!(); end
5214
+
5215
+ def remote_specs(); end
5216
+
5217
+ def remotes(); end
5218
+
5219
+ def remotes_for_spec(spec); end
5220
+
5221
+ def remove_auth(remote); end
5222
+
5223
+ def replace_remotes(other_remotes, allow_equivalent=T.unsafe(nil)); end
5224
+
5225
+ def requires_sudo?(); end
5226
+
5227
+ def rubygems_dir(); end
5228
+
5229
+ def specs(); end
5230
+
5231
+ def suppress_configured_credentials(remote); end
5232
+
5233
+ def to_lock(); end
5234
+ API_REQUEST_LIMIT = ::T.let(nil, ::T.untyped)
5235
+ API_REQUEST_SIZE = ::T.let(nil, ::T.untyped)
2324
5236
  end
2325
5237
 
2326
- module Bundler::Plugin::API::Source
5238
+ class Bundler::Source::Rubygems
5239
+ def self.from_lock(options); end
2327
5240
  end
2328
5241
 
2329
- module Bundler::Plugin::Events
2330
- GEM_AFTER_INSTALL = ::T.let(nil, ::T.untyped)
2331
- GEM_AFTER_INSTALL_ALL = ::T.let(nil, ::T.untyped)
2332
- GEM_BEFORE_INSTALL = ::T.let(nil, ::T.untyped)
2333
- GEM_BEFORE_INSTALL_ALL = ::T.let(nil, ::T.untyped)
5242
+ class Bundler::Source
2334
5243
  end
2335
5244
 
2336
- class Bundler::Plugin::Index::CommandConflict
2337
- def initialize(plugin, commands); end
2338
- end
5245
+ class Bundler::SourceList
5246
+ def add_git_source(options=T.unsafe(nil)); end
5247
+
5248
+ def add_path_source(options=T.unsafe(nil)); end
5249
+
5250
+ def add_plugin_source(source, options=T.unsafe(nil)); end
5251
+
5252
+ def add_rubygems_remote(uri); end
5253
+
5254
+ def add_rubygems_source(options=T.unsafe(nil)); end
5255
+
5256
+ def all_sources(); end
5257
+
5258
+ def cached!(); end
5259
+
5260
+ def default_source(); end
5261
+
5262
+ def get(source); end
5263
+
5264
+ def git_sources(); end
5265
+
5266
+ def global_rubygems_source(); end
5267
+
5268
+ def global_rubygems_source=(uri); end
5269
+
5270
+ def lock_sources(); end
2339
5271
 
2340
- class Bundler::Plugin::Index::CommandConflict
2341
- end
5272
+ def metadata_source(); end
2342
5273
 
2343
- class Bundler::Plugin::Index::SourceConflict
2344
- def initialize(plugin, sources); end
2345
- end
5274
+ def path_sources(); end
2346
5275
 
2347
- class Bundler::Plugin::Index::SourceConflict
2348
- end
5276
+ def plugin_sources(); end
2349
5277
 
2350
- class Bundler::Plugin::Installer
2351
- def install(names, options); end
5278
+ def remote!(); end
2352
5279
 
2353
- def install_definition(definition); end
2354
- end
5280
+ def replace_sources!(replacement_sources); end
2355
5281
 
2356
- class Bundler::Plugin::Installer::Git
2357
- def generate_bin(spec, disable_extensions=T.unsafe(nil)); end
2358
- end
5282
+ def rubygems_primary_remotes(); end
2359
5283
 
2360
- class Bundler::Plugin::Installer::Git
2361
- end
5284
+ def rubygems_remotes(); end
2362
5285
 
2363
- class Bundler::Plugin::Installer::Rubygems
5286
+ def rubygems_sources(); end
2364
5287
  end
2365
5288
 
2366
- class Bundler::Plugin::Installer::Rubygems
5289
+ class Bundler::SourceList
2367
5290
  end
2368
5291
 
2369
- class Bundler::Plugin::Installer
2370
- end
5292
+ class Bundler::SpecSet
5293
+ include ::Enumerable
5294
+ include ::TSort
5295
+ def <<(*args, &block); end
2371
5296
 
2372
- class Bundler::Plugin::SourceList
2373
- end
5297
+ def [](key); end
2374
5298
 
2375
- class Bundler::Plugin::SourceList
2376
- end
5299
+ def []=(key, value); end
2377
5300
 
2378
- class Bundler::ProcessLock
2379
- end
5301
+ def add(*args, &block); end
2380
5302
 
2381
- class Bundler::ProcessLock
2382
- def self.lock(bundle_path=T.unsafe(nil)); end
2383
- end
5303
+ def each(*args, &block); end
2384
5304
 
2385
- class Bundler::Retry
2386
- def attempt(&block); end
5305
+ def empty?(*args, &block); end
2387
5306
 
2388
- def attempts(&block); end
5307
+ def find_by_name_and_platform(name, platform); end
2389
5308
 
2390
- def current_run(); end
5309
+ def for(dependencies, skip=T.unsafe(nil), check=T.unsafe(nil), match_current_platform=T.unsafe(nil), raise_on_missing=T.unsafe(nil)); end
2391
5310
 
2392
- def current_run=(current_run); end
5311
+ def initialize(specs); end
2393
5312
 
2394
- def initialize(name, exceptions=T.unsafe(nil), retries=T.unsafe(nil)); end
5313
+ def length(*args, &block); end
2395
5314
 
2396
- def name(); end
5315
+ def materialize(deps, missing_specs=T.unsafe(nil)); end
2397
5316
 
2398
- def name=(name); end
5317
+ def materialized_for_all_platforms(); end
2399
5318
 
2400
- def total_runs(); end
5319
+ def merge(set); end
2401
5320
 
2402
- def total_runs=(total_runs); end
2403
- end
5321
+ def remove(*args, &block); end
2404
5322
 
2405
- class Bundler::Retry
2406
- def self.attempts(); end
5323
+ def size(*args, &block); end
2407
5324
 
2408
- def self.default_attempts(); end
5325
+ def sort!(); end
2409
5326
 
2410
- def self.default_retries(); end
2411
- end
5327
+ def to_a(); end
2412
5328
 
2413
- class Bundler::RubyGemsGemInstaller
5329
+ def to_hash(); end
5330
+
5331
+ def valid_for?(deps); end
5332
+
5333
+ def what_required(spec); end
2414
5334
  end
2415
5335
 
2416
- class Bundler::RubyGemsGemInstaller
5336
+ class Bundler::SpecSet
5337
+ extend ::Forwardable
2417
5338
  end
2418
5339
 
2419
- class Bundler::Settings::Mirror
2420
- def ==(other); end
5340
+ class Bundler::StubSpecification
5341
+ def activated(); end
2421
5342
 
2422
- def fallback_timeout(); end
5343
+ def activated=(activated); end
2423
5344
 
2424
- def fallback_timeout=(timeout); end
5345
+ def default_gem(); end
2425
5346
 
2426
- def initialize(uri=T.unsafe(nil), fallback_timeout=T.unsafe(nil)); end
5347
+ def full_gem_path(); end
2427
5348
 
2428
- def uri(); end
5349
+ def full_require_paths(); end
2429
5350
 
2430
- def uri=(uri); end
5351
+ def ignored(); end
2431
5352
 
2432
- def valid?(); end
5353
+ def ignored=(ignored); end
2433
5354
 
2434
- def validate!(probe=T.unsafe(nil)); end
2435
- DEFAULT_FALLBACK_TIMEOUT = ::T.let(nil, ::T.untyped)
2436
- end
5355
+ def load_paths(); end
2437
5356
 
2438
- class Bundler::Settings::Mirror
2439
- end
5357
+ def loaded_from(); end
2440
5358
 
2441
- class Bundler::Settings::Mirrors
2442
- def each(&blk); end
5359
+ def matches_for_glob(glob); end
2443
5360
 
2444
- def for(uri); end
5361
+ def missing_extensions?(); end
2445
5362
 
2446
- def initialize(prober=T.unsafe(nil)); end
5363
+ def raw_require_paths(); end
2447
5364
 
2448
- def parse(key, value); end
2449
- end
5365
+ def source=(source); end
2450
5366
 
2451
- class Bundler::Settings::Mirrors
2452
- end
5367
+ def stub(); end
2453
5368
 
2454
- class Bundler::Settings::Validator
5369
+ def stub=(stub); end
5370
+
5371
+ def to_yaml(); end
2455
5372
  end
2456
5373
 
2457
- class Bundler::Settings::Validator::Rule
2458
- def description(); end
5374
+ class Bundler::StubSpecification
5375
+ def self.from_stub(stub); end
5376
+ end
2459
5377
 
2460
- def fail!(key, value, *reasons); end
5378
+ class Bundler::SudoNotPermittedError
5379
+ def status_code(); end
5380
+ end
2461
5381
 
2462
- def initialize(keys, description, &validate); end
5382
+ class Bundler::SudoNotPermittedError
5383
+ end
2463
5384
 
2464
- def k(key); end
5385
+ class Bundler::TemporaryResourceError
5386
+ end
2465
5387
 
2466
- def set(settings, key, value, *reasons); end
5388
+ class Bundler::TemporaryResourceError
5389
+ end
2467
5390
 
2468
- def validate!(key, value, settings); end
5391
+ class Bundler::ThreadCreationError
5392
+ def status_code(); end
2469
5393
  end
2470
5394
 
2471
- class Bundler::Settings::Validator::Rule
5395
+ class Bundler::ThreadCreationError
2472
5396
  end
2473
5397
 
2474
- class Bundler::Settings::Validator
2475
- def self.validate!(key, value, settings); end
5398
+ module Bundler::UI
2476
5399
  end
2477
5400
 
2478
- class Bundler::SpecSet
2479
- include ::Enumerable
5401
+ class Bundler::UI::RGProxy
5402
+ def initialize(ui); end
5403
+
5404
+ def say(message); end
2480
5405
  end
2481
5406
 
2482
5407
  class Bundler::UI::RGProxy
@@ -2524,6 +5449,68 @@ end
2524
5449
  class Bundler::UI::Shell
2525
5450
  end
2526
5451
 
5452
+ class Bundler::UI::Silent
5453
+ def add_color(string, color); end
5454
+
5455
+ def ask(message); end
5456
+
5457
+ def confirm(message, newline=T.unsafe(nil)); end
5458
+
5459
+ def debug(message, newline=T.unsafe(nil)); end
5460
+
5461
+ def debug?(); end
5462
+
5463
+ def error(message, newline=T.unsafe(nil)); end
5464
+
5465
+ def info(message, newline=T.unsafe(nil)); end
5466
+
5467
+ def level(name=T.unsafe(nil)); end
5468
+
5469
+ def level=(name); end
5470
+
5471
+ def no?(); end
5472
+
5473
+ def quiet?(); end
5474
+
5475
+ def shell=(shell); end
5476
+
5477
+ def silence(); end
5478
+
5479
+ def trace(message, newline=T.unsafe(nil), force=T.unsafe(nil)); end
5480
+
5481
+ def unprinted_warnings(); end
5482
+
5483
+ def warn(message, newline=T.unsafe(nil)); end
5484
+
5485
+ def yes?(msg); end
5486
+ end
5487
+
5488
+ class Bundler::UI::Silent
5489
+ end
5490
+
5491
+ module Bundler::UI
5492
+ end
5493
+
5494
+ module Bundler::URICredentialsFilter
5495
+ end
5496
+
5497
+ module Bundler::URICredentialsFilter
5498
+ def self.credential_filtered_string(str_to_filter, uri); end
5499
+
5500
+ def self.credential_filtered_uri(uri_to_anonymize); end
5501
+ end
5502
+
5503
+ class Bundler::VersionConflict
5504
+ def conflicts(); end
5505
+
5506
+ def initialize(conflicts, msg=T.unsafe(nil)); end
5507
+
5508
+ def status_code(); end
5509
+ end
5510
+
5511
+ class Bundler::VersionConflict
5512
+ end
5513
+
2527
5514
  module Bundler::VersionRanges
2528
5515
  end
2529
5516
 
@@ -2552,40 +5539,183 @@ class Bundler::VersionRanges::ReqR
2552
5539
 
2553
5540
  def right=(_); end
2554
5541
 
2555
- def single?(); end
2556
- INFINITY = ::T.let(nil, ::T.untyped)
2557
- UNIVERSAL = ::T.let(nil, ::T.untyped)
2558
- ZERO = ::T.let(nil, ::T.untyped)
2559
- end
5542
+ def single?(); end
5543
+ INFINITY = ::T.let(nil, ::T.untyped)
5544
+ UNIVERSAL = ::T.let(nil, ::T.untyped)
5545
+ ZERO = ::T.let(nil, ::T.untyped)
5546
+ end
5547
+
5548
+ class Bundler::VersionRanges::ReqR::Endpoint
5549
+ def inclusive(); end
5550
+
5551
+ def inclusive=(_); end
5552
+
5553
+ def version(); end
5554
+
5555
+ def version=(_); end
5556
+ end
5557
+
5558
+ class Bundler::VersionRanges::ReqR::Endpoint
5559
+ def self.[](*_); end
5560
+
5561
+ def self.members(); end
5562
+ end
5563
+
5564
+ class Bundler::VersionRanges::ReqR
5565
+ def self.[](*_); end
5566
+
5567
+ def self.members(); end
5568
+ end
5569
+
5570
+ module Bundler::VersionRanges
5571
+ def self.empty?(ranges, neqs); end
5572
+
5573
+ def self.for(requirement); end
5574
+
5575
+ def self.for_many(requirements); end
5576
+ end
5577
+
5578
+ class Bundler::VirtualProtocolError
5579
+ def status_code(); end
5580
+ end
5581
+
5582
+ class Bundler::VirtualProtocolError
5583
+ end
5584
+
5585
+ module Bundler::YAMLSerializer
5586
+ ARRAY_REGEX = ::T.let(nil, ::T.untyped)
5587
+ HASH_REGEX = ::T.let(nil, ::T.untyped)
5588
+ end
5589
+
5590
+ module Bundler::YAMLSerializer
5591
+ def self.dump(hash); end
5592
+
5593
+ def self.load(str); end
5594
+ end
5595
+
5596
+ class Bundler::YamlSyntaxError
5597
+ def initialize(orig_exception, msg); end
5598
+
5599
+ def orig_exception(); end
5600
+
5601
+ def status_code(); end
5602
+ end
5603
+
5604
+ class Bundler::YamlSyntaxError
5605
+ end
5606
+
5607
+ module Bundler
5608
+ def self.app_cache(custom_path=T.unsafe(nil)); end
5609
+
5610
+ def self.app_config_path(); end
5611
+
5612
+ def self.bin_path(); end
5613
+
5614
+ def self.bundle_path(); end
5615
+
5616
+ def self.bundler_major_version(); end
5617
+
5618
+ def self.clean_env(); end
5619
+
5620
+ def self.clean_exec(*args); end
5621
+
5622
+ def self.clean_system(*args); end
5623
+
5624
+ def self.clear_gemspec_cache(); end
5625
+
5626
+ def self.configure(); end
5627
+
5628
+ def self.configured_bundle_path(); end
5629
+
5630
+ def self.current_ruby(); end
5631
+
5632
+ def self.default_bundle_dir(); end
5633
+
5634
+ def self.default_gemfile(); end
5635
+
5636
+ def self.default_lockfile(); end
5637
+
5638
+ def self.definition(unlock=T.unsafe(nil)); end
5639
+
5640
+ def self.environment(); end
5641
+
5642
+ def self.feature_flag(); end
5643
+
5644
+ def self.frozen_bundle?(); end
5645
+
5646
+ def self.git_present?(); end
5647
+
5648
+ def self.home(); end
5649
+
5650
+ def self.install_path(); end
5651
+
5652
+ def self.load_gemspec(file, validate=T.unsafe(nil)); end
5653
+
5654
+ def self.load_gemspec_uncached(file, validate=T.unsafe(nil)); end
5655
+
5656
+ def self.load_marshal(data); end
5657
+
5658
+ def self.local_platform(); end
5659
+
5660
+ def self.locked_gems(); end
5661
+
5662
+ def self.mkdir_p(path, options=T.unsafe(nil)); end
5663
+
5664
+ def self.original_env(); end
5665
+
5666
+ def self.read_file(file); end
5667
+
5668
+ def self.require(*groups); end
5669
+
5670
+ def self.require_thor_actions(); end
5671
+
5672
+ def self.requires_sudo?(); end
5673
+
5674
+ def self.reset!(); end
5675
+
5676
+ def self.reset_paths!(); end
5677
+
5678
+ def self.reset_rubygems!(); end
5679
+
5680
+ def self.rm_rf(path); end
5681
+
5682
+ def self.root(); end
5683
+
5684
+ def self.ruby_scope(); end
5685
+
5686
+ def self.rubygems(); end
5687
+
5688
+ def self.settings(); end
5689
+
5690
+ def self.setup(*groups); end
5691
+
5692
+ def self.specs_path(); end
5693
+
5694
+ def self.sudo(str); end
5695
+
5696
+ def self.system_bindir(); end
2560
5697
 
2561
- class Bundler::VersionRanges::ReqR::Endpoint
2562
- def inclusive(); end
5698
+ def self.tmp(name=T.unsafe(nil)); end
2563
5699
 
2564
- def inclusive=(_); end
5700
+ def self.tmp_home_path(login, warning); end
2565
5701
 
2566
- def version(); end
5702
+ def self.ui(); end
2567
5703
 
2568
- def version=(_); end
2569
- end
5704
+ def self.ui=(ui); end
2570
5705
 
2571
- class Bundler::VersionRanges::ReqR::Endpoint
2572
- def self.[](*_); end
5706
+ def self.use_system_gems?(); end
2573
5707
 
2574
- def self.members(); end
2575
- end
5708
+ def self.user_bundle_path(dir=T.unsafe(nil)); end
2576
5709
 
2577
- class Bundler::VersionRanges::ReqR
2578
- def self.[](*_); end
5710
+ def self.user_cache(); end
2579
5711
 
2580
- def self.members(); end
2581
- end
5712
+ def self.user_home(); end
2582
5713
 
2583
- module Bundler::VersionRanges
2584
- def self.empty?(ranges, neqs); end
5714
+ def self.which(executable); end
2585
5715
 
2586
- def self.for(requirement); end
5716
+ def self.with_clean_env(); end
2587
5717
 
2588
- def self.for_many(requirements); end
5718
+ def self.with_original_env(); end
2589
5719
  end
2590
5720
 
2591
5721
  module CGI::HtmlExtension
@@ -2876,6 +6006,8 @@ class CSV
2876
6006
  end
2877
6007
 
2878
6008
  class Class
6009
+ def class_attribute(*attrs); end
6010
+
2879
6011
  def json_creatable?(); end
2880
6012
  end
2881
6013
 
@@ -2974,186 +6106,6 @@ class Crack::JSON
2974
6106
  DATE_REGEX = ::T.let(nil, ::T.untyped)
2975
6107
  end
2976
6108
 
2977
- class DRb::DRbArray
2978
- def _dump(lv); end
2979
- end
2980
-
2981
- class DRb::DRbArray
2982
- def self._load(s); end
2983
- end
2984
-
2985
- class DRb::DRbConn
2986
- def alive?(); end
2987
-
2988
- def close(); end
2989
-
2990
- def initialize(remote_uri); end
2991
-
2992
- def send_message(ref, msg_id, arg, block); end
2993
-
2994
- def uri(); end
2995
- end
2996
-
2997
- class DRb::DRbConn
2998
- def self.open(remote_uri); end
2999
- end
3000
-
3001
- class DRb::DRbMessage
3002
- def dump(obj, error=T.unsafe(nil)); end
3003
-
3004
- def initialize(config); end
3005
-
3006
- def load(soc); end
3007
-
3008
- def recv_reply(stream); end
3009
-
3010
- def recv_request(stream); end
3011
-
3012
- def send_reply(stream, succ, result); end
3013
-
3014
- def send_request(stream, ref, msg_id, arg, b); end
3015
- end
3016
-
3017
- class DRb::DRbObject
3018
- def ==(other); end
3019
-
3020
- def eql?(other); end
3021
-
3022
- def initialize(obj, uri=T.unsafe(nil)); end
3023
- end
3024
-
3025
- class DRb::DRbObject
3026
- def self.prepare_backtrace(uri, result); end
3027
-
3028
- def self.with_friend(uri); end
3029
- end
3030
-
3031
- module DRb::DRbProtocol
3032
- def self.auto_load(uri); end
3033
- end
3034
-
3035
- class DRb::DRbRemoteError
3036
- def initialize(error); end
3037
- end
3038
-
3039
- class DRb::DRbServer
3040
- def initialize(uri=T.unsafe(nil), front=T.unsafe(nil), config_or_acl=T.unsafe(nil)); end
3041
-
3042
- def safe_level(); end
3043
- end
3044
-
3045
- class DRb::DRbServer::InvokeMethod
3046
- include ::DRb::DRbServer::InvokeMethod18Mixin
3047
- def initialize(drb_server, client); end
3048
-
3049
- def perform(); end
3050
- end
3051
-
3052
- class DRb::DRbServer::InvokeMethod
3053
- end
3054
-
3055
- module DRb::DRbServer::InvokeMethod18Mixin
3056
- def block_yield(x); end
3057
-
3058
- def perform_with_block(); end
3059
- end
3060
-
3061
- module DRb::DRbServer::InvokeMethod18Mixin
3062
- end
3063
-
3064
- class DRb::DRbServer
3065
- def self.default_safe_level(level); end
3066
-
3067
- def self.make_config(hash=T.unsafe(nil)); end
3068
- end
3069
-
3070
- class DRb::DRbTCPSocket
3071
- def accept(); end
3072
-
3073
- def alive?(); end
3074
-
3075
- def close(); end
3076
-
3077
- def initialize(uri, soc, config=T.unsafe(nil)); end
3078
-
3079
- def peeraddr(); end
3080
-
3081
- def recv_reply(); end
3082
-
3083
- def recv_request(); end
3084
-
3085
- def send_reply(succ, result); end
3086
-
3087
- def send_request(ref, msg_id, arg, b); end
3088
-
3089
- def set_sockopt(soc); end
3090
-
3091
- def shutdown(); end
3092
-
3093
- def stream(); end
3094
-
3095
- def uri(); end
3096
- end
3097
-
3098
- class DRb::DRbTCPSocket
3099
- def self.getservername(); end
3100
-
3101
- def self.open(uri, config); end
3102
-
3103
- def self.open_server(uri, config); end
3104
-
3105
- def self.open_server_inaddr_any(host, port); end
3106
-
3107
- def self.parse_uri(uri); end
3108
-
3109
- def self.uri_option(uri, config); end
3110
- end
3111
-
3112
- class DRb::DRbURIOption
3113
- def ==(other); end
3114
-
3115
- def eql?(other); end
3116
-
3117
- def initialize(option); end
3118
-
3119
- def option(); end
3120
- end
3121
-
3122
- class DRb::DRbURIOption
3123
- end
3124
-
3125
- module DRb::DRbUndumped
3126
- def _dump(dummy); end
3127
- end
3128
-
3129
- class DRb::DRbUnknown
3130
- def _dump(lv); end
3131
- end
3132
-
3133
- class DRb::DRbUnknown
3134
- def self._load(s); end
3135
- end
3136
-
3137
- class DRb::DRbUnknownError
3138
- def _dump(lv); end
3139
-
3140
- def initialize(unknown); end
3141
- end
3142
-
3143
- class DRb::DRbUnknownError
3144
- def self._load(s); end
3145
- end
3146
-
3147
- module DRb
3148
- def self.mutex(); end
3149
- end
3150
-
3151
- DRbIdConv = DRb::DRbIdConv
3152
-
3153
- DRbObject = DRb::DRbObject
3154
-
3155
- DRbUndumped = DRb::DRbUndumped
3156
-
3157
6109
  class Date
3158
6110
  DATE_FORMATS = ::T.let(nil, ::T.untyped)
3159
6111
  end
@@ -8192,7 +11144,7 @@ module I18n::Backend::Base
8192
11144
 
8193
11145
  def eager_loaded?(); end
8194
11146
 
8195
- def exists?(locale, key); end
11147
+ def exists?(locale, key, options=T.unsafe(nil)); end
8196
11148
 
8197
11149
  def interpolate(locale, subject, values=T.unsafe(nil)); end
8198
11150
 
@@ -8282,7 +11234,7 @@ module I18n::Backend::Chain::Implementation
8282
11234
 
8283
11235
  def eager_load!(); end
8284
11236
 
8285
- def exists?(locale, key); end
11237
+ def exists?(locale, key, options=T.unsafe(nil)); end
8286
11238
 
8287
11239
  def init_translations(); end
8288
11240
 
@@ -8310,7 +11262,7 @@ class I18n::Backend::Chain
8310
11262
  end
8311
11263
 
8312
11264
  module I18n::Backend::Fallbacks
8313
- def exists?(locale, key); end
11265
+ def exists?(locale, key, options=T.unsafe(nil)); end
8314
11266
 
8315
11267
  def extract_non_symbol_default!(options); end
8316
11268
 
@@ -12132,6 +15084,63 @@ class RSpec::Core::FilterRules
12132
15084
  PROJECT_DIR = ::T.let(nil, ::T.untyped)
12133
15085
  end
12134
15086
 
15087
+ class RSpec::Core::Formatters::BaseBisectFormatter
15088
+ def example_failed(notification); end
15089
+
15090
+ def example_finished(notification); end
15091
+
15092
+ def initialize(expected_failures); end
15093
+
15094
+ def start_dump(_notification); end
15095
+ end
15096
+
15097
+ class RSpec::Core::Formatters::BaseBisectFormatter
15098
+ def self.inherited(formatter); end
15099
+ end
15100
+
15101
+ class RSpec::Core::Formatters::BaseFormatter
15102
+ def close(_notification); end
15103
+
15104
+ def example_group(); end
15105
+
15106
+ def example_group=(example_group); end
15107
+
15108
+ def example_group_started(notification); end
15109
+
15110
+ def initialize(output); end
15111
+
15112
+ def output(); end
15113
+
15114
+ def start(notification); end
15115
+ end
15116
+
15117
+ class RSpec::Core::Formatters::BaseFormatter
15118
+ end
15119
+
15120
+ class RSpec::Core::Formatters::BaseTextFormatter
15121
+ def dump_failures(notification); end
15122
+
15123
+ def dump_pending(notification); end
15124
+
15125
+ def dump_summary(summary); end
15126
+
15127
+ def message(notification); end
15128
+
15129
+ def seed(notification); end
15130
+ end
15131
+
15132
+ class RSpec::Core::Formatters::BaseTextFormatter
15133
+ end
15134
+
15135
+ class RSpec::Core::Formatters::BisectDRbFormatter
15136
+ def initialize(_output); end
15137
+
15138
+ def notify_results(results); end
15139
+ end
15140
+
15141
+ class RSpec::Core::Formatters::BisectDRbFormatter
15142
+ end
15143
+
12135
15144
  module RSpec::Core::Formatters::ConsoleCodes
12136
15145
  VT100_CODES = ::T.let(nil, ::T.untyped)
12137
15146
  VT100_CODE_VALUES = ::T.let(nil, ::T.untyped)
@@ -12147,20 +15156,99 @@ class RSpec::Core::Formatters::DeprecationFormatter::DelayedPrinter
12147
15156
  TOO_MANY_USES_LIMIT = ::T.let(nil, ::T.untyped)
12148
15157
  end
12149
15158
 
15159
+ class RSpec::Core::Formatters::DocumentationFormatter
15160
+ def example_failed(failure); end
15161
+
15162
+ def example_group_finished(_notification); end
15163
+
15164
+ def example_passed(passed); end
15165
+
15166
+ def example_pending(pending); end
15167
+ end
15168
+
15169
+ class RSpec::Core::Formatters::DocumentationFormatter
15170
+ end
15171
+
12150
15172
  class RSpec::Core::Formatters::ExceptionPresenter
12151
15173
  PENDING_DETAIL_FORMATTER = ::T.let(nil, ::T.untyped)
12152
15174
  end
12153
15175
 
15176
+ class RSpec::Core::Formatters::FallbackMessageFormatter
15177
+ def initialize(output); end
15178
+
15179
+ def message(notification); end
15180
+
15181
+ def output(); end
15182
+ end
15183
+
15184
+ class RSpec::Core::Formatters::FallbackMessageFormatter
15185
+ end
15186
+
12154
15187
  module RSpec::Core::Formatters::Helpers
12155
15188
  DEFAULT_PRECISION = ::T.let(nil, ::T.untyped)
12156
15189
  SUB_SECOND_PRECISION = ::T.let(nil, ::T.untyped)
12157
15190
  end
12158
15191
 
12159
- class RSpec::Core::Formatters::HtmlPrinter
12160
- GLOBAL_SCRIPTS = ::T.let(nil, ::T.untyped)
12161
- GLOBAL_STYLES = ::T.let(nil, ::T.untyped)
12162
- HTML_HEADER = ::T.let(nil, ::T.untyped)
12163
- REPORT_HEADER = ::T.let(nil, ::T.untyped)
15192
+ class RSpec::Core::Formatters::HtmlFormatter
15193
+ def dump_summary(summary); end
15194
+
15195
+ def example_failed(failure); end
15196
+
15197
+ def example_passed(passed); end
15198
+
15199
+ def example_pending(pending); end
15200
+
15201
+ def example_started(_notification); end
15202
+
15203
+ def start_dump(_notification); end
15204
+ end
15205
+
15206
+ class RSpec::Core::Formatters::HtmlFormatter
15207
+ end
15208
+
15209
+ class RSpec::Core::Formatters::JsonFormatter
15210
+ def dump_profile(profile); end
15211
+
15212
+ def dump_profile_slowest_example_groups(profile); end
15213
+
15214
+ def dump_profile_slowest_examples(profile); end
15215
+
15216
+ def dump_summary(summary); end
15217
+
15218
+ def message(notification); end
15219
+
15220
+ def output_hash(); end
15221
+
15222
+ def seed(notification); end
15223
+
15224
+ def stop(notification); end
15225
+ end
15226
+
15227
+ class RSpec::Core::Formatters::JsonFormatter
15228
+ end
15229
+
15230
+ class RSpec::Core::Formatters::ProfileFormatter
15231
+ def dump_profile(profile); end
15232
+
15233
+ def initialize(output); end
15234
+
15235
+ def output(); end
15236
+ end
15237
+
15238
+ class RSpec::Core::Formatters::ProfileFormatter
15239
+ end
15240
+
15241
+ class RSpec::Core::Formatters::ProgressFormatter
15242
+ def example_failed(_notification); end
15243
+
15244
+ def example_passed(_notification); end
15245
+
15246
+ def example_pending(_notification); end
15247
+
15248
+ def start_dump(_notification); end
15249
+ end
15250
+
15251
+ class RSpec::Core::Formatters::ProgressFormatter
12164
15252
  end
12165
15253
 
12166
15254
  module RSpec::Core::Formatters::SyntaxHighlighter::CodeRayImplementation
@@ -12320,6 +15408,8 @@ class RSpec::Support::Differ
12320
15408
  end
12321
15409
 
12322
15410
  class RSpec::Support::EncodedString
15411
+ ENCODE_NO_CONVERTER = ::T.let(nil, ::T.untyped)
15412
+ ENCODE_UNCONVERTABLE_BYTES = ::T.let(nil, ::T.untyped)
12323
15413
  REPLACE = ::T.let(nil, ::T.untyped)
12324
15414
  US_ASCII = ::T.let(nil, ::T.untyped)
12325
15415
  UTF_8 = ::T.let(nil, ::T.untyped)
@@ -12329,9 +15419,7 @@ class RSpec::Support::MethodSignature
12329
15419
  INFINITY = ::T.let(nil, ::T.untyped)
12330
15420
  end
12331
15421
 
12332
- class RSpec::Support::Mutex
12333
- NEW_MUTEX_METHOD = ::T.let(nil, ::T.untyped)
12334
- end
15422
+ RSpec::Support::Mutex = Thread::Mutex
12335
15423
 
12336
15424
  class RSpec::Support::ObjectFormatter
12337
15425
  ELLIPSIS = ::T.let(nil, ::T.untyped)
@@ -12708,10 +15796,23 @@ module Setsuzoku::AuthStrategy
12708
15796
  end
12709
15797
 
12710
15798
  module Setsuzoku::Credential
15799
+ def settings(*args, &blk); end
15800
+
15801
+ def settings=(*args, &blk); end
15802
+
15803
+ def status(*args, &blk); end
15804
+
15805
+ def status=(*args, &blk); end
15806
+ end
15807
+
15808
+ module Setsuzoku::Credential
15809
+ extend ::T::Sig
15810
+ extend ::T::Helpers
12711
15811
  extend ::T::Private::Abstract::Hooks
12712
15812
  extend ::T::InterfaceWrapper::Helpers
12713
15813
  extend ::T::Private::Methods::MethodHooks
12714
15814
  extend ::T::Private::Methods::SingletonMethodHooks
15815
+ def self.stub_credential(*args, &blk); end
12715
15816
  end
12716
15817
 
12717
15818
  module Setsuzoku::Pluggable
@@ -12746,87 +15847,9 @@ module Setsuzoku::Plugin
12746
15847
  def request_class(*args, &block); end
12747
15848
  end
12748
15849
 
12749
- class Setsuzoku::Plugin::Mobile::BandwidthPlugin
12750
- include ::Setsuzoku::Plugin
12751
- include ::Setsuzoku::Service::WebService::AuthStrategy::InterfaceMethods
12752
- include ::Setsuzoku::Service::WebService::ApiStrategy::InterfaceMethods
12753
- def api_base_url(&blk); end
12754
- end
12755
-
12756
- class Setsuzoku::Plugin::Mobile::BandwidthPlugin
12757
- extend ::Setsuzoku::Plugin::ClassMethods
12758
- end
12759
-
12760
- class Setsuzoku::Plugin::Mobile::Plugin
12761
- def api_headers(*args, &blk); end
12762
-
12763
- def caller_id_lookup(*args, &blk); end
12764
-
12765
- def destroy_number(*args, &blk); end
12766
-
12767
- def existing_number_search(*args, &blk); end
12768
-
12769
- def owned_number_details(*args, &blk); end
12770
-
12771
- def purchase_number(*args, &blk); end
12772
-
12773
- def search_local(*args, &blk); end
12774
-
12775
- def search_toll_free(*args, &blk); end
12776
-
12777
- def send_message(*args, &blk); end
12778
- end
12779
-
12780
- class Setsuzoku::Plugin::Mobile::Plugin
12781
- extend ::T::Sig
12782
- extend ::T::Helpers
12783
- extend ::T::Private::Methods::MethodHooks
12784
- extend ::T::Private::Methods::SingletonMethodHooks
12785
- def self.origin(&blk); end
12786
-
12787
- def self.plugin_namespace(&blk); end
12788
-
12789
- def self.spec_definitions(); end
12790
-
12791
- def self.system_name(&blk); end
12792
- end
12793
-
12794
- class Setsuzoku::Plugin::Mobile::RingCentralPlugin
12795
- include ::Setsuzoku::Service::WebService::AuthStrategy::InterfaceMethods
12796
- include ::Setsuzoku::Service::WebService::ApiStrategy::InterfaceMethods
12797
- end
12798
-
12799
- class Setsuzoku::Plugin::Mobile::RingCentralPlugin
12800
- extend ::Setsuzoku::Plugin::ClassMethods
12801
- end
12802
-
12803
- class Setsuzoku::Plugin::Mobile::SignalwirePlugin
12804
- include ::Setsuzoku::Plugin
12805
- include ::Setsuzoku::Service::WebService::AuthStrategy::InterfaceMethods
12806
- include ::Setsuzoku::Service::WebService::ApiStrategy::InterfaceMethods
12807
- def api_base_url(&blk); end
12808
- end
12809
-
12810
- class Setsuzoku::Plugin::Mobile::SignalwirePlugin
12811
- extend ::Setsuzoku::Plugin::ClassMethods
12812
- end
12813
-
12814
- class Setsuzoku::Plugin::Mobile::TwilioPlugin
12815
- include ::Setsuzoku::Plugin
12816
- include ::Setsuzoku::Service::WebService::AuthStrategy::InterfaceMethods
12817
- include ::Setsuzoku::Service::WebService::ApiStrategy::InterfaceMethods
12818
- def api_base_url(&blk); end
12819
- end
12820
-
12821
- class Setsuzoku::Plugin::Mobile::TwilioPlugin
12822
- extend ::Setsuzoku::Plugin::ClassMethods
12823
- end
12824
-
12825
15850
  module Setsuzoku::Plugin
12826
15851
  extend ::T::Private::Abstract::Hooks
12827
15852
  extend ::T::InterfaceWrapper::Helpers
12828
- extend ::T::Private::Methods::MethodHooks
12829
- extend ::T::Private::Methods::SingletonMethodHooks
12830
15853
  end
12831
15854
 
12832
15855
  module Setsuzoku::Service
@@ -12870,6 +15893,11 @@ class Setsuzoku::Service::WebService::AuthStrategies::BasicAuthStrategy
12870
15893
  def self.required_instance_methods(); end
12871
15894
  end
12872
15895
 
15896
+ module Setsuzoku::Service::WebService::AuthStrategies::UsesCredentialToken
15897
+ extend ::T::Private::Methods::MethodHooks
15898
+ extend ::T::Private::Methods::SingletonMethodHooks
15899
+ end
15900
+
12873
15901
  module Setsuzoku::Service::WebService::AuthStrategy::InterfaceMethods
12874
15902
  extend ::T::Private::Abstract::Hooks
12875
15903
  extend ::T::InterfaceWrapper::Helpers
@@ -12884,6 +15912,10 @@ class Setsuzoku::Service::WebService::AuthStrategy
12884
15912
  extend ::T::Private::Methods::SingletonMethodHooks
12885
15913
  end
12886
15914
 
15915
+ module Setsuzoku::Service::WebService::Credentials::BasicAuthCredential
15916
+ include ::Setsuzoku::Credential
15917
+ end
15918
+
12887
15919
  module Setsuzoku::Service::WebService::Credentials::BasicAuthCredential
12888
15920
  extend ::T::Private::Abstract::Hooks
12889
15921
  extend ::T::InterfaceWrapper::Helpers