validated_object 2.0.3 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +2 -1
- data/README.md +1 -2
- data/lib/validated_object.rb +42 -13
- data/lib/validated_object/version.rb +2 -1
- data/script/demo.rb +1 -0
- data/sorbet/config +2 -0
- data/sorbet/rbi/gems/activemodel.rbi +210 -0
- data/sorbet/rbi/gems/activesupport.rbi +902 -0
- data/sorbet/rbi/gems/concurrent-ruby.rbi +1590 -0
- data/sorbet/rbi/gems/i18n.rbi +133 -0
- data/sorbet/rbi/gems/rake.rbi +645 -0
- data/sorbet/rbi/gems/rspec-core.rbi +1889 -0
- data/sorbet/rbi/gems/rspec-expectations.rbi +1125 -0
- data/sorbet/rbi/gems/rspec-mocks.rbi +1099 -0
- data/sorbet/rbi/gems/rspec-support.rbi +280 -0
- data/sorbet/rbi/gems/rspec.rbi +15 -0
- data/sorbet/rbi/gems/site_ruby.rbi +1862 -0
- data/sorbet/rbi/gems/thread_safe.rbi +82 -0
- data/sorbet/rbi/gems/tzinfo.rbi +408 -0
- data/sorbet/rbi/sorbet-typed/lib/activemodel/all/activemodel.rbi +597 -0
- data/sorbet/rbi/sorbet-typed/lib/activesupport/>=6/activesupport.rbi +36 -0
- data/sorbet/rbi/sorbet-typed/lib/activesupport/all/activesupport.rbi +1431 -0
- data/sorbet/rbi/sorbet-typed/lib/minitest/all/minitest.rbi +108 -0
- data/validated_object.gemspec +3 -1
- metadata +50 -4
@@ -0,0 +1,280 @@
|
|
1
|
+
# This file is autogenerated. Do not edit it by hand. Regenerate it with:
|
2
|
+
# srb rbi gems
|
3
|
+
|
4
|
+
# typed: true
|
5
|
+
#
|
6
|
+
# If you would like to make changes to this file, great! Please create the gem's shim here:
|
7
|
+
#
|
8
|
+
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rspec-support/all/rspec-support.rbi
|
9
|
+
#
|
10
|
+
# rspec-support-3.9.3
|
11
|
+
|
12
|
+
module RSpec
|
13
|
+
extend RSpec::Support::Warnings
|
14
|
+
end
|
15
|
+
module RSpec::Support
|
16
|
+
def self.class_of(object); end
|
17
|
+
def self.define_optimized_require_for_rspec(lib, &require_relative); end
|
18
|
+
def self.deregister_matcher_definition(&block); end
|
19
|
+
def self.failure_notifier; end
|
20
|
+
def self.failure_notifier=(callable); end
|
21
|
+
def self.is_a_matcher?(object); end
|
22
|
+
def self.matcher_definitions; end
|
23
|
+
def self.method_handle_for(object, method_name); end
|
24
|
+
def self.notify_failure(failure, options = nil); end
|
25
|
+
def self.register_matcher_definition(&block); end
|
26
|
+
def self.require_rspec_support(f); end
|
27
|
+
def self.rspec_description_for_object(object); end
|
28
|
+
def self.thread_local_data; end
|
29
|
+
def self.warning_notifier; end
|
30
|
+
def self.warning_notifier=(arg0); end
|
31
|
+
def self.with_failure_notifier(callable); end
|
32
|
+
end
|
33
|
+
module RSpec::Support::Version
|
34
|
+
end
|
35
|
+
class RSpec::Support::ComparableVersion
|
36
|
+
def <=>(other); end
|
37
|
+
def initialize(string); end
|
38
|
+
def segments; end
|
39
|
+
def string; end
|
40
|
+
include Comparable
|
41
|
+
end
|
42
|
+
module RSpec::Support::OS
|
43
|
+
def self.windows?; end
|
44
|
+
def self.windows_file_path?; end
|
45
|
+
def windows?; end
|
46
|
+
def windows_file_path?; end
|
47
|
+
end
|
48
|
+
module RSpec::Support::Ruby
|
49
|
+
def jruby?; end
|
50
|
+
def jruby_9000?; end
|
51
|
+
def jruby_version; end
|
52
|
+
def mri?; end
|
53
|
+
def non_mri?; end
|
54
|
+
def rbx?; end
|
55
|
+
def self.jruby?; end
|
56
|
+
def self.jruby_9000?; end
|
57
|
+
def self.jruby_version; end
|
58
|
+
def self.mri?; end
|
59
|
+
def self.non_mri?; end
|
60
|
+
def self.rbx?; end
|
61
|
+
def self.truffleruby?; end
|
62
|
+
def truffleruby?; end
|
63
|
+
end
|
64
|
+
module RSpec::Support::RubyFeatures
|
65
|
+
def caller_locations_supported?; end
|
66
|
+
def fork_supported?; end
|
67
|
+
def kw_args_supported?; end
|
68
|
+
def module_prepends_supported?; end
|
69
|
+
def module_refinement_supported?; end
|
70
|
+
def optional_and_splat_args_supported?; end
|
71
|
+
def required_kw_args_supported?; end
|
72
|
+
def ripper_supported?; end
|
73
|
+
def self.caller_locations_supported?; end
|
74
|
+
def self.fork_supported?; end
|
75
|
+
def self.kw_args_supported?; end
|
76
|
+
def self.module_prepends_supported?; end
|
77
|
+
def self.module_refinement_supported?; end
|
78
|
+
def self.optional_and_splat_args_supported?; end
|
79
|
+
def self.required_kw_args_supported?; end
|
80
|
+
def self.ripper_supported?; end
|
81
|
+
def self.supports_exception_cause?; end
|
82
|
+
def self.supports_rebinding_module_methods?; end
|
83
|
+
def self.supports_taint?; end
|
84
|
+
def supports_exception_cause?; end
|
85
|
+
def supports_rebinding_module_methods?; end
|
86
|
+
def supports_taint?; end
|
87
|
+
end
|
88
|
+
module RSpec::Support::AllExceptionsExceptOnesWeMustNotRescue
|
89
|
+
def self.===(exception); end
|
90
|
+
end
|
91
|
+
class RSpec::CallerFilter
|
92
|
+
def self.first_non_rspec_line(skip_frames = nil, increment = nil); end
|
93
|
+
end
|
94
|
+
module RSpec::Support::Warnings
|
95
|
+
def deprecate(deprecated, options = nil); end
|
96
|
+
def warn_deprecation(message, options = nil); end
|
97
|
+
def warn_with(message, options = nil); end
|
98
|
+
def warning(text, options = nil); end
|
99
|
+
end
|
100
|
+
class RSpec::Support::EncodedString
|
101
|
+
def <<(string); end
|
102
|
+
def ==(*args, &block); end
|
103
|
+
def detect_source_encoding(string); end
|
104
|
+
def empty?(*args, &block); end
|
105
|
+
def encoding(*args, &block); end
|
106
|
+
def eql?(*args, &block); end
|
107
|
+
def initialize(string, encoding = nil); end
|
108
|
+
def lines(*args, &block); end
|
109
|
+
def matching_encoding(string); end
|
110
|
+
def remove_invalid_bytes(string); end
|
111
|
+
def self.pick_encoding(source_a, source_b); end
|
112
|
+
def source_encoding; end
|
113
|
+
def split(regex_or_string); end
|
114
|
+
def to_s; end
|
115
|
+
def to_str; end
|
116
|
+
end
|
117
|
+
class RSpec::Support::ReentrantMutex
|
118
|
+
def enter; end
|
119
|
+
def exit; end
|
120
|
+
def initialize; end
|
121
|
+
def synchronize; end
|
122
|
+
end
|
123
|
+
class RSpec::Support::Mutex < Thread::Mutex
|
124
|
+
def self.new; end
|
125
|
+
end
|
126
|
+
class RSpec::Support::DirectoryMaker
|
127
|
+
def self.directory_exists?(dirname); end
|
128
|
+
def self.generate_path(stack, part); end
|
129
|
+
def self.generate_stack(path); end
|
130
|
+
def self.mkdir_p(path); end
|
131
|
+
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
|
+
module RSpec::Support::RecursiveConstMethods
|
199
|
+
def const_defined_on?(mod, const_name); end
|
200
|
+
def constants_defined_on(mod); end
|
201
|
+
def get_const_defined_on(mod, const_name); end
|
202
|
+
def normalize_const_name(const_name); end
|
203
|
+
def recursive_const_defined?(const_name); end
|
204
|
+
def recursive_const_get(const_name); end
|
205
|
+
end
|
206
|
+
class RSpec::Support::ObjectFormatter
|
207
|
+
def format(object); end
|
208
|
+
def initialize(max_formatted_output_length = nil); end
|
209
|
+
def max_formatted_output_length; end
|
210
|
+
def max_formatted_output_length=(arg0); end
|
211
|
+
def prepare_array(array); end
|
212
|
+
def prepare_element(element); end
|
213
|
+
def prepare_for_inspection(object); end
|
214
|
+
def prepare_hash(input_hash); end
|
215
|
+
def recursive_structure?(object); end
|
216
|
+
def self.default_instance; end
|
217
|
+
def self.format(object); end
|
218
|
+
def self.prepare_for_inspection(object); end
|
219
|
+
def sort_hash_keys(input_hash); end
|
220
|
+
def truncate_string(str, start_index, end_index); end
|
221
|
+
def with_entering_structure(structure); end
|
222
|
+
end
|
223
|
+
class RSpec::Support::ObjectFormatter::InspectableItem < Struct
|
224
|
+
def inspect; end
|
225
|
+
def pretty_print(pp); end
|
226
|
+
def self.[](*arg0); end
|
227
|
+
def self.inspect; end
|
228
|
+
def self.members; end
|
229
|
+
def self.new(*arg0); end
|
230
|
+
def text; end
|
231
|
+
def text=(_); end
|
232
|
+
end
|
233
|
+
class RSpec::Support::ObjectFormatter::BaseInspector < Struct
|
234
|
+
def formatter; end
|
235
|
+
def formatter=(_); end
|
236
|
+
def inspect; end
|
237
|
+
def object; end
|
238
|
+
def object=(_); end
|
239
|
+
def pretty_print(pp); end
|
240
|
+
def self.[](*arg0); end
|
241
|
+
def self.can_inspect?(_object); end
|
242
|
+
def self.inspect; end
|
243
|
+
def self.members; end
|
244
|
+
def self.new(*arg0); end
|
245
|
+
end
|
246
|
+
class RSpec::Support::ObjectFormatter::TimeInspector < RSpec::Support::ObjectFormatter::BaseInspector
|
247
|
+
def inspect; end
|
248
|
+
def self.can_inspect?(object); end
|
249
|
+
end
|
250
|
+
class RSpec::Support::ObjectFormatter::DateTimeInspector < RSpec::Support::ObjectFormatter::BaseInspector
|
251
|
+
def inspect; end
|
252
|
+
def self.can_inspect?(object); end
|
253
|
+
end
|
254
|
+
class RSpec::Support::ObjectFormatter::BigDecimalInspector < RSpec::Support::ObjectFormatter::BaseInspector
|
255
|
+
def inspect; end
|
256
|
+
def self.can_inspect?(object); end
|
257
|
+
end
|
258
|
+
class RSpec::Support::ObjectFormatter::DescribableMatcherInspector < RSpec::Support::ObjectFormatter::BaseInspector
|
259
|
+
def inspect; end
|
260
|
+
def self.can_inspect?(object); end
|
261
|
+
end
|
262
|
+
class RSpec::Support::ObjectFormatter::UninspectableObjectInspector < RSpec::Support::ObjectFormatter::BaseInspector
|
263
|
+
def inspect; end
|
264
|
+
def klass; end
|
265
|
+
def native_object_id; end
|
266
|
+
def self.can_inspect?(object); end
|
267
|
+
end
|
268
|
+
class RSpec::Support::ObjectFormatter::DelegatorInspector < RSpec::Support::ObjectFormatter::BaseInspector
|
269
|
+
def inspect; end
|
270
|
+
def self.can_inspect?(object); end
|
271
|
+
end
|
272
|
+
class RSpec::Support::ObjectFormatter::InspectableObjectInspector < RSpec::Support::ObjectFormatter::BaseInspector
|
273
|
+
def inspect; end
|
274
|
+
def self.can_inspect?(object); end
|
275
|
+
end
|
276
|
+
module RSpec::Support::FuzzyMatcher
|
277
|
+
def self.arrays_match?(expected_list, actual_list); end
|
278
|
+
def self.hashes_match?(expected_hash, actual_hash); end
|
279
|
+
def self.values_match?(expected, actual); end
|
280
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# This file is autogenerated. Do not edit it by hand. Regenerate it with:
|
2
|
+
# srb rbi gems
|
3
|
+
|
4
|
+
# typed: strict
|
5
|
+
#
|
6
|
+
# If you would like to make changes to this file, great! Please create the gem's shim here:
|
7
|
+
#
|
8
|
+
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/rspec/all/rspec.rbi
|
9
|
+
#
|
10
|
+
# rspec-3.9.0
|
11
|
+
|
12
|
+
module RSpec
|
13
|
+
end
|
14
|
+
module RSpec::Version
|
15
|
+
end
|
@@ -0,0 +1,1862 @@
|
|
1
|
+
# This file is autogenerated. Do not edit it by hand. Regenerate it with:
|
2
|
+
# srb rbi gems
|
3
|
+
|
4
|
+
# typed: false
|
5
|
+
#
|
6
|
+
# If you would like to make changes to this file, great! Please create the gem's shim here:
|
7
|
+
#
|
8
|
+
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/site_ruby/all/site_ruby.rbi
|
9
|
+
#
|
10
|
+
# site_ruby-2.7.0
|
11
|
+
|
12
|
+
module Bundler
|
13
|
+
def URI(uri); end
|
14
|
+
def self.URI(uri); end
|
15
|
+
def self.require_thor_actions; end
|
16
|
+
end
|
17
|
+
module Bundler::SharedHelpers
|
18
|
+
def bundler_ruby_lib; end
|
19
|
+
def chdir(dir, &blk); end
|
20
|
+
def clean_load_path; end
|
21
|
+
def const_get_safely(constant_name, namespace); end
|
22
|
+
def default_bundle_dir; end
|
23
|
+
def default_gemfile; end
|
24
|
+
def default_lockfile; end
|
25
|
+
def digest(name); end
|
26
|
+
def ensure_same_dependencies(spec, old_deps, new_deps); end
|
27
|
+
def filesystem_access(path, action = nil, &block); end
|
28
|
+
def find_directory(*names); end
|
29
|
+
def find_file(*names); end
|
30
|
+
def find_gemfile; end
|
31
|
+
def gemfile_names; end
|
32
|
+
def in_bundle?; end
|
33
|
+
def major_deprecation(major_version, message, print_caller_location: nil); end
|
34
|
+
def md5_available?; end
|
35
|
+
def pretty_dependency(dep, print_source = nil); end
|
36
|
+
def print_major_deprecations!; end
|
37
|
+
def prints_major_deprecations?; end
|
38
|
+
def pwd; end
|
39
|
+
def resolve_path(path); end
|
40
|
+
def root; end
|
41
|
+
def search_up(*names); end
|
42
|
+
def set_bundle_environment; end
|
43
|
+
def set_bundle_variables; end
|
44
|
+
def set_env(key, value); end
|
45
|
+
def set_path; end
|
46
|
+
def set_rubylib; end
|
47
|
+
def set_rubyopt; end
|
48
|
+
def trap(signal, override = nil, &block); end
|
49
|
+
def validate_bundle_path; end
|
50
|
+
def with_clean_git_env(&block); end
|
51
|
+
def write_to_gemfile(gemfile_path, contents); end
|
52
|
+
extend Bundler::SharedHelpers
|
53
|
+
end
|
54
|
+
class Gem::Ext::Builder
|
55
|
+
def build_args; end
|
56
|
+
def build_args=(arg0); end
|
57
|
+
def build_error(output, backtrace = nil); end
|
58
|
+
def build_extension(extension, dest_path); end
|
59
|
+
def build_extensions; end
|
60
|
+
def builder_for(extension); end
|
61
|
+
def initialize(spec, build_args = nil); end
|
62
|
+
def self.class_name; end
|
63
|
+
def self.make(dest_path, results); end
|
64
|
+
def self.run(command, results, command_name = nil); end
|
65
|
+
def write_gem_make_out(output); end
|
66
|
+
include Gem::UserInteraction
|
67
|
+
end
|
68
|
+
module Bundler::UI
|
69
|
+
end
|
70
|
+
class Bundler::Thor
|
71
|
+
def help(command = nil, subcommand = nil); end
|
72
|
+
def self.banner(command, namespace = nil, subcommand = nil); end
|
73
|
+
def self.baseclass; end
|
74
|
+
def self.check_unknown_options!(options = nil); end
|
75
|
+
def self.check_unknown_options?(config); end
|
76
|
+
def self.command_help(shell, command_name); end
|
77
|
+
def self.create_command(meth); end
|
78
|
+
def self.create_task(meth); end
|
79
|
+
def self.default_command(meth = nil); end
|
80
|
+
def self.default_task(meth = nil); end
|
81
|
+
def self.deprecation_warning(message); end
|
82
|
+
def self.desc(usage, description, options = nil); end
|
83
|
+
def self.disable_required_check!(*command_names); end
|
84
|
+
def self.disable_required_check; end
|
85
|
+
def self.disable_required_check?(command); end
|
86
|
+
def self.dispatch(meth, given_args, given_opts, config); end
|
87
|
+
def self.dynamic_command_class; end
|
88
|
+
def self.find_command_possibilities(meth); end
|
89
|
+
def self.find_task_possibilities(meth); end
|
90
|
+
def self.help(shell, subcommand = nil); end
|
91
|
+
def self.initialize_added; end
|
92
|
+
def self.long_desc(long_description, options = nil); end
|
93
|
+
def self.map(mappings = nil, **kw); end
|
94
|
+
def self.method_option(name, options = nil); end
|
95
|
+
def self.method_options(options = nil); end
|
96
|
+
def self.normalize_command_name(meth); end
|
97
|
+
def self.normalize_task_name(meth); end
|
98
|
+
def self.option(name, options = nil); end
|
99
|
+
def self.options(options = nil); end
|
100
|
+
def self.package_name(name, _ = nil); end
|
101
|
+
def self.printable_commands(all = nil, subcommand = nil); end
|
102
|
+
def self.printable_tasks(all = nil, subcommand = nil); end
|
103
|
+
def self.register(klass, subcommand_name, usage, description, options = nil); end
|
104
|
+
def self.retrieve_command_name(args); end
|
105
|
+
def self.retrieve_task_name(args); end
|
106
|
+
def self.stop_on_unknown_option!(*command_names); end
|
107
|
+
def self.stop_on_unknown_option; end
|
108
|
+
def self.stop_on_unknown_option?(command); end
|
109
|
+
def self.subcommand(subcommand, subcommand_class); end
|
110
|
+
def self.subcommand_classes; end
|
111
|
+
def self.subcommand_help(cmd); end
|
112
|
+
def self.subcommands; end
|
113
|
+
def self.subtask(subcommand, subcommand_class); end
|
114
|
+
def self.subtask_help(cmd); end
|
115
|
+
def self.subtasks; end
|
116
|
+
def self.task_help(shell, command_name); end
|
117
|
+
extend Bundler::Thor::Base::ClassMethods
|
118
|
+
extend Bundler::Thor::Invocation::ClassMethods
|
119
|
+
include Bundler::Thor::Base
|
120
|
+
include Bundler::Thor::Invocation
|
121
|
+
include Bundler::Thor::Shell
|
122
|
+
end
|
123
|
+
class Anonymous_Struct_1 < Struct
|
124
|
+
def ancestor_name; end
|
125
|
+
def ancestor_name=(_); end
|
126
|
+
def description; end
|
127
|
+
def description=(_); end
|
128
|
+
def long_description; end
|
129
|
+
def long_description=(_); end
|
130
|
+
def name; end
|
131
|
+
def name=(_); end
|
132
|
+
def options; end
|
133
|
+
def options=(_); end
|
134
|
+
def self.[](*arg0); end
|
135
|
+
def self.inspect; end
|
136
|
+
def self.members; end
|
137
|
+
def self.new(*arg0); end
|
138
|
+
def usage; end
|
139
|
+
def usage=(_); end
|
140
|
+
end
|
141
|
+
class Bundler::Thor::Command < Anonymous_Struct_1
|
142
|
+
def formatted_usage(klass, namespace = nil, subcommand = nil); end
|
143
|
+
def handle_argument_error?(instance, error, caller); end
|
144
|
+
def handle_no_method_error?(instance, error, caller); end
|
145
|
+
def hidden?; end
|
146
|
+
def initialize(name, description, long_description, usage, options = nil); end
|
147
|
+
def initialize_copy(other); end
|
148
|
+
def local_method?(instance, name); end
|
149
|
+
def not_debugging?(instance); end
|
150
|
+
def private_method?(instance); end
|
151
|
+
def public_method?(instance); end
|
152
|
+
def required_arguments_for(klass, usage); end
|
153
|
+
def required_options; end
|
154
|
+
def run(instance, args = nil); end
|
155
|
+
def sans_backtrace(backtrace, caller); end
|
156
|
+
end
|
157
|
+
class Bundler::Thor::HiddenCommand < Bundler::Thor::Command
|
158
|
+
def hidden?; end
|
159
|
+
end
|
160
|
+
class Bundler::Thor::DynamicCommand < Bundler::Thor::Command
|
161
|
+
def initialize(name, options = nil); end
|
162
|
+
def run(instance, args = nil); end
|
163
|
+
end
|
164
|
+
module Bundler::Thor::CoreExt
|
165
|
+
end
|
166
|
+
class Bundler::Thor::CoreExt::HashWithIndifferentAccess < Hash
|
167
|
+
def [](key); end
|
168
|
+
def []=(key, value); end
|
169
|
+
def convert_key(key); end
|
170
|
+
def delete(key); end
|
171
|
+
def fetch(key, *args); end
|
172
|
+
def initialize(hash = nil); end
|
173
|
+
def key?(key); end
|
174
|
+
def merge!(other); end
|
175
|
+
def merge(other); end
|
176
|
+
def method_missing(method, *args); end
|
177
|
+
def replace(other_hash); end
|
178
|
+
def reverse_merge!(other_hash); end
|
179
|
+
def reverse_merge(other); end
|
180
|
+
def to_hash; end
|
181
|
+
def values_at(*indices); end
|
182
|
+
end
|
183
|
+
class Bundler::Thor::NoKwargSpellChecker < DidYouMean::SpellChecker
|
184
|
+
def initialize(dictionary); end
|
185
|
+
end
|
186
|
+
class Bundler::Thor::Error < StandardError
|
187
|
+
end
|
188
|
+
class Bundler::Thor::UndefinedCommandError < Bundler::Thor::Error
|
189
|
+
def all_commands; end
|
190
|
+
def command; end
|
191
|
+
def initialize(command, all_commands, namespace); end
|
192
|
+
end
|
193
|
+
class Bundler::Thor::UndefinedCommandError::SpellChecker
|
194
|
+
def corrections; end
|
195
|
+
def error; end
|
196
|
+
def initialize(error); end
|
197
|
+
def spell_checker; end
|
198
|
+
end
|
199
|
+
class Bundler::Thor::AmbiguousCommandError < Bundler::Thor::Error
|
200
|
+
end
|
201
|
+
class Bundler::Thor::InvocationError < Bundler::Thor::Error
|
202
|
+
end
|
203
|
+
class Bundler::Thor::UnknownArgumentError < Bundler::Thor::Error
|
204
|
+
def initialize(switches, unknown); end
|
205
|
+
def switches; end
|
206
|
+
def unknown; end
|
207
|
+
end
|
208
|
+
class Bundler::Thor::UnknownArgumentError::SpellChecker
|
209
|
+
def corrections; end
|
210
|
+
def error; end
|
211
|
+
def initialize(error); end
|
212
|
+
def spell_checker; end
|
213
|
+
end
|
214
|
+
class Bundler::Thor::RequiredArgumentMissingError < Bundler::Thor::InvocationError
|
215
|
+
end
|
216
|
+
class Bundler::Thor::MalformattedArgumentError < Bundler::Thor::InvocationError
|
217
|
+
end
|
218
|
+
module Bundler::Thor::Invocation
|
219
|
+
def _parse_initialization_options(args, opts, config); end
|
220
|
+
def _retrieve_class_and_command(name, sent_command = nil); end
|
221
|
+
def _retrieve_class_and_task(name, sent_command = nil); end
|
222
|
+
def _shared_configuration; end
|
223
|
+
def current_command_chain; end
|
224
|
+
def initialize(args = nil, options = nil, config = nil, &block); end
|
225
|
+
def invoke(name = nil, *args); end
|
226
|
+
def invoke_all; end
|
227
|
+
def invoke_command(command, *args); end
|
228
|
+
def invoke_task(command, *args); end
|
229
|
+
def invoke_with_padding(*args); end
|
230
|
+
def self.included(base); end
|
231
|
+
end
|
232
|
+
module Bundler::Thor::Invocation::ClassMethods
|
233
|
+
def prepare_for_invocation(key, name); end
|
234
|
+
end
|
235
|
+
class Bundler::Thor::NestedContext
|
236
|
+
def enter; end
|
237
|
+
def entered?; end
|
238
|
+
def initialize; end
|
239
|
+
def pop; end
|
240
|
+
def push; end
|
241
|
+
end
|
242
|
+
class Bundler::Thor::Argument
|
243
|
+
def banner; end
|
244
|
+
def default; end
|
245
|
+
def default_banner; end
|
246
|
+
def description; end
|
247
|
+
def enum; end
|
248
|
+
def human_name; end
|
249
|
+
def initialize(name, options = nil); end
|
250
|
+
def name; end
|
251
|
+
def required; end
|
252
|
+
def required?; end
|
253
|
+
def show_default?; end
|
254
|
+
def type; end
|
255
|
+
def usage; end
|
256
|
+
def valid_type?(type); end
|
257
|
+
def validate!; end
|
258
|
+
end
|
259
|
+
class Bundler::Thor::Arguments
|
260
|
+
def check_requirement!; end
|
261
|
+
def current_is_value?; end
|
262
|
+
def initialize(arguments = nil); end
|
263
|
+
def last?; end
|
264
|
+
def no_or_skip?(arg); end
|
265
|
+
def parse(args); end
|
266
|
+
def parse_array(name); end
|
267
|
+
def parse_hash(name); end
|
268
|
+
def parse_numeric(name); end
|
269
|
+
def parse_string(name); end
|
270
|
+
def peek; end
|
271
|
+
def remaining; end
|
272
|
+
def self.parse(*args); end
|
273
|
+
def self.split(args); end
|
274
|
+
def shift; end
|
275
|
+
def unshift(arg); end
|
276
|
+
end
|
277
|
+
class Bundler::Thor::Option < Bundler::Thor::Argument
|
278
|
+
def aliases; end
|
279
|
+
def array?; end
|
280
|
+
def boolean?; end
|
281
|
+
def dasherize(str); end
|
282
|
+
def dasherized?; end
|
283
|
+
def group; end
|
284
|
+
def hash?; end
|
285
|
+
def hide; end
|
286
|
+
def human_name; end
|
287
|
+
def initialize(name, options = nil); end
|
288
|
+
def lazy_default; end
|
289
|
+
def numeric?; end
|
290
|
+
def repeatable; end
|
291
|
+
def self.parse(key, value); end
|
292
|
+
def string?; end
|
293
|
+
def switch_name; end
|
294
|
+
def undasherize(str); end
|
295
|
+
def usage(padding = nil); end
|
296
|
+
def validate!; end
|
297
|
+
def validate_default_type!; end
|
298
|
+
end
|
299
|
+
class Bundler::Thor::Options < Bundler::Thor::Arguments
|
300
|
+
def assign_result!(option, result); end
|
301
|
+
def check_unknown!; end
|
302
|
+
def current_is_switch?; end
|
303
|
+
def current_is_switch_formatted?; end
|
304
|
+
def current_is_value?; end
|
305
|
+
def initialize(hash_options = nil, defaults = nil, stop_on_unknown = nil, disable_required_check = nil); end
|
306
|
+
def normalize_switch(arg); end
|
307
|
+
def parse(args); end
|
308
|
+
def parse_boolean(switch); end
|
309
|
+
def parse_peek(switch, option); end
|
310
|
+
def parsing_options?; end
|
311
|
+
def peek; end
|
312
|
+
def remaining; end
|
313
|
+
def self.to_switches(options); end
|
314
|
+
def switch?(arg); end
|
315
|
+
def switch_option(arg); end
|
316
|
+
end
|
317
|
+
module Bundler::Thor::Base
|
318
|
+
def args; end
|
319
|
+
def args=(arg0); end
|
320
|
+
def initialize(args = nil, local_options = nil, config = nil); end
|
321
|
+
def options; end
|
322
|
+
def options=(arg0); end
|
323
|
+
def parent_options; end
|
324
|
+
def parent_options=(arg0); end
|
325
|
+
def self.included(base); end
|
326
|
+
def self.register_klass_file(klass); end
|
327
|
+
def self.shell; end
|
328
|
+
def self.shell=(arg0); end
|
329
|
+
def self.subclass_files; end
|
330
|
+
def self.subclasses; end
|
331
|
+
end
|
332
|
+
module Bundler::Thor::Shell
|
333
|
+
def _shared_configuration; end
|
334
|
+
def ask(*args, &block); end
|
335
|
+
def error(*args, &block); end
|
336
|
+
def file_collision(*args, &block); end
|
337
|
+
def initialize(args = nil, options = nil, config = nil); end
|
338
|
+
def no?(*args, &block); end
|
339
|
+
def print_in_columns(*args, &block); end
|
340
|
+
def print_table(*args, &block); end
|
341
|
+
def print_wrapped(*args, &block); end
|
342
|
+
def say(*args, &block); end
|
343
|
+
def say_status(*args, &block); end
|
344
|
+
def set_color(*args, &block); end
|
345
|
+
def shell; end
|
346
|
+
def shell=(arg0); end
|
347
|
+
def terminal_width(*args, &block); end
|
348
|
+
def with_padding; end
|
349
|
+
def yes?(*args, &block); end
|
350
|
+
end
|
351
|
+
module Bundler::Thor::LineEditor
|
352
|
+
def self.best_available; end
|
353
|
+
def self.readline(prompt, options = nil); end
|
354
|
+
end
|
355
|
+
class Bundler::Thor::LineEditor::Basic
|
356
|
+
def echo?; end
|
357
|
+
def get_input; end
|
358
|
+
def initialize(prompt, options); end
|
359
|
+
def options; end
|
360
|
+
def prompt; end
|
361
|
+
def readline; end
|
362
|
+
def self.available?; end
|
363
|
+
end
|
364
|
+
class Bundler::Thor::LineEditor::Readline < Bundler::Thor::LineEditor::Basic
|
365
|
+
def add_to_history?; end
|
366
|
+
def completion_options; end
|
367
|
+
def completion_proc; end
|
368
|
+
def readline; end
|
369
|
+
def self.available?; end
|
370
|
+
def use_path_completion?; end
|
371
|
+
end
|
372
|
+
class Bundler::Thor::LineEditor::Readline::PathCompletion
|
373
|
+
def absolute_matches; end
|
374
|
+
def base_path; end
|
375
|
+
def glob_pattern; end
|
376
|
+
def initialize(text); end
|
377
|
+
def matches; end
|
378
|
+
def relative_matches; end
|
379
|
+
def text; end
|
380
|
+
end
|
381
|
+
module Bundler::Thor::Sandbox
|
382
|
+
end
|
383
|
+
module Bundler::Thor::Util
|
384
|
+
def self.camel_case(str); end
|
385
|
+
def self.escape_globs(path); end
|
386
|
+
def self.escape_html(string); end
|
387
|
+
def self.find_by_namespace(namespace); end
|
388
|
+
def self.find_class_and_command_by_namespace(namespace, fallback = nil); end
|
389
|
+
def self.find_class_and_task_by_namespace(namespace, fallback = nil); end
|
390
|
+
def self.globs_for(path); end
|
391
|
+
def self.load_thorfile(path, content = nil, debug = nil); end
|
392
|
+
def self.namespace_from_thor_class(constant); end
|
393
|
+
def self.namespaces_in_content(contents, file = nil); end
|
394
|
+
def self.ruby_command; end
|
395
|
+
def self.snake_case(str); end
|
396
|
+
def self.thor_classes_in(klass); end
|
397
|
+
def self.thor_root; end
|
398
|
+
def self.thor_root_glob; end
|
399
|
+
def self.user_home; end
|
400
|
+
end
|
401
|
+
module Bundler::Thor::Base::ClassMethods
|
402
|
+
def all_commands; end
|
403
|
+
def all_tasks; end
|
404
|
+
def allow_incompatible_default_type!; end
|
405
|
+
def argument(name, options = nil); end
|
406
|
+
def arguments; end
|
407
|
+
def attr_accessor(*arg0); end
|
408
|
+
def attr_reader(*arg0); end
|
409
|
+
def attr_writer(*arg0); end
|
410
|
+
def baseclass; end
|
411
|
+
def basename; end
|
412
|
+
def build_option(name, options, scope); end
|
413
|
+
def build_options(options, scope); end
|
414
|
+
def check_default_type!; end
|
415
|
+
def check_default_type; end
|
416
|
+
def check_unknown_options!; end
|
417
|
+
def check_unknown_options; end
|
418
|
+
def check_unknown_options?(config); end
|
419
|
+
def class_option(name, options = nil); end
|
420
|
+
def class_options(options = nil); end
|
421
|
+
def class_options_help(shell, groups = nil); end
|
422
|
+
def commands; end
|
423
|
+
def create_command(meth); end
|
424
|
+
def create_task(meth); end
|
425
|
+
def disable_required_check?(command_name); end
|
426
|
+
def dispatch(command, given_args, given_opts, config); end
|
427
|
+
def exit_on_failure?; end
|
428
|
+
def find_and_refresh_command(name); end
|
429
|
+
def find_and_refresh_task(name); end
|
430
|
+
def from_superclass(method, default = nil); end
|
431
|
+
def group(name = nil); end
|
432
|
+
def handle_argument_error(command, error, args, arity); end
|
433
|
+
def handle_no_command_error(command, has_namespace = nil); end
|
434
|
+
def handle_no_task_error(command, has_namespace = nil); end
|
435
|
+
def inherited(klass); end
|
436
|
+
def initialize_added; end
|
437
|
+
def is_thor_reserved_word?(word, type); end
|
438
|
+
def method_added(meth); end
|
439
|
+
def namespace(name = nil); end
|
440
|
+
def no_commands(&block); end
|
441
|
+
def no_commands?; end
|
442
|
+
def no_commands_context; end
|
443
|
+
def no_tasks(&block); end
|
444
|
+
def print_options(shell, options, group_name = nil); end
|
445
|
+
def public_command(*names); end
|
446
|
+
def public_task(*names); end
|
447
|
+
def remove_argument(*names); end
|
448
|
+
def remove_class_option(*names); end
|
449
|
+
def remove_command(*names); end
|
450
|
+
def remove_task(*names); end
|
451
|
+
def start(given_args = nil, config = nil); end
|
452
|
+
def stop_on_unknown_option?(command_name); end
|
453
|
+
def strict_args_position!; end
|
454
|
+
def strict_args_position; end
|
455
|
+
def strict_args_position?(config); end
|
456
|
+
def tasks; end
|
457
|
+
end
|
458
|
+
class Bundler::UI::Shell
|
459
|
+
def add_color(string, *color); end
|
460
|
+
def ask(msg); end
|
461
|
+
def confirm(msg, newline = nil); end
|
462
|
+
def debug(msg, newline = nil); end
|
463
|
+
def debug?; end
|
464
|
+
def error(msg, newline = nil); end
|
465
|
+
def info(msg, newline = nil); end
|
466
|
+
def initialize(options = nil); end
|
467
|
+
def level(name = nil); end
|
468
|
+
def level=(level); end
|
469
|
+
def no?; end
|
470
|
+
def quiet?; end
|
471
|
+
def shell=(arg0); end
|
472
|
+
def silence(&blk); end
|
473
|
+
def strip_leading_spaces(text); end
|
474
|
+
def tell_err(message, color = nil, newline = nil); end
|
475
|
+
def tell_me(msg, color = nil, newline = nil); end
|
476
|
+
def trace(e, newline = nil, force = nil); end
|
477
|
+
def unprinted_warnings; end
|
478
|
+
def warn(msg, newline = nil); end
|
479
|
+
def with_level(level); end
|
480
|
+
def word_wrap(text, line_width = nil); end
|
481
|
+
def yes?(msg); end
|
482
|
+
end
|
483
|
+
class Bundler::Thor::Shell::Basic
|
484
|
+
def answer_match(possibilities, answer, case_insensitive); end
|
485
|
+
def as_unicode; end
|
486
|
+
def ask(statement, *args); end
|
487
|
+
def ask_filtered(statement, color, options); end
|
488
|
+
def ask_simply(statement, color, options); end
|
489
|
+
def base; end
|
490
|
+
def base=(arg0); end
|
491
|
+
def can_display_colors?; end
|
492
|
+
def dynamic_width; end
|
493
|
+
def dynamic_width_stty; end
|
494
|
+
def dynamic_width_tput; end
|
495
|
+
def error(statement); end
|
496
|
+
def file_collision(destination); end
|
497
|
+
def file_collision_help; end
|
498
|
+
def git_merge_tool; end
|
499
|
+
def indent(count = nil); end
|
500
|
+
def initialize; end
|
501
|
+
def is?(value); end
|
502
|
+
def lookup_color(color); end
|
503
|
+
def merge(destination, content); end
|
504
|
+
def merge_tool; end
|
505
|
+
def mute; end
|
506
|
+
def mute?; end
|
507
|
+
def no?(statement, color = nil); end
|
508
|
+
def padding; end
|
509
|
+
def padding=(value); end
|
510
|
+
def prepare_message(message, *color); end
|
511
|
+
def print_in_columns(array); end
|
512
|
+
def print_table(array, options = nil); end
|
513
|
+
def print_wrapped(message, options = nil); end
|
514
|
+
def quiet?; end
|
515
|
+
def say(message = nil, color = nil, force_new_line = nil); end
|
516
|
+
def say_status(status, message, log_status = nil); end
|
517
|
+
def set_color(string, *arg1); end
|
518
|
+
def show_diff(destination, content); end
|
519
|
+
def stderr; end
|
520
|
+
def stdout; end
|
521
|
+
def terminal_width; end
|
522
|
+
def truncate(string, width); end
|
523
|
+
def unix?; end
|
524
|
+
def yes?(statement, color = nil); end
|
525
|
+
end
|
526
|
+
class Bundler::Thor::Shell::Color < Bundler::Thor::Shell::Basic
|
527
|
+
def are_colors_disabled?; end
|
528
|
+
def can_display_colors?; end
|
529
|
+
def diff_lcs_loaded?; end
|
530
|
+
def output_diff_line(diff); end
|
531
|
+
def set_color(string, *colors); end
|
532
|
+
def show_diff(destination, content); end
|
533
|
+
end
|
534
|
+
class Bundler::UI::RGProxy < Gem::SilentUI
|
535
|
+
def initialize(ui); end
|
536
|
+
def say(message); end
|
537
|
+
end
|
538
|
+
class Bundler::Settings
|
539
|
+
def [](name); end
|
540
|
+
def all; end
|
541
|
+
def allow_sudo?; end
|
542
|
+
def app_cache_path; end
|
543
|
+
def array_to_s(array); end
|
544
|
+
def converted_value(value, key); end
|
545
|
+
def credentials_for(uri); end
|
546
|
+
def gem_mirrors; end
|
547
|
+
def global_config_file; end
|
548
|
+
def ignore_config?; end
|
549
|
+
def initialize(root = nil); end
|
550
|
+
def is_array(key); end
|
551
|
+
def is_bool(name); end
|
552
|
+
def is_num(key); end
|
553
|
+
def key_for(key); end
|
554
|
+
def load_config(config_file); end
|
555
|
+
def local_config_file; end
|
556
|
+
def local_overrides; end
|
557
|
+
def locations(key); end
|
558
|
+
def mirror_for(uri); end
|
559
|
+
def parent_setting_for(name); end
|
560
|
+
def path; end
|
561
|
+
def pretty_values_for(exposed_key); end
|
562
|
+
def self.normalize_uri(uri); end
|
563
|
+
def set_command_option(key, value); end
|
564
|
+
def set_command_option_if_given(key, value); end
|
565
|
+
def set_global(key, value); end
|
566
|
+
def set_key(raw_key, value, hash, file); end
|
567
|
+
def set_local(key, value); end
|
568
|
+
def specific_gem_for(name); end
|
569
|
+
def split_specific_setting_for(name); end
|
570
|
+
def temporary(update); end
|
571
|
+
def to_array(value); end
|
572
|
+
def to_bool(value); end
|
573
|
+
def validate!; end
|
574
|
+
end
|
575
|
+
class Bundler::Settings::Path < Struct
|
576
|
+
def base_path; end
|
577
|
+
def base_path_relative_to_pwd; end
|
578
|
+
def default_install_uses_path; end
|
579
|
+
def default_install_uses_path=(_); end
|
580
|
+
def explicit_path; end
|
581
|
+
def explicit_path=(_); end
|
582
|
+
def path; end
|
583
|
+
def self.[](*arg0); end
|
584
|
+
def self.inspect; end
|
585
|
+
def self.members; end
|
586
|
+
def self.new(*arg0); end
|
587
|
+
def system_path; end
|
588
|
+
def system_path=(_); end
|
589
|
+
def use_system_gems?; end
|
590
|
+
def validate!; end
|
591
|
+
end
|
592
|
+
class Bundler::FeatureFlag
|
593
|
+
def allow_bundler_dependency_conflicts?; end
|
594
|
+
def allow_offline_install?; end
|
595
|
+
def auto_clean_without_path?; end
|
596
|
+
def auto_config_jobs?; end
|
597
|
+
def bundler_10_mode?; end
|
598
|
+
def bundler_1_mode?; end
|
599
|
+
def bundler_2_mode?; end
|
600
|
+
def bundler_3_mode?; end
|
601
|
+
def bundler_4_mode?; end
|
602
|
+
def bundler_5_mode?; end
|
603
|
+
def bundler_6_mode?; end
|
604
|
+
def bundler_7_mode?; end
|
605
|
+
def bundler_8_mode?; end
|
606
|
+
def bundler_9_mode?; end
|
607
|
+
def cache_all?; end
|
608
|
+
def default_cli_command; end
|
609
|
+
def default_install_uses_path?; end
|
610
|
+
def deployment_means_frozen?; end
|
611
|
+
def disable_multisource?; end
|
612
|
+
def forget_cli_options?; end
|
613
|
+
def global_gem_cache?; end
|
614
|
+
def initialize(bundler_version); end
|
615
|
+
def major_version; end
|
616
|
+
def only_update_to_newer_versions?; end
|
617
|
+
def path_relative_to_cwd?; end
|
618
|
+
def plugins?; end
|
619
|
+
def print_only_version_number?; end
|
620
|
+
def self.settings_flag(flag, &default); end
|
621
|
+
def self.settings_method(name, key, &default); end
|
622
|
+
def self.settings_option(key, &default); end
|
623
|
+
def setup_makes_kernel_gem_public?; end
|
624
|
+
def skip_default_git_sources?; end
|
625
|
+
def specific_platform?; end
|
626
|
+
def suppress_install_using_messages?; end
|
627
|
+
def unlock_source_unlocks_spec?; end
|
628
|
+
def update_requires_all_flag?; end
|
629
|
+
def use_gem_version_promoter_for_major_updates?; end
|
630
|
+
end
|
631
|
+
class Bundler::Source
|
632
|
+
def can_lock?(spec); end
|
633
|
+
def dependency_names; end
|
634
|
+
def dependency_names=(arg0); end
|
635
|
+
def dependency_names_to_double_check; end
|
636
|
+
def double_check_for(*arg0); end
|
637
|
+
def earlier_version?(spec_version, locked_spec_version); end
|
638
|
+
def extension_cache_path(spec); end
|
639
|
+
def extension_cache_slug(_); end
|
640
|
+
def include?(other); end
|
641
|
+
def inspect; end
|
642
|
+
def path?; end
|
643
|
+
def print_using_message(message); end
|
644
|
+
def unmet_deps; end
|
645
|
+
def version_color(spec_version, locked_spec_version); end
|
646
|
+
def version_message(spec); end
|
647
|
+
end
|
648
|
+
class Bundler::Source::Path < Bundler::Source
|
649
|
+
def ==(other); end
|
650
|
+
def app_cache_dirname; end
|
651
|
+
def app_cache_path(custom_path = nil); end
|
652
|
+
def cache(spec, custom_path = nil); end
|
653
|
+
def cached!; end
|
654
|
+
def eql?(other); end
|
655
|
+
def expand(somepath); end
|
656
|
+
def expanded_original_path; end
|
657
|
+
def expanded_path; end
|
658
|
+
def generate_bin(spec, options = nil); end
|
659
|
+
def has_app_cache?; end
|
660
|
+
def hash; end
|
661
|
+
def initialize(options); end
|
662
|
+
def install(spec, options = nil); end
|
663
|
+
def load_gemspec(file); end
|
664
|
+
def load_spec_files; end
|
665
|
+
def local_specs(*arg0); end
|
666
|
+
def lockfile_path; end
|
667
|
+
def name; end
|
668
|
+
def name=(arg0); end
|
669
|
+
def options; end
|
670
|
+
def original_path; end
|
671
|
+
def path; end
|
672
|
+
def relative_path(path = nil); end
|
673
|
+
def remote!; end
|
674
|
+
def root; end
|
675
|
+
def root_path; end
|
676
|
+
def self.from_lock(options); end
|
677
|
+
def specs; end
|
678
|
+
def to_lock; end
|
679
|
+
def to_s; end
|
680
|
+
def validate_spec(spec); end
|
681
|
+
def version; end
|
682
|
+
def version=(arg0); end
|
683
|
+
end
|
684
|
+
class Bundler::Source::Git < Bundler::Source::Path
|
685
|
+
def ==(other); end
|
686
|
+
def allow_git_ops?; end
|
687
|
+
def app_cache_dirname; end
|
688
|
+
def base_name; end
|
689
|
+
def branch; end
|
690
|
+
def cache(spec, custom_path = nil); end
|
691
|
+
def cache_path; end
|
692
|
+
def cached?; end
|
693
|
+
def cached_revision; end
|
694
|
+
def cached_revision_checked_out?; end
|
695
|
+
def eql?(other); end
|
696
|
+
def extension_cache_slug(_); end
|
697
|
+
def extension_dir_name; end
|
698
|
+
def fetch; end
|
699
|
+
def git_proxy; end
|
700
|
+
def git_scope; end
|
701
|
+
def glob; end
|
702
|
+
def has_app_cache?; end
|
703
|
+
def hash; end
|
704
|
+
def initialize(options); end
|
705
|
+
def install(spec, options = nil); end
|
706
|
+
def install_path; end
|
707
|
+
def load_gemspec(file); end
|
708
|
+
def load_spec_files; end
|
709
|
+
def local?; end
|
710
|
+
def local_override!(path); end
|
711
|
+
def name; end
|
712
|
+
def options; end
|
713
|
+
def override_for(path); end
|
714
|
+
def path; end
|
715
|
+
def ref; end
|
716
|
+
def requires_checkout?; end
|
717
|
+
def revision; end
|
718
|
+
def self.from_lock(options); end
|
719
|
+
def serialize_gemspecs_in(destination); end
|
720
|
+
def set_local!(path); end
|
721
|
+
def shortref_for_display(ref); end
|
722
|
+
def shortref_for_path(ref); end
|
723
|
+
def specs(*arg0); end
|
724
|
+
def submodules; end
|
725
|
+
def to_lock; end
|
726
|
+
def to_s; end
|
727
|
+
def unlock!; end
|
728
|
+
def uri; end
|
729
|
+
def uri_hash; end
|
730
|
+
def validate_spec(_spec); end
|
731
|
+
end
|
732
|
+
class Bundler::Source::Rubygems < Bundler::Source
|
733
|
+
def ==(other); end
|
734
|
+
def add_remote(source); end
|
735
|
+
def api_fetchers; end
|
736
|
+
def builtin_gem?(spec); end
|
737
|
+
def cache(spec, custom_path = nil); end
|
738
|
+
def cache_globally(spec, local_cache_path); end
|
739
|
+
def cache_path; end
|
740
|
+
def cached!; end
|
741
|
+
def cached_built_in_gem(spec); end
|
742
|
+
def cached_gem(spec); end
|
743
|
+
def cached_path(spec); end
|
744
|
+
def cached_specs; end
|
745
|
+
def caches; end
|
746
|
+
def can_lock?(spec); end
|
747
|
+
def credless_remotes; end
|
748
|
+
def dependency_names_to_double_check; end
|
749
|
+
def double_check_for(unmet_dependency_names); end
|
750
|
+
def download_cache_path(spec); end
|
751
|
+
def download_gem(spec, download_path); end
|
752
|
+
def eql?(other); end
|
753
|
+
def equivalent_remotes?(other_remotes); end
|
754
|
+
def extension_cache_slug(spec); end
|
755
|
+
def fetch_gem(spec); end
|
756
|
+
def fetch_names(fetchers, dependency_names, index, override_dupes); end
|
757
|
+
def fetchers; end
|
758
|
+
def hash; end
|
759
|
+
def include?(o); end
|
760
|
+
def initialize(options = nil); end
|
761
|
+
def install(spec, opts = nil); end
|
762
|
+
def installed?(spec); end
|
763
|
+
def installed_specs; end
|
764
|
+
def loaded_from(spec); end
|
765
|
+
def name; end
|
766
|
+
def normalize_uri(uri); end
|
767
|
+
def options; end
|
768
|
+
def remote!; end
|
769
|
+
def remote_specs; end
|
770
|
+
def remotes; end
|
771
|
+
def remotes_for_spec(spec); end
|
772
|
+
def remove_auth(remote); end
|
773
|
+
def replace_remotes(other_remotes, allow_equivalent = nil); end
|
774
|
+
def requires_sudo?; end
|
775
|
+
def rubygems_dir; end
|
776
|
+
def self.from_lock(options); end
|
777
|
+
def specs; end
|
778
|
+
def suppress_configured_credentials(remote); end
|
779
|
+
def to_lock; end
|
780
|
+
def to_s; end
|
781
|
+
def unmet_deps; end
|
782
|
+
end
|
783
|
+
class Bundler::LockfileParser
|
784
|
+
def bundler_version; end
|
785
|
+
def dependencies; end
|
786
|
+
def initialize(lockfile); end
|
787
|
+
def parse_bundled_with(line); end
|
788
|
+
def parse_dependency(line); end
|
789
|
+
def parse_platform(line); end
|
790
|
+
def parse_ruby(line); end
|
791
|
+
def parse_source(line); end
|
792
|
+
def parse_spec(line); end
|
793
|
+
def platforms; end
|
794
|
+
def ruby_version; end
|
795
|
+
def self.sections_in_lockfile(lockfile_contents); end
|
796
|
+
def self.sections_to_ignore(base_version = nil); end
|
797
|
+
def self.unknown_sections_in_lockfile(lockfile_contents); end
|
798
|
+
def sources; end
|
799
|
+
def specs; end
|
800
|
+
def warn_for_outdated_bundler_version; end
|
801
|
+
end
|
802
|
+
class Bundler::Definition
|
803
|
+
def add_current_platform; end
|
804
|
+
def add_platform(platform); end
|
805
|
+
def additional_base_requirements_for_resolve; end
|
806
|
+
def change_reason; end
|
807
|
+
def compute_requires; end
|
808
|
+
def concat_ruby_version_requirements(ruby_version, ruby_versions = nil); end
|
809
|
+
def converge_dependencies; end
|
810
|
+
def converge_locals; end
|
811
|
+
def converge_locked_specs; end
|
812
|
+
def converge_path_source_to_gemspec_source(source); end
|
813
|
+
def converge_path_sources_to_gemspec_sources; end
|
814
|
+
def converge_paths; end
|
815
|
+
def converge_rubygems_sources; end
|
816
|
+
def converge_sources; end
|
817
|
+
def current_dependencies; end
|
818
|
+
def current_platforms; end
|
819
|
+
def dependencies; end
|
820
|
+
def dependencies_for_source_changed?(source, locked_source = nil); end
|
821
|
+
def double_check_for_index(idx, dependency_names); end
|
822
|
+
def ensure_equivalent_gemfile_and_lockfile(explicit_flag = nil); end
|
823
|
+
def equivalent_rubygems_remotes?(source); end
|
824
|
+
def expand_dependencies(dependencies, remote = nil); end
|
825
|
+
def expanded_dependencies; end
|
826
|
+
def extract_gem_info(error); end
|
827
|
+
def find_indexed_specs(current_spec); end
|
828
|
+
def find_resolved_spec(current_spec); end
|
829
|
+
def gem_version_promoter; end
|
830
|
+
def gemfiles; end
|
831
|
+
def groups; end
|
832
|
+
def has_local_dependencies?; end
|
833
|
+
def has_rubygems_remotes?; end
|
834
|
+
def in_locked_deps?(dep, locked_dep); end
|
835
|
+
def index; end
|
836
|
+
def initialize(lockfile, dependencies, sources, unlock, ruby_version = nil, optional_groups = nil, gemfiles = nil); end
|
837
|
+
def lock(file, preserve_unknown_sections = nil); end
|
838
|
+
def locked_bundler_version; end
|
839
|
+
def locked_deps; end
|
840
|
+
def locked_gems; end
|
841
|
+
def locked_ruby_version; end
|
842
|
+
def locked_ruby_version_object; end
|
843
|
+
def lockfile; end
|
844
|
+
def lockfiles_equal?(current, proposed, preserve_unknown_sections); end
|
845
|
+
def metadata_dependencies; end
|
846
|
+
def missing_specs; end
|
847
|
+
def missing_specs?; end
|
848
|
+
def new_platform?; end
|
849
|
+
def new_specs; end
|
850
|
+
def nothing_changed?; end
|
851
|
+
def pinned_spec_names(skip = nil); end
|
852
|
+
def platforms; end
|
853
|
+
def pretty_dep(dep, source = nil); end
|
854
|
+
def remove_platform(platform); end
|
855
|
+
def removed_specs; end
|
856
|
+
def requested_dependencies; end
|
857
|
+
def requested_groups; end
|
858
|
+
def requested_specs; end
|
859
|
+
def requires; end
|
860
|
+
def resolve; end
|
861
|
+
def resolve_remotely!; end
|
862
|
+
def resolve_with_cache!; end
|
863
|
+
def ruby_version; end
|
864
|
+
def satisfies_locked_spec?(dep); end
|
865
|
+
def self.build(gemfile, lockfile, unlock); end
|
866
|
+
def source_requirements; end
|
867
|
+
def sources; end
|
868
|
+
def spec_git_paths; end
|
869
|
+
def specs; end
|
870
|
+
def specs_changed?(source); end
|
871
|
+
def specs_for(groups); end
|
872
|
+
def specs_for_source_changed?(source); end
|
873
|
+
def to_lock; end
|
874
|
+
def unlocking?; end
|
875
|
+
def validate_platforms!; end
|
876
|
+
def validate_ruby!; end
|
877
|
+
def validate_runtime!; end
|
878
|
+
include Bundler::GemHelpers
|
879
|
+
end
|
880
|
+
class Bundler::Dependency < Gem::Dependency
|
881
|
+
def autorequire; end
|
882
|
+
def branch; end
|
883
|
+
def current_env?; end
|
884
|
+
def current_platform?; end
|
885
|
+
def expanded_platforms; end
|
886
|
+
def gem_platforms(valid_platforms); end
|
887
|
+
def gemfile; end
|
888
|
+
def git; end
|
889
|
+
def groups; end
|
890
|
+
def initialize(name, version, options = nil, &blk); end
|
891
|
+
def platforms; end
|
892
|
+
def should_include?; end
|
893
|
+
def specific?; end
|
894
|
+
def to_lock; end
|
895
|
+
end
|
896
|
+
module Bundler::RubyDsl
|
897
|
+
def ruby(*ruby_version); end
|
898
|
+
end
|
899
|
+
class Bundler::Dsl
|
900
|
+
def add_git_sources; end
|
901
|
+
def check_primary_source_safety(source_list); end
|
902
|
+
def dependencies; end
|
903
|
+
def dependencies=(arg0); end
|
904
|
+
def env(name); end
|
905
|
+
def eval_gemfile(gemfile, contents = nil); end
|
906
|
+
def gem(name, *args); end
|
907
|
+
def gemfile_root; end
|
908
|
+
def gemspec(opts = nil); end
|
909
|
+
def gemspecs; end
|
910
|
+
def git(uri, options = nil, &blk); end
|
911
|
+
def git_source(name, &block); end
|
912
|
+
def github(repo, options = nil); end
|
913
|
+
def group(*args, &blk); end
|
914
|
+
def initialize; end
|
915
|
+
def install_if(*args); end
|
916
|
+
def method_missing(name, *args); end
|
917
|
+
def normalize_group_options(opts, groups); end
|
918
|
+
def normalize_hash(opts); end
|
919
|
+
def normalize_options(name, version, opts); end
|
920
|
+
def normalize_source(source); end
|
921
|
+
def path(path, options = nil, &blk); end
|
922
|
+
def platform(*platforms); end
|
923
|
+
def platforms(*platforms); end
|
924
|
+
def plugin(*args); end
|
925
|
+
def self.evaluate(gemfile, lockfile, unlock); end
|
926
|
+
def source(source, *args, &blk); end
|
927
|
+
def to_definition(lockfile, unlock); end
|
928
|
+
def valid_keys; end
|
929
|
+
def validate_keys(command, opts, valid_keys); end
|
930
|
+
def warn_deprecated_git_source(name, replacement, additional_message = nil); end
|
931
|
+
def with_source(source); end
|
932
|
+
include Bundler::RubyDsl
|
933
|
+
end
|
934
|
+
class Bundler::Dsl::DSLError < Bundler::GemfileError
|
935
|
+
def backtrace; end
|
936
|
+
def contents; end
|
937
|
+
def description; end
|
938
|
+
def dsl_path; end
|
939
|
+
def initialize(description, dsl_path, backtrace, contents = nil); end
|
940
|
+
def parse_line_number_from_description; end
|
941
|
+
def status_code; end
|
942
|
+
def to_s; end
|
943
|
+
end
|
944
|
+
class Bundler::SourceList
|
945
|
+
def add_git_source(options = nil); end
|
946
|
+
def add_path_source(options = nil); end
|
947
|
+
def add_plugin_source(source, options = nil); end
|
948
|
+
def add_rubygems_remote(uri); end
|
949
|
+
def add_rubygems_source(options = nil); end
|
950
|
+
def add_source_to_list(source, list); end
|
951
|
+
def all_sources; end
|
952
|
+
def cached!; end
|
953
|
+
def combine_rubygems_sources; end
|
954
|
+
def default_source; end
|
955
|
+
def equal_source?(source, other_source); end
|
956
|
+
def equal_sources?(lock_sources, replacement_sources); end
|
957
|
+
def equivalent_rubygems_sources?(lock_sources, replacement_sources); end
|
958
|
+
def equivalent_source?(source, other_source); end
|
959
|
+
def equivalent_sources?(lock_sources, replacement_sources); end
|
960
|
+
def get(source); end
|
961
|
+
def git_sources; end
|
962
|
+
def global_rubygems_source; end
|
963
|
+
def global_rubygems_source=(uri); end
|
964
|
+
def initialize; end
|
965
|
+
def lock_sources; end
|
966
|
+
def metadata_source; end
|
967
|
+
def path_sources; end
|
968
|
+
def plugin_sources; end
|
969
|
+
def remote!; end
|
970
|
+
def replace_sources!(replacement_sources); end
|
971
|
+
def rubygems_aggregate_class; end
|
972
|
+
def rubygems_primary_remotes; end
|
973
|
+
def rubygems_remotes; end
|
974
|
+
def rubygems_sources; end
|
975
|
+
def source_list_for(source); end
|
976
|
+
def warn_on_git_protocol(source); end
|
977
|
+
end
|
978
|
+
class Bundler::Source::Metadata < Bundler::Source
|
979
|
+
def ==(other); end
|
980
|
+
def cached!; end
|
981
|
+
def eql?(other); end
|
982
|
+
def hash; end
|
983
|
+
def install(spec, _opts = nil); end
|
984
|
+
def options; end
|
985
|
+
def remote!; end
|
986
|
+
def specs; end
|
987
|
+
def to_s; end
|
988
|
+
def version_message(spec); end
|
989
|
+
end
|
990
|
+
module Bundler::URI
|
991
|
+
def self.decode_www_form(str, enc = nil, separator: nil, use__charset_: nil, isindex: nil); end
|
992
|
+
def self.decode_www_form_component(str, enc = nil); end
|
993
|
+
def self.encode_www_form(enum, enc = nil); end
|
994
|
+
def self.encode_www_form_component(str, enc = nil); end
|
995
|
+
def self.extract(str, schemes = nil, &block); end
|
996
|
+
def self.get_encoding(label); end
|
997
|
+
def self.join(*str); end
|
998
|
+
def self.parse(uri); end
|
999
|
+
def self.regexp(schemes = nil); end
|
1000
|
+
def self.scheme_list; end
|
1001
|
+
def self.split(uri); end
|
1002
|
+
extend Bundler::URI::Escape
|
1003
|
+
include Bundler::URI::RFC2396_REGEXP
|
1004
|
+
end
|
1005
|
+
module Bundler::URI::RFC2396_REGEXP
|
1006
|
+
end
|
1007
|
+
module Bundler::URI::RFC2396_REGEXP::PATTERN
|
1008
|
+
end
|
1009
|
+
class Bundler::URI::RFC2396_Parser
|
1010
|
+
def convert_to_uri(uri); end
|
1011
|
+
def escape(str, unsafe = nil); end
|
1012
|
+
def extract(str, schemes = nil); end
|
1013
|
+
def initialize(opts = nil); end
|
1014
|
+
def initialize_pattern(opts = nil); end
|
1015
|
+
def initialize_regexp(pattern); end
|
1016
|
+
def inspect; end
|
1017
|
+
def join(*uris); end
|
1018
|
+
def make_regexp(schemes = nil); end
|
1019
|
+
def parse(uri); end
|
1020
|
+
def pattern; end
|
1021
|
+
def regexp; end
|
1022
|
+
def split(uri); end
|
1023
|
+
def unescape(str, escaped = nil); end
|
1024
|
+
include Bundler::URI::RFC2396_REGEXP
|
1025
|
+
end
|
1026
|
+
class Bundler::URI::RFC3986_Parser
|
1027
|
+
def convert_to_uri(uri); end
|
1028
|
+
def default_regexp; end
|
1029
|
+
def initialize; end
|
1030
|
+
def inspect; end
|
1031
|
+
def join(*uris); end
|
1032
|
+
def parse(uri); end
|
1033
|
+
def regexp; end
|
1034
|
+
def split(uri); end
|
1035
|
+
end
|
1036
|
+
module Bundler::URI::Util
|
1037
|
+
def make_components_hash(klass, array_hash); end
|
1038
|
+
def self.make_components_hash(klass, array_hash); end
|
1039
|
+
end
|
1040
|
+
module Bundler::URI::Escape
|
1041
|
+
def decode(*arg); end
|
1042
|
+
def encode(*arg); end
|
1043
|
+
def escape(*arg); end
|
1044
|
+
def unescape(*arg); end
|
1045
|
+
end
|
1046
|
+
class Bundler::URI::Error < StandardError
|
1047
|
+
end
|
1048
|
+
class Bundler::URI::InvalidURIError < Bundler::URI::Error
|
1049
|
+
end
|
1050
|
+
class Bundler::URI::InvalidComponentError < Bundler::URI::Error
|
1051
|
+
end
|
1052
|
+
class Bundler::URI::BadURIError < Bundler::URI::Error
|
1053
|
+
end
|
1054
|
+
class Bundler::URI::Generic
|
1055
|
+
def +(oth); end
|
1056
|
+
def -(oth); end
|
1057
|
+
def ==(oth); end
|
1058
|
+
def absolute; end
|
1059
|
+
def absolute?; end
|
1060
|
+
def check_host(v); end
|
1061
|
+
def check_opaque(v); end
|
1062
|
+
def check_password(v, user = nil); end
|
1063
|
+
def check_path(v); end
|
1064
|
+
def check_port(v); end
|
1065
|
+
def check_registry(v); end
|
1066
|
+
def check_scheme(v); end
|
1067
|
+
def check_user(v); end
|
1068
|
+
def check_userinfo(user, password = nil); end
|
1069
|
+
def coerce(oth); end
|
1070
|
+
def component; end
|
1071
|
+
def component_ary; end
|
1072
|
+
def default_port; end
|
1073
|
+
def eql?(oth); end
|
1074
|
+
def escape_userpass(v); end
|
1075
|
+
def find_proxy(env = nil); end
|
1076
|
+
def fragment; end
|
1077
|
+
def fragment=(v); end
|
1078
|
+
def hash; end
|
1079
|
+
def hierarchical?; end
|
1080
|
+
def host; end
|
1081
|
+
def host=(v); end
|
1082
|
+
def hostname; end
|
1083
|
+
def hostname=(v); end
|
1084
|
+
def initialize(scheme, userinfo, host, port, registry, path, opaque, query, fragment, parser = nil, arg_check = nil); end
|
1085
|
+
def inspect; end
|
1086
|
+
def merge!(oth); end
|
1087
|
+
def merge(oth); end
|
1088
|
+
def merge_path(base, rel); end
|
1089
|
+
def normalize!; end
|
1090
|
+
def normalize; end
|
1091
|
+
def opaque; end
|
1092
|
+
def opaque=(v); end
|
1093
|
+
def parser; end
|
1094
|
+
def password; end
|
1095
|
+
def password=(password); end
|
1096
|
+
def path; end
|
1097
|
+
def path=(v); end
|
1098
|
+
def port; end
|
1099
|
+
def port=(v); end
|
1100
|
+
def query; end
|
1101
|
+
def query=(v); end
|
1102
|
+
def registry; end
|
1103
|
+
def registry=(v); end
|
1104
|
+
def relative?; end
|
1105
|
+
def replace!(oth); end
|
1106
|
+
def route_from(oth); end
|
1107
|
+
def route_from0(oth); end
|
1108
|
+
def route_from_path(src, dst); end
|
1109
|
+
def route_to(oth); end
|
1110
|
+
def scheme; end
|
1111
|
+
def scheme=(v); end
|
1112
|
+
def select(*components); end
|
1113
|
+
def self.build(args); end
|
1114
|
+
def self.build2(args); end
|
1115
|
+
def self.component; end
|
1116
|
+
def self.default_port; end
|
1117
|
+
def self.use_proxy?(hostname, addr, port, no_proxy); end
|
1118
|
+
def self.use_registry; end
|
1119
|
+
def set_host(v); end
|
1120
|
+
def set_opaque(v); end
|
1121
|
+
def set_password(v); end
|
1122
|
+
def set_path(v); end
|
1123
|
+
def set_port(v); end
|
1124
|
+
def set_registry(v); end
|
1125
|
+
def set_scheme(v); end
|
1126
|
+
def set_user(v); end
|
1127
|
+
def set_userinfo(user, password = nil); end
|
1128
|
+
def split_path(path); end
|
1129
|
+
def split_userinfo(ui); end
|
1130
|
+
def to_s; end
|
1131
|
+
def user; end
|
1132
|
+
def user=(user); end
|
1133
|
+
def userinfo; end
|
1134
|
+
def userinfo=(userinfo); end
|
1135
|
+
include Bundler::URI
|
1136
|
+
end
|
1137
|
+
class Bundler::URI::File < Bundler::URI::Generic
|
1138
|
+
def check_password(user); end
|
1139
|
+
def check_user(user); end
|
1140
|
+
def check_userinfo(user); end
|
1141
|
+
def self.build(args); end
|
1142
|
+
def set_host(v); end
|
1143
|
+
def set_password(v); end
|
1144
|
+
def set_port(v); end
|
1145
|
+
def set_user(v); end
|
1146
|
+
def set_userinfo(v); end
|
1147
|
+
end
|
1148
|
+
class Bundler::URI::FTP < Bundler::URI::Generic
|
1149
|
+
def check_typecode(v); end
|
1150
|
+
def initialize(scheme, userinfo, host, port, registry, path, opaque, query, fragment, parser = nil, arg_check = nil); end
|
1151
|
+
def merge(oth); end
|
1152
|
+
def path; end
|
1153
|
+
def self.build(args); end
|
1154
|
+
def self.new2(user, password, host, port, path, typecode = nil, arg_check = nil); end
|
1155
|
+
def set_path(v); end
|
1156
|
+
def set_typecode(v); end
|
1157
|
+
def to_s; end
|
1158
|
+
def typecode; end
|
1159
|
+
def typecode=(typecode); end
|
1160
|
+
end
|
1161
|
+
class Bundler::URI::HTTP < Bundler::URI::Generic
|
1162
|
+
def request_uri; end
|
1163
|
+
def self.build(args); end
|
1164
|
+
end
|
1165
|
+
class Bundler::URI::HTTPS < Bundler::URI::HTTP
|
1166
|
+
end
|
1167
|
+
class Bundler::URI::LDAP < Bundler::URI::Generic
|
1168
|
+
def attributes; end
|
1169
|
+
def attributes=(val); end
|
1170
|
+
def build_path_query; end
|
1171
|
+
def dn; end
|
1172
|
+
def dn=(val); end
|
1173
|
+
def extensions; end
|
1174
|
+
def extensions=(val); end
|
1175
|
+
def filter; end
|
1176
|
+
def filter=(val); end
|
1177
|
+
def hierarchical?; end
|
1178
|
+
def initialize(*arg); end
|
1179
|
+
def parse_dn; end
|
1180
|
+
def parse_query; end
|
1181
|
+
def scope; end
|
1182
|
+
def scope=(val); end
|
1183
|
+
def self.build(args); end
|
1184
|
+
def set_attributes(val); end
|
1185
|
+
def set_dn(val); end
|
1186
|
+
def set_extensions(val); end
|
1187
|
+
def set_filter(val); end
|
1188
|
+
def set_scope(val); end
|
1189
|
+
end
|
1190
|
+
class Bundler::URI::LDAPS < Bundler::URI::LDAP
|
1191
|
+
end
|
1192
|
+
class Bundler::URI::MailTo < Bundler::URI::Generic
|
1193
|
+
def check_headers(v); end
|
1194
|
+
def check_to(v); end
|
1195
|
+
def headers; end
|
1196
|
+
def headers=(v); end
|
1197
|
+
def initialize(*arg); end
|
1198
|
+
def self.build(args); end
|
1199
|
+
def set_headers(v); end
|
1200
|
+
def set_to(v); end
|
1201
|
+
def to; end
|
1202
|
+
def to=(v); end
|
1203
|
+
def to_mailtext; end
|
1204
|
+
def to_rfc822text; end
|
1205
|
+
def to_s; end
|
1206
|
+
include Bundler::URI::RFC2396_REGEXP
|
1207
|
+
end
|
1208
|
+
class Bundler::Index
|
1209
|
+
def <<(spec); end
|
1210
|
+
def ==(other); end
|
1211
|
+
def [](query, base = nil); end
|
1212
|
+
def add_source(index); end
|
1213
|
+
def all_specs; end
|
1214
|
+
def dependencies_eql?(spec, other_spec); end
|
1215
|
+
def dependency_names; end
|
1216
|
+
def each(&blk); end
|
1217
|
+
def empty?; end
|
1218
|
+
def initialize; end
|
1219
|
+
def initialize_copy(o); end
|
1220
|
+
def inspect; end
|
1221
|
+
def local_search(query, base = nil); end
|
1222
|
+
def search(query, base = nil); end
|
1223
|
+
def search_all(name); end
|
1224
|
+
def search_by_dependency(dependency, base = nil); end
|
1225
|
+
def search_by_spec(spec); end
|
1226
|
+
def self.build; end
|
1227
|
+
def self.sort_specs(specs); end
|
1228
|
+
def size; end
|
1229
|
+
def sort_specs(specs); end
|
1230
|
+
def sources; end
|
1231
|
+
def spec_names; end
|
1232
|
+
def specs; end
|
1233
|
+
def specs_by_name(name); end
|
1234
|
+
def unmet_dependency_names; end
|
1235
|
+
def unsorted_search(query, base); end
|
1236
|
+
def use(other, override_dupes = nil); end
|
1237
|
+
include Enumerable
|
1238
|
+
end
|
1239
|
+
class Bundler::Source::Gemspec < Bundler::Source::Path
|
1240
|
+
def as_path_source; end
|
1241
|
+
def gemspec; end
|
1242
|
+
def initialize(options); end
|
1243
|
+
end
|
1244
|
+
class Bundler::LazySpecification
|
1245
|
+
def ==(other); end
|
1246
|
+
def __materialize__; end
|
1247
|
+
def dependencies; end
|
1248
|
+
def full_name; end
|
1249
|
+
def git_version; end
|
1250
|
+
def identifier; end
|
1251
|
+
def initialize(name, version, platform, source = nil); end
|
1252
|
+
def method_missing(method, *args, &blk); end
|
1253
|
+
def name; end
|
1254
|
+
def platform; end
|
1255
|
+
def remote; end
|
1256
|
+
def remote=(arg0); end
|
1257
|
+
def respond_to?(*args); end
|
1258
|
+
def satisfies?(dependency); end
|
1259
|
+
def source; end
|
1260
|
+
def source=(arg0); end
|
1261
|
+
def to_ary; end
|
1262
|
+
def to_lock; end
|
1263
|
+
def to_s; end
|
1264
|
+
def version; end
|
1265
|
+
include Bundler::MatchPlatform
|
1266
|
+
end
|
1267
|
+
class Bundler::LazySpecification::Identifier < Struct
|
1268
|
+
def <=>(other); end
|
1269
|
+
def dependencies; end
|
1270
|
+
def dependencies=(_); end
|
1271
|
+
def name; end
|
1272
|
+
def name=(_); end
|
1273
|
+
def platform; end
|
1274
|
+
def platform=(_); end
|
1275
|
+
def platform_string; end
|
1276
|
+
def self.[](*arg0); end
|
1277
|
+
def self.inspect; end
|
1278
|
+
def self.members; end
|
1279
|
+
def self.new(*arg0); end
|
1280
|
+
def source; end
|
1281
|
+
def source=(_); end
|
1282
|
+
def version; end
|
1283
|
+
def version=(_); end
|
1284
|
+
include Comparable
|
1285
|
+
end
|
1286
|
+
class Bundler::SpecSet
|
1287
|
+
def <<(spec); end
|
1288
|
+
def [](key); end
|
1289
|
+
def []=(key, value); end
|
1290
|
+
def each(&b); end
|
1291
|
+
def empty?; end
|
1292
|
+
def extract_circular_gems(error); end
|
1293
|
+
def find_by_name_and_platform(name, platform); end
|
1294
|
+
def for(dependencies, skip = nil, check = nil, match_current_platform = nil, raise_on_missing = nil); end
|
1295
|
+
def initialize(specs); end
|
1296
|
+
def length; end
|
1297
|
+
def lookup; end
|
1298
|
+
def materialize(deps, missing_specs = nil); end
|
1299
|
+
def materialized_for_all_platforms; end
|
1300
|
+
def merge(set); end
|
1301
|
+
def size; end
|
1302
|
+
def sort!; end
|
1303
|
+
def sorted; end
|
1304
|
+
def spec_for_dependency(dep, match_current_platform); end
|
1305
|
+
def to_a; end
|
1306
|
+
def to_hash; end
|
1307
|
+
def tsort_each_child(s); end
|
1308
|
+
def tsort_each_node; end
|
1309
|
+
def valid_for?(deps); end
|
1310
|
+
def what_required(spec); end
|
1311
|
+
include Enumerable
|
1312
|
+
include TSort
|
1313
|
+
end
|
1314
|
+
class Gem::Licenses
|
1315
|
+
def self.match?(license); end
|
1316
|
+
def self.suggestions(license); end
|
1317
|
+
extend Gem::Text
|
1318
|
+
end
|
1319
|
+
class Bundler::RemoteSpecification
|
1320
|
+
def <=>(other); end
|
1321
|
+
def __swap__(spec); end
|
1322
|
+
def _remote_specification; end
|
1323
|
+
def dependencies; end
|
1324
|
+
def dependencies=(arg0); end
|
1325
|
+
def fetch_platform; end
|
1326
|
+
def full_name; end
|
1327
|
+
def git_version; end
|
1328
|
+
def initialize(name, version, platform, spec_fetcher); end
|
1329
|
+
def method_missing(method, *args, &blk); end
|
1330
|
+
def name; end
|
1331
|
+
def platform; end
|
1332
|
+
def remote; end
|
1333
|
+
def remote=(arg0); end
|
1334
|
+
def respond_to?(method, include_all = nil); end
|
1335
|
+
def sort_obj; end
|
1336
|
+
def source; end
|
1337
|
+
def source=(arg0); end
|
1338
|
+
def to_ary; end
|
1339
|
+
def to_s; end
|
1340
|
+
def version; end
|
1341
|
+
include Bundler::MatchPlatform
|
1342
|
+
include Comparable
|
1343
|
+
end
|
1344
|
+
module Bundler::Molinillo
|
1345
|
+
end
|
1346
|
+
module Bundler::Molinillo::Compatibility
|
1347
|
+
def flat_map(enum, &blk); end
|
1348
|
+
def self.flat_map(enum, &blk); end
|
1349
|
+
end
|
1350
|
+
module Bundler::Molinillo::Delegates
|
1351
|
+
end
|
1352
|
+
module Bundler::Molinillo::Delegates::SpecificationProvider
|
1353
|
+
def allow_missing?(dependency); end
|
1354
|
+
def dependencies_for(specification); end
|
1355
|
+
def name_for(dependency); end
|
1356
|
+
def name_for_explicit_dependency_source; end
|
1357
|
+
def name_for_locking_dependency_source; end
|
1358
|
+
def requirement_satisfied_by?(requirement, activated, spec); end
|
1359
|
+
def search_for(dependency); end
|
1360
|
+
def sort_dependencies(dependencies, activated, conflicts); end
|
1361
|
+
def with_no_such_dependency_error_handling; end
|
1362
|
+
end
|
1363
|
+
class Bundler::Molinillo::ResolverError < StandardError
|
1364
|
+
end
|
1365
|
+
class Bundler::Molinillo::NoSuchDependencyError < Bundler::Molinillo::ResolverError
|
1366
|
+
def dependency; end
|
1367
|
+
def dependency=(arg0); end
|
1368
|
+
def initialize(dependency, required_by = nil); end
|
1369
|
+
def message; end
|
1370
|
+
def required_by; end
|
1371
|
+
def required_by=(arg0); end
|
1372
|
+
end
|
1373
|
+
class Bundler::Molinillo::CircularDependencyError < Bundler::Molinillo::ResolverError
|
1374
|
+
def dependencies; end
|
1375
|
+
def initialize(vertices); end
|
1376
|
+
end
|
1377
|
+
class Bundler::Molinillo::VersionConflict < Bundler::Molinillo::ResolverError
|
1378
|
+
def conflicts; end
|
1379
|
+
def initialize(conflicts, specification_provider); end
|
1380
|
+
def message_with_trees(opts = nil); end
|
1381
|
+
def specification_provider; end
|
1382
|
+
include Bundler::Molinillo::Delegates::SpecificationProvider
|
1383
|
+
end
|
1384
|
+
class Bundler::Molinillo::DependencyGraph
|
1385
|
+
def ==(other); end
|
1386
|
+
def add_child_vertex(name, payload, parent_names, requirement); end
|
1387
|
+
def add_edge(origin, destination, requirement); end
|
1388
|
+
def add_edge_no_circular(origin, destination, requirement); end
|
1389
|
+
def add_vertex(name, payload, root = nil); end
|
1390
|
+
def delete_edge(edge); end
|
1391
|
+
def detach_vertex_named(name); end
|
1392
|
+
def each; end
|
1393
|
+
def initialize; end
|
1394
|
+
def initialize_copy(other); end
|
1395
|
+
def inspect; end
|
1396
|
+
def log; end
|
1397
|
+
def rewind_to(tag); end
|
1398
|
+
def root_vertex_named(name); end
|
1399
|
+
def self.tsort(vertices); end
|
1400
|
+
def set_payload(name, payload); end
|
1401
|
+
def tag(tag); end
|
1402
|
+
def to_dot(options = nil); end
|
1403
|
+
def tsort_each_child(vertex, &block); end
|
1404
|
+
def tsort_each_node; end
|
1405
|
+
def vertex_named(name); end
|
1406
|
+
def vertices; end
|
1407
|
+
include Enumerable
|
1408
|
+
include TSort
|
1409
|
+
end
|
1410
|
+
class Bundler::Molinillo::DependencyGraph::Action
|
1411
|
+
def down(graph); end
|
1412
|
+
def next; end
|
1413
|
+
def next=(arg0); end
|
1414
|
+
def previous; end
|
1415
|
+
def previous=(arg0); end
|
1416
|
+
def self.action_name; end
|
1417
|
+
def up(graph); end
|
1418
|
+
end
|
1419
|
+
class Bundler::Molinillo::DependencyGraph::AddEdgeNoCircular < Bundler::Molinillo::DependencyGraph::Action
|
1420
|
+
def delete_first(array, item); end
|
1421
|
+
def destination; end
|
1422
|
+
def down(graph); end
|
1423
|
+
def initialize(origin, destination, requirement); end
|
1424
|
+
def make_edge(graph); end
|
1425
|
+
def origin; end
|
1426
|
+
def requirement; end
|
1427
|
+
def self.action_name; end
|
1428
|
+
def up(graph); end
|
1429
|
+
end
|
1430
|
+
class Bundler::Molinillo::DependencyGraph::AddVertex < Bundler::Molinillo::DependencyGraph::Action
|
1431
|
+
def down(graph); end
|
1432
|
+
def initialize(name, payload, root); end
|
1433
|
+
def name; end
|
1434
|
+
def payload; end
|
1435
|
+
def root; end
|
1436
|
+
def self.action_name; end
|
1437
|
+
def up(graph); end
|
1438
|
+
end
|
1439
|
+
class Bundler::Molinillo::DependencyGraph::DeleteEdge < Bundler::Molinillo::DependencyGraph::Action
|
1440
|
+
def destination_name; end
|
1441
|
+
def down(graph); end
|
1442
|
+
def initialize(origin_name, destination_name, requirement); end
|
1443
|
+
def make_edge(graph); end
|
1444
|
+
def origin_name; end
|
1445
|
+
def requirement; end
|
1446
|
+
def self.action_name; end
|
1447
|
+
def up(graph); end
|
1448
|
+
end
|
1449
|
+
class Bundler::Molinillo::DependencyGraph::DetachVertexNamed < Bundler::Molinillo::DependencyGraph::Action
|
1450
|
+
def down(graph); end
|
1451
|
+
def initialize(name); end
|
1452
|
+
def name; end
|
1453
|
+
def self.action_name; end
|
1454
|
+
def up(graph); end
|
1455
|
+
end
|
1456
|
+
class Bundler::Molinillo::DependencyGraph::SetPayload < Bundler::Molinillo::DependencyGraph::Action
|
1457
|
+
def down(graph); end
|
1458
|
+
def initialize(name, payload); end
|
1459
|
+
def name; end
|
1460
|
+
def payload; end
|
1461
|
+
def self.action_name; end
|
1462
|
+
def up(graph); end
|
1463
|
+
end
|
1464
|
+
class Bundler::Molinillo::DependencyGraph::Tag < Bundler::Molinillo::DependencyGraph::Action
|
1465
|
+
def down(_graph); end
|
1466
|
+
def initialize(tag); end
|
1467
|
+
def self.action_name; end
|
1468
|
+
def tag; end
|
1469
|
+
def up(_graph); end
|
1470
|
+
end
|
1471
|
+
class Bundler::Molinillo::DependencyGraph::Log
|
1472
|
+
def add_edge_no_circular(graph, origin, destination, requirement); end
|
1473
|
+
def add_vertex(graph, name, payload, root); end
|
1474
|
+
def delete_edge(graph, origin_name, destination_name, requirement); end
|
1475
|
+
def detach_vertex_named(graph, name); end
|
1476
|
+
def each; end
|
1477
|
+
def initialize; end
|
1478
|
+
def pop!(graph); end
|
1479
|
+
def push_action(graph, action); end
|
1480
|
+
def reverse_each; end
|
1481
|
+
def rewind_to(graph, tag); end
|
1482
|
+
def set_payload(graph, name, payload); end
|
1483
|
+
def tag(graph, tag); end
|
1484
|
+
extend Enumerable
|
1485
|
+
end
|
1486
|
+
class Bundler::Molinillo::DependencyGraph::Vertex
|
1487
|
+
def ==(other); end
|
1488
|
+
def _path_to?(other, visited = nil); end
|
1489
|
+
def _recursive_predecessors(vertices = nil); end
|
1490
|
+
def _recursive_successors(vertices = nil); end
|
1491
|
+
def ancestor?(other); end
|
1492
|
+
def descendent?(other); end
|
1493
|
+
def eql?(other); end
|
1494
|
+
def explicit_requirements; end
|
1495
|
+
def hash; end
|
1496
|
+
def incoming_edges; end
|
1497
|
+
def incoming_edges=(arg0); end
|
1498
|
+
def initialize(name, payload); end
|
1499
|
+
def inspect; end
|
1500
|
+
def is_reachable_from?(other); end
|
1501
|
+
def name; end
|
1502
|
+
def name=(arg0); end
|
1503
|
+
def outgoing_edges; end
|
1504
|
+
def outgoing_edges=(arg0); end
|
1505
|
+
def path_to?(other); end
|
1506
|
+
def payload; end
|
1507
|
+
def payload=(arg0); end
|
1508
|
+
def predecessors; end
|
1509
|
+
def recursive_predecessors; end
|
1510
|
+
def recursive_successors; end
|
1511
|
+
def requirements; end
|
1512
|
+
def root; end
|
1513
|
+
def root=(arg0); end
|
1514
|
+
def root?; end
|
1515
|
+
def shallow_eql?(other); end
|
1516
|
+
def successors; end
|
1517
|
+
end
|
1518
|
+
class Bundler::Molinillo::DependencyGraph::Edge < Struct
|
1519
|
+
def destination; end
|
1520
|
+
def destination=(_); end
|
1521
|
+
def origin; end
|
1522
|
+
def origin=(_); end
|
1523
|
+
def requirement; end
|
1524
|
+
def requirement=(_); end
|
1525
|
+
def self.[](*arg0); end
|
1526
|
+
def self.inspect; end
|
1527
|
+
def self.members; end
|
1528
|
+
def self.new(*arg0); end
|
1529
|
+
end
|
1530
|
+
class Bundler::Molinillo::ResolutionState < Struct
|
1531
|
+
def activated; end
|
1532
|
+
def activated=(_); end
|
1533
|
+
def conflicts; end
|
1534
|
+
def conflicts=(_); end
|
1535
|
+
def depth; end
|
1536
|
+
def depth=(_); end
|
1537
|
+
def name; end
|
1538
|
+
def name=(_); end
|
1539
|
+
def possibilities; end
|
1540
|
+
def possibilities=(_); end
|
1541
|
+
def requirement; end
|
1542
|
+
def requirement=(_); end
|
1543
|
+
def requirements; end
|
1544
|
+
def requirements=(_); end
|
1545
|
+
def self.[](*arg0); end
|
1546
|
+
def self.empty; end
|
1547
|
+
def self.inspect; end
|
1548
|
+
def self.members; end
|
1549
|
+
def self.new(*arg0); end
|
1550
|
+
def unused_unwind_options; end
|
1551
|
+
def unused_unwind_options=(_); end
|
1552
|
+
end
|
1553
|
+
class Bundler::Molinillo::DependencyState < Bundler::Molinillo::ResolutionState
|
1554
|
+
def pop_possibility_state; end
|
1555
|
+
end
|
1556
|
+
class Bundler::Molinillo::PossibilityState < Bundler::Molinillo::ResolutionState
|
1557
|
+
end
|
1558
|
+
module Bundler::Molinillo::SpecificationProvider
|
1559
|
+
def allow_missing?(dependency); end
|
1560
|
+
def dependencies_for(specification); end
|
1561
|
+
def name_for(dependency); end
|
1562
|
+
def name_for_explicit_dependency_source; end
|
1563
|
+
def name_for_locking_dependency_source; end
|
1564
|
+
def requirement_satisfied_by?(requirement, activated, spec); end
|
1565
|
+
def search_for(dependency); end
|
1566
|
+
def sort_dependencies(dependencies, activated, conflicts); end
|
1567
|
+
end
|
1568
|
+
module Bundler::Molinillo::Delegates::ResolutionState
|
1569
|
+
def activated; end
|
1570
|
+
def conflicts; end
|
1571
|
+
def depth; end
|
1572
|
+
def name; end
|
1573
|
+
def possibilities; end
|
1574
|
+
def requirement; end
|
1575
|
+
def requirements; end
|
1576
|
+
def unused_unwind_options; end
|
1577
|
+
end
|
1578
|
+
class Bundler::Molinillo::Resolver
|
1579
|
+
def initialize(specification_provider, resolver_ui); end
|
1580
|
+
def resolve(requested, base = nil); end
|
1581
|
+
def resolver_ui; end
|
1582
|
+
def specification_provider; end
|
1583
|
+
end
|
1584
|
+
class Bundler::Molinillo::Resolver::Resolution
|
1585
|
+
def activate_new_spec; end
|
1586
|
+
def attempt_to_activate; end
|
1587
|
+
def attempt_to_filter_existing_spec(vertex); end
|
1588
|
+
def base; end
|
1589
|
+
def binding_requirement_in_set?(requirement, possible_binding_requirements, possibilities); end
|
1590
|
+
def binding_requirements_for_conflict(conflict); end
|
1591
|
+
def build_details_for_unwind; end
|
1592
|
+
def conflict_fixing_possibilities?(state, binding_requirements); end
|
1593
|
+
def create_conflict(underlying_error = nil); end
|
1594
|
+
def debug(depth = nil, &block); end
|
1595
|
+
def end_resolution; end
|
1596
|
+
def filter_possibilities_after_unwind(unwind_details); end
|
1597
|
+
def filter_possibilities_for_parent_unwind(unwind_details); end
|
1598
|
+
def filter_possibilities_for_primary_unwind(unwind_details); end
|
1599
|
+
def filtered_possibility_set(vertex); end
|
1600
|
+
def find_state_for(requirement); end
|
1601
|
+
def group_possibilities(possibilities); end
|
1602
|
+
def handle_missing_or_push_dependency_state(state); end
|
1603
|
+
def indicate_progress; end
|
1604
|
+
def initial_state; end
|
1605
|
+
def initialize(specification_provider, resolver_ui, requested, base); end
|
1606
|
+
def iteration_rate; end
|
1607
|
+
def iteration_rate=(arg0); end
|
1608
|
+
def locked_requirement_named(requirement_name); end
|
1609
|
+
def locked_requirement_possibility_set(requirement, activated = nil); end
|
1610
|
+
def original_requested; end
|
1611
|
+
def parent_of(requirement); end
|
1612
|
+
def possibilities_for_requirement(requirement, activated = nil); end
|
1613
|
+
def possibility; end
|
1614
|
+
def possibility_satisfies_requirements?(possibility, requirements); end
|
1615
|
+
def process_topmost_state; end
|
1616
|
+
def push_state_for_requirements(new_requirements, requires_sort = nil, new_activated = nil); end
|
1617
|
+
def raise_error_unless_state(conflicts); end
|
1618
|
+
def require_nested_dependencies_for(possibility_set); end
|
1619
|
+
def requirement_for_existing_name(name); end
|
1620
|
+
def requirement_tree_for(requirement); end
|
1621
|
+
def requirement_trees; end
|
1622
|
+
def resolve; end
|
1623
|
+
def resolve_activated_specs; end
|
1624
|
+
def resolver_ui; end
|
1625
|
+
def specification_provider; end
|
1626
|
+
def start_resolution; end
|
1627
|
+
def started_at; end
|
1628
|
+
def started_at=(arg0); end
|
1629
|
+
def state; end
|
1630
|
+
def states; end
|
1631
|
+
def states=(arg0); end
|
1632
|
+
def unwind_for_conflict; end
|
1633
|
+
def unwind_options_for_requirements(binding_requirements); end
|
1634
|
+
include Bundler::Molinillo::Delegates::ResolutionState
|
1635
|
+
include Bundler::Molinillo::Delegates::SpecificationProvider
|
1636
|
+
end
|
1637
|
+
class Bundler::Molinillo::Resolver::Resolution::Conflict < Struct
|
1638
|
+
def activated_by_name; end
|
1639
|
+
def activated_by_name=(_); end
|
1640
|
+
def existing; end
|
1641
|
+
def existing=(_); end
|
1642
|
+
def locked_requirement; end
|
1643
|
+
def locked_requirement=(_); end
|
1644
|
+
def possibility; end
|
1645
|
+
def possibility_set; end
|
1646
|
+
def possibility_set=(_); end
|
1647
|
+
def requirement; end
|
1648
|
+
def requirement=(_); end
|
1649
|
+
def requirement_trees; end
|
1650
|
+
def requirement_trees=(_); end
|
1651
|
+
def requirements; end
|
1652
|
+
def requirements=(_); end
|
1653
|
+
def self.[](*arg0); end
|
1654
|
+
def self.inspect; end
|
1655
|
+
def self.members; end
|
1656
|
+
def self.new(*arg0); end
|
1657
|
+
def underlying_error; end
|
1658
|
+
def underlying_error=(_); end
|
1659
|
+
end
|
1660
|
+
class Bundler::Molinillo::Resolver::Resolution::PossibilitySet < Struct
|
1661
|
+
def dependencies; end
|
1662
|
+
def dependencies=(_); end
|
1663
|
+
def latest_version; end
|
1664
|
+
def possibilities; end
|
1665
|
+
def possibilities=(_); end
|
1666
|
+
def self.[](*arg0); end
|
1667
|
+
def self.inspect; end
|
1668
|
+
def self.members; end
|
1669
|
+
def self.new(*arg0); end
|
1670
|
+
def to_s; end
|
1671
|
+
end
|
1672
|
+
class Bundler::Molinillo::Resolver::Resolution::UnwindDetails < Struct
|
1673
|
+
def <=>(other); end
|
1674
|
+
def all_requirements; end
|
1675
|
+
def conflicting_requirements; end
|
1676
|
+
def conflicting_requirements=(_); end
|
1677
|
+
def requirement_tree; end
|
1678
|
+
def requirement_tree=(_); end
|
1679
|
+
def requirement_trees; end
|
1680
|
+
def requirement_trees=(_); end
|
1681
|
+
def requirements_unwound_to_instead; end
|
1682
|
+
def requirements_unwound_to_instead=(_); end
|
1683
|
+
def reversed_requirement_tree_index; end
|
1684
|
+
def self.[](*arg0); end
|
1685
|
+
def self.inspect; end
|
1686
|
+
def self.members; end
|
1687
|
+
def self.new(*arg0); end
|
1688
|
+
def state_index; end
|
1689
|
+
def state_index=(_); end
|
1690
|
+
def state_requirement; end
|
1691
|
+
def state_requirement=(_); end
|
1692
|
+
def sub_dependencies_to_avoid; end
|
1693
|
+
def unwinding_to_primary_requirement?; end
|
1694
|
+
include Comparable
|
1695
|
+
end
|
1696
|
+
module Bundler::Molinillo::UI
|
1697
|
+
def after_resolution; end
|
1698
|
+
def before_resolution; end
|
1699
|
+
def debug(depth = nil); end
|
1700
|
+
def debug?; end
|
1701
|
+
def indicate_progress; end
|
1702
|
+
def output; end
|
1703
|
+
def progress_rate; end
|
1704
|
+
end
|
1705
|
+
class Bundler::Resolver
|
1706
|
+
def after_resolution; end
|
1707
|
+
def amount_constrained(dependency); end
|
1708
|
+
def before_resolution; end
|
1709
|
+
def debug(depth = nil); end
|
1710
|
+
def debug?; end
|
1711
|
+
def dependencies_for(specification); end
|
1712
|
+
def formatted_versions_with_platforms(versions_with_platforms); end
|
1713
|
+
def index_for(dependency); end
|
1714
|
+
def indicate_progress; end
|
1715
|
+
def initialize(index, source_requirements, base, gem_version_promoter, additional_base_requirements, platforms); end
|
1716
|
+
def name_for(dependency); end
|
1717
|
+
def name_for_explicit_dependency_source; end
|
1718
|
+
def name_for_locking_dependency_source; end
|
1719
|
+
def relevant_sources_for_vertex(vertex); end
|
1720
|
+
def requirement_satisfied_by?(requirement, activated, spec); end
|
1721
|
+
def search_for(dependency); end
|
1722
|
+
def self.platform_sort_key(platform); end
|
1723
|
+
def self.resolve(requirements, index, source_requirements = nil, base = nil, gem_version_promoter = nil, additional_base_requirements = nil, platforms = nil); end
|
1724
|
+
def self.sort_platforms(platforms); end
|
1725
|
+
def sort_dependencies(dependencies, activated, conflicts); end
|
1726
|
+
def start(requirements); end
|
1727
|
+
def validate_resolved_specs!(resolved_specs); end
|
1728
|
+
def verify_gemfile_dependencies_are_found!(requirements); end
|
1729
|
+
def version_conflict_message(e); end
|
1730
|
+
include Bundler::Molinillo::SpecificationProvider
|
1731
|
+
include Bundler::Molinillo::UI
|
1732
|
+
end
|
1733
|
+
class Bundler::Resolver::SpecGroup
|
1734
|
+
def ==(other); end
|
1735
|
+
def __dependencies; end
|
1736
|
+
def activate_platform!(platform); end
|
1737
|
+
def dependencies_for_activated_platforms; end
|
1738
|
+
def eql?(other); end
|
1739
|
+
def for?(platform); end
|
1740
|
+
def hash; end
|
1741
|
+
def ignores_bundler_dependencies; end
|
1742
|
+
def ignores_bundler_dependencies=(arg0); end
|
1743
|
+
def initialize(all_specs); end
|
1744
|
+
def metadata_dependencies(spec, platform); end
|
1745
|
+
def name; end
|
1746
|
+
def name=(arg0); end
|
1747
|
+
def source; end
|
1748
|
+
def source=(arg0); end
|
1749
|
+
def to_s; end
|
1750
|
+
def to_specs; end
|
1751
|
+
def version; end
|
1752
|
+
def version=(arg0); end
|
1753
|
+
include Bundler::GemHelpers
|
1754
|
+
end
|
1755
|
+
class Bundler::Runtime
|
1756
|
+
def cache(custom_path = nil); end
|
1757
|
+
def check_for_activated_spec!(spec); end
|
1758
|
+
def clean(dry_run = nil); end
|
1759
|
+
def current_dependencies; end
|
1760
|
+
def dependencies; end
|
1761
|
+
def gems; end
|
1762
|
+
def initialize(root, definition); end
|
1763
|
+
def lock(opts = nil); end
|
1764
|
+
def prune_cache(cache_path); end
|
1765
|
+
def prune_gem_cache(resolve, cache_path); end
|
1766
|
+
def prune_git_and_path_cache(resolve, cache_path); end
|
1767
|
+
def remove_dir(dir, dry_run); end
|
1768
|
+
def requested_specs; end
|
1769
|
+
def require(*groups); end
|
1770
|
+
def requires; end
|
1771
|
+
def self.definition_method(meth); end
|
1772
|
+
def setup(*groups); end
|
1773
|
+
def setup_manpath; end
|
1774
|
+
def specs; end
|
1775
|
+
include Bundler::SharedHelpers
|
1776
|
+
end
|
1777
|
+
class Bundler::DepProxy
|
1778
|
+
def ==(other); end
|
1779
|
+
def __platform; end
|
1780
|
+
def dep; end
|
1781
|
+
def eql?(other); end
|
1782
|
+
def hash; end
|
1783
|
+
def initialize(dep, platform); end
|
1784
|
+
def method_missing(*args, &blk); end
|
1785
|
+
def name; end
|
1786
|
+
def requirement; end
|
1787
|
+
def to_s; end
|
1788
|
+
def type; end
|
1789
|
+
end
|
1790
|
+
class Bundler::StubSpecification < Bundler::RemoteSpecification
|
1791
|
+
def _remote_specification; end
|
1792
|
+
def activated; end
|
1793
|
+
def activated=(activated); end
|
1794
|
+
def default_gem; end
|
1795
|
+
def full_gem_path; end
|
1796
|
+
def full_require_paths; end
|
1797
|
+
def ignored; end
|
1798
|
+
def ignored=(arg0); end
|
1799
|
+
def load_paths; end
|
1800
|
+
def loaded_from; end
|
1801
|
+
def matches_for_glob(glob); end
|
1802
|
+
def missing_extensions?; end
|
1803
|
+
def raw_require_paths; end
|
1804
|
+
def self.from_stub(stub); end
|
1805
|
+
def source=(source); end
|
1806
|
+
def stub; end
|
1807
|
+
def stub=(arg0); end
|
1808
|
+
def to_yaml; end
|
1809
|
+
end
|
1810
|
+
class Bundler::EndpointSpecification < Gem::Specification
|
1811
|
+
def __swap__(spec); end
|
1812
|
+
def _local_specification; end
|
1813
|
+
def bindir; end
|
1814
|
+
def build_dependency(name, requirements); end
|
1815
|
+
def checksum; end
|
1816
|
+
def dependencies; end
|
1817
|
+
def dependencies=(arg0); end
|
1818
|
+
def executables; end
|
1819
|
+
def extensions; end
|
1820
|
+
def fetch_platform; end
|
1821
|
+
def initialize(name, version, platform, dependencies, metadata = nil); end
|
1822
|
+
def load_paths; end
|
1823
|
+
def local_specification_path; end
|
1824
|
+
def name; end
|
1825
|
+
def parse_metadata(data); end
|
1826
|
+
def platform; end
|
1827
|
+
def post_install_message; end
|
1828
|
+
def remote; end
|
1829
|
+
def remote=(arg0); end
|
1830
|
+
def require_paths; end
|
1831
|
+
def required_ruby_version; end
|
1832
|
+
def required_rubygems_version; end
|
1833
|
+
def source; end
|
1834
|
+
def source=(arg0); end
|
1835
|
+
def version; end
|
1836
|
+
include Bundler::MatchPlatform
|
1837
|
+
end
|
1838
|
+
class Bundler::RubyVersion
|
1839
|
+
def ==(other); end
|
1840
|
+
def diff(other); end
|
1841
|
+
def engine; end
|
1842
|
+
def engine_gem_version; end
|
1843
|
+
def engine_versions; end
|
1844
|
+
def exact?; end
|
1845
|
+
def gem_version; end
|
1846
|
+
def host; end
|
1847
|
+
def initialize(versions, patchlevel, engine, engine_version); end
|
1848
|
+
def matches?(requirements, version); end
|
1849
|
+
def patchlevel; end
|
1850
|
+
def self.from_string(string); end
|
1851
|
+
def self.system; end
|
1852
|
+
def single_version_string; end
|
1853
|
+
def to_gem_version_with_patchlevel; end
|
1854
|
+
def to_s(versions = nil); end
|
1855
|
+
def versions; end
|
1856
|
+
def versions_string(versions); end
|
1857
|
+
end
|
1858
|
+
module Gem::Ext
|
1859
|
+
end
|
1860
|
+
module Kernel
|
1861
|
+
def self.gem(dep, *reqs); end
|
1862
|
+
end
|