bundler 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bundler might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/CHANGELOG.md +3111 -0
- data/LICENSE.md +23 -0
- data/README.md +63 -0
- data/bundler.gemspec +65 -0
- data/exe/bundle +31 -0
- data/exe/bundle_ruby +60 -0
- data/exe/bundler +4 -0
- data/lib/bundler.rb +567 -0
- data/lib/bundler/build_metadata.rb +53 -0
- data/lib/bundler/capistrano.rb +22 -0
- data/lib/bundler/cli.rb +792 -0
- data/lib/bundler/cli/add.rb +35 -0
- data/lib/bundler/cli/binstubs.rb +49 -0
- data/lib/bundler/cli/cache.rb +36 -0
- data/lib/bundler/cli/check.rb +38 -0
- data/lib/bundler/cli/clean.rb +25 -0
- data/lib/bundler/cli/common.rb +102 -0
- data/lib/bundler/cli/config.rb +119 -0
- data/lib/bundler/cli/console.rb +43 -0
- data/lib/bundler/cli/doctor.rb +140 -0
- data/lib/bundler/cli/exec.rb +105 -0
- data/lib/bundler/cli/gem.rb +252 -0
- data/lib/bundler/cli/info.rb +50 -0
- data/lib/bundler/cli/init.rb +47 -0
- data/lib/bundler/cli/inject.rb +60 -0
- data/lib/bundler/cli/install.rb +218 -0
- data/lib/bundler/cli/issue.rb +40 -0
- data/lib/bundler/cli/list.rb +58 -0
- data/lib/bundler/cli/lock.rb +63 -0
- data/lib/bundler/cli/open.rb +26 -0
- data/lib/bundler/cli/outdated.rb +266 -0
- data/lib/bundler/cli/package.rb +49 -0
- data/lib/bundler/cli/platform.rb +46 -0
- data/lib/bundler/cli/plugin.rb +24 -0
- data/lib/bundler/cli/pristine.rb +47 -0
- data/lib/bundler/cli/remove.rb +18 -0
- data/lib/bundler/cli/show.rb +75 -0
- data/lib/bundler/cli/update.rb +91 -0
- data/lib/bundler/cli/viz.rb +31 -0
- data/lib/bundler/compact_index_client.rb +109 -0
- data/lib/bundler/compact_index_client/cache.rb +118 -0
- data/lib/bundler/compact_index_client/updater.rb +116 -0
- data/lib/bundler/compatibility_guard.rb +13 -0
- data/lib/bundler/constants.rb +7 -0
- data/lib/bundler/current_ruby.rb +94 -0
- data/lib/bundler/definition.rb +995 -0
- data/lib/bundler/dep_proxy.rb +48 -0
- data/lib/bundler/dependency.rb +139 -0
- data/lib/bundler/deployment.rb +69 -0
- data/lib/bundler/deprecate.rb +44 -0
- data/lib/bundler/dsl.rb +615 -0
- data/lib/bundler/endpoint_specification.rb +141 -0
- data/lib/bundler/env.rb +149 -0
- data/lib/bundler/environment_preserver.rb +59 -0
- data/lib/bundler/errors.rb +158 -0
- data/lib/bundler/feature_flag.rb +75 -0
- data/lib/bundler/fetcher.rb +312 -0
- data/lib/bundler/fetcher/base.rb +52 -0
- data/lib/bundler/fetcher/compact_index.rb +126 -0
- data/lib/bundler/fetcher/dependency.rb +82 -0
- data/lib/bundler/fetcher/downloader.rb +84 -0
- data/lib/bundler/fetcher/index.rb +52 -0
- data/lib/bundler/friendly_errors.rb +131 -0
- data/lib/bundler/gem_helper.rb +217 -0
- data/lib/bundler/gem_helpers.rb +101 -0
- data/lib/bundler/gem_remote_fetcher.rb +43 -0
- data/lib/bundler/gem_tasks.rb +7 -0
- data/lib/bundler/gem_version_promoter.rb +190 -0
- data/lib/bundler/gemdeps.rb +29 -0
- data/lib/bundler/graph.rb +152 -0
- data/lib/bundler/index.rb +213 -0
- data/lib/bundler/injector.rb +253 -0
- data/lib/bundler/inline.rb +74 -0
- data/lib/bundler/installer.rb +318 -0
- data/lib/bundler/installer/gem_installer.rb +85 -0
- data/lib/bundler/installer/parallel_installer.rb +229 -0
- data/lib/bundler/installer/standalone.rb +53 -0
- data/lib/bundler/lazy_specification.rb +123 -0
- data/lib/bundler/lockfile_generator.rb +95 -0
- data/lib/bundler/lockfile_parser.rb +256 -0
- data/lib/bundler/match_platform.rb +24 -0
- data/lib/bundler/mirror.rb +223 -0
- data/lib/bundler/plugin.rb +294 -0
- data/lib/bundler/plugin/api.rb +81 -0
- data/lib/bundler/plugin/api/source.rb +306 -0
- data/lib/bundler/plugin/dsl.rb +53 -0
- data/lib/bundler/plugin/events.rb +61 -0
- data/lib/bundler/plugin/index.rb +165 -0
- data/lib/bundler/plugin/installer.rb +96 -0
- data/lib/bundler/plugin/installer/git.rb +38 -0
- data/lib/bundler/plugin/installer/rubygems.rb +27 -0
- data/lib/bundler/plugin/source_list.rb +27 -0
- data/lib/bundler/process_lock.rb +24 -0
- data/lib/bundler/psyched_yaml.rb +37 -0
- data/lib/bundler/remote_specification.rb +114 -0
- data/lib/bundler/resolver.rb +373 -0
- data/lib/bundler/resolver/spec_group.rb +106 -0
- data/lib/bundler/retry.rb +66 -0
- data/lib/bundler/ruby_dsl.rb +18 -0
- data/lib/bundler/ruby_version.rb +152 -0
- data/lib/bundler/rubygems_ext.rb +209 -0
- data/lib/bundler/rubygems_gem_installer.rb +99 -0
- data/lib/bundler/rubygems_integration.rb +915 -0
- data/lib/bundler/runtime.rb +322 -0
- data/lib/bundler/settings.rb +464 -0
- data/lib/bundler/settings/validator.rb +102 -0
- data/lib/bundler/setup.rb +28 -0
- data/lib/bundler/shared_helpers.rb +386 -0
- data/lib/bundler/similarity_detector.rb +63 -0
- data/lib/bundler/source.rb +94 -0
- data/lib/bundler/source/gemspec.rb +18 -0
- data/lib/bundler/source/git.rb +329 -0
- data/lib/bundler/source/git/git_proxy.rb +262 -0
- data/lib/bundler/source/metadata.rb +62 -0
- data/lib/bundler/source/path.rb +249 -0
- data/lib/bundler/source/path/installer.rb +74 -0
- data/lib/bundler/source/rubygems.rb +539 -0
- data/lib/bundler/source/rubygems/remote.rb +69 -0
- data/lib/bundler/source_list.rb +186 -0
- data/lib/bundler/spec_set.rb +208 -0
- data/lib/bundler/ssl_certs/.document +1 -0
- data/lib/bundler/ssl_certs/certificate_manager.rb +66 -0
- data/lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +21 -0
- data/lib/bundler/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +23 -0
- data/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +25 -0
- data/lib/bundler/stub_specification.rb +108 -0
- data/lib/bundler/templates/.document +1 -0
- data/lib/bundler/templates/Executable +29 -0
- data/lib/bundler/templates/Executable.bundler +105 -0
- data/lib/bundler/templates/Executable.standalone +14 -0
- data/lib/bundler/templates/Gemfile +7 -0
- data/lib/bundler/templates/gems.rb +8 -0
- data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +74 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
- data/lib/bundler/templates/newgem/LICENSE.txt.tt +21 -0
- data/lib/bundler/templates/newgem/README.md.tt +47 -0
- data/lib/bundler/templates/newgem/Rakefile.tt +29 -0
- data/lib/bundler/templates/newgem/bin/console.tt +14 -0
- data/lib/bundler/templates/newgem/bin/setup.tt +8 -0
- data/lib/bundler/templates/newgem/exe/newgem.tt +3 -0
- data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +3 -0
- data/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
- data/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
- data/lib/bundler/templates/newgem/gitignore.tt +20 -0
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +13 -0
- data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +50 -0
- data/lib/bundler/templates/newgem/rspec.tt +3 -0
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +9 -0
- data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +14 -0
- data/lib/bundler/templates/newgem/test/newgem_test.rb.tt +11 -0
- data/lib/bundler/templates/newgem/test/test_helper.rb.tt +8 -0
- data/lib/bundler/templates/newgem/travis.yml.tt +7 -0
- data/lib/bundler/ui.rb +9 -0
- data/lib/bundler/ui/rg_proxy.rb +19 -0
- data/lib/bundler/ui/shell.rb +146 -0
- data/lib/bundler/ui/silent.rb +69 -0
- data/lib/bundler/uri_credentials_filter.rb +37 -0
- data/lib/bundler/vendor/fileutils/lib/fileutils.rb +1741 -0
- data/lib/bundler/vendor/fileutils/lib/fileutils/version.rb +5 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo.rb +12 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +26 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +57 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +81 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +223 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +36 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +66 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +62 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +63 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +61 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +126 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +46 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +36 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +136 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +143 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +6 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +101 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +67 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +837 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +46 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +58 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/faster.rb +27 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +1233 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb +129 -0
- data/lib/bundler/vendor/thor/lib/thor.rb +509 -0
- data/lib/bundler/vendor/thor/lib/thor/actions.rb +331 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +104 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +60 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +118 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +143 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +373 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +109 -0
- data/lib/bundler/vendor/thor/lib/thor/base.rb +678 -0
- data/lib/bundler/vendor/thor/lib/thor/command.rb +135 -0
- data/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +97 -0
- data/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +12 -0
- data/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +129 -0
- data/lib/bundler/vendor/thor/lib/thor/error.rb +114 -0
- data/lib/bundler/vendor/thor/lib/thor/group.rb +281 -0
- data/lib/bundler/vendor/thor/lib/thor/invocation.rb +177 -0
- data/lib/bundler/vendor/thor/lib/thor/line_editor.rb +17 -0
- data/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +37 -0
- data/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +88 -0
- data/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +70 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +175 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/option.rb +146 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +226 -0
- data/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +71 -0
- data/lib/bundler/vendor/thor/lib/thor/runner.rb +324 -0
- data/lib/bundler/vendor/thor/lib/thor/shell.rb +81 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +482 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/color.rb +149 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/html.rb +126 -0
- data/lib/bundler/vendor/thor/lib/thor/util.rb +268 -0
- data/lib/bundler/vendor/thor/lib/thor/version.rb +3 -0
- data/lib/bundler/vendored_fileutils.rb +9 -0
- data/lib/bundler/vendored_molinillo.rb +4 -0
- data/lib/bundler/vendored_persistent.rb +52 -0
- data/lib/bundler/vendored_thor.rb +8 -0
- data/lib/bundler/version.rb +28 -0
- data/lib/bundler/version_ranges.rb +76 -0
- data/lib/bundler/vlad.rb +17 -0
- data/lib/bundler/worker.rb +106 -0
- data/lib/bundler/yaml_serializer.rb +90 -0
- data/man/bundle-add.1 +58 -0
- data/man/bundle-add.1.txt +52 -0
- data/man/bundle-add.ronn +40 -0
- data/man/bundle-binstubs.1 +40 -0
- data/man/bundle-binstubs.1.txt +48 -0
- data/man/bundle-binstubs.ronn +43 -0
- data/man/bundle-check.1 +31 -0
- data/man/bundle-check.1.txt +33 -0
- data/man/bundle-check.ronn +26 -0
- data/man/bundle-clean.1 +24 -0
- data/man/bundle-clean.1.txt +26 -0
- data/man/bundle-clean.ronn +18 -0
- data/man/bundle-config.1 +497 -0
- data/man/bundle-config.1.txt +529 -0
- data/man/bundle-config.ronn +397 -0
- data/man/bundle-doctor.1 +44 -0
- data/man/bundle-doctor.1.txt +44 -0
- data/man/bundle-doctor.ronn +33 -0
- data/man/bundle-exec.1 +165 -0
- data/man/bundle-exec.1.txt +178 -0
- data/man/bundle-exec.ronn +152 -0
- data/man/bundle-gem.1 +80 -0
- data/man/bundle-gem.1.txt +91 -0
- data/man/bundle-gem.ronn +78 -0
- data/man/bundle-info.1 +20 -0
- data/man/bundle-info.1.txt +21 -0
- data/man/bundle-info.ronn +17 -0
- data/man/bundle-init.1 +25 -0
- data/man/bundle-init.1.txt +34 -0
- data/man/bundle-init.ronn +29 -0
- data/man/bundle-inject.1 +33 -0
- data/man/bundle-inject.1.txt +32 -0
- data/man/bundle-inject.ronn +22 -0
- data/man/bundle-install.1 +308 -0
- data/man/bundle-install.1.txt +396 -0
- data/man/bundle-install.ronn +378 -0
- data/man/bundle-list.1 +50 -0
- data/man/bundle-list.1.txt +43 -0
- data/man/bundle-list.ronn +33 -0
- data/man/bundle-lock.1 +84 -0
- data/man/bundle-lock.1.txt +93 -0
- data/man/bundle-lock.ronn +94 -0
- data/man/bundle-open.1 +32 -0
- data/man/bundle-open.1.txt +29 -0
- data/man/bundle-open.ronn +19 -0
- data/man/bundle-outdated.1 +155 -0
- data/man/bundle-outdated.1.txt +131 -0
- data/man/bundle-outdated.ronn +111 -0
- data/man/bundle-package.1 +55 -0
- data/man/bundle-package.1.txt +79 -0
- data/man/bundle-package.ronn +72 -0
- data/man/bundle-platform.1 +61 -0
- data/man/bundle-platform.1.txt +57 -0
- data/man/bundle-platform.ronn +42 -0
- data/man/bundle-pristine.1 +34 -0
- data/man/bundle-pristine.1.txt +44 -0
- data/man/bundle-pristine.ronn +34 -0
- data/man/bundle-remove.1 +31 -0
- data/man/bundle-remove.1.txt +34 -0
- data/man/bundle-remove.ronn +23 -0
- data/man/bundle-show.1 +23 -0
- data/man/bundle-show.1.txt +27 -0
- data/man/bundle-show.ronn +21 -0
- data/man/bundle-update.1 +394 -0
- data/man/bundle-update.1.txt +391 -0
- data/man/bundle-update.ronn +350 -0
- data/man/bundle-viz.1 +39 -0
- data/man/bundle-viz.1.txt +39 -0
- data/man/bundle-viz.ronn +30 -0
- data/man/bundle.1 +136 -0
- data/man/bundle.1.txt +116 -0
- data/man/bundle.ronn +111 -0
- data/man/gemfile.5 +689 -0
- data/man/gemfile.5.ronn +521 -0
- data/man/gemfile.5.txt +653 -0
- data/man/index.txt +25 -0
- metadata +463 -0
@@ -0,0 +1,129 @@
|
|
1
|
+
##
|
2
|
+
# This Net::HTTP subclass adds SSL session reuse and Server Name Indication
|
3
|
+
# (SNI) RFC 3546.
|
4
|
+
#
|
5
|
+
# DO NOT DEPEND UPON THIS CLASS
|
6
|
+
#
|
7
|
+
# This class is an implementation detail and is subject to change or removal
|
8
|
+
# at any time.
|
9
|
+
|
10
|
+
class Bundler::Persistent::Net::HTTP::Persistent::SSLReuse < Net::HTTP
|
11
|
+
|
12
|
+
@is_proxy_class = false
|
13
|
+
@proxy_addr = nil
|
14
|
+
@proxy_port = nil
|
15
|
+
@proxy_user = nil
|
16
|
+
@proxy_pass = nil
|
17
|
+
|
18
|
+
def initialize address, port = nil # :nodoc:
|
19
|
+
super
|
20
|
+
|
21
|
+
@ssl_session = nil
|
22
|
+
end
|
23
|
+
|
24
|
+
##
|
25
|
+
# From ruby trunk r33086 including http://redmine.ruby-lang.org/issues/5341
|
26
|
+
|
27
|
+
def connect # :nodoc:
|
28
|
+
D "opening connection to #{conn_address()}..."
|
29
|
+
s = timeout(@open_timeout) { TCPSocket.open(conn_address(), conn_port()) }
|
30
|
+
D "opened"
|
31
|
+
if use_ssl?
|
32
|
+
ssl_parameters = Hash.new
|
33
|
+
iv_list = instance_variables
|
34
|
+
SSL_ATTRIBUTES.each do |name|
|
35
|
+
ivname = "@#{name}".intern
|
36
|
+
if iv_list.include?(ivname) and
|
37
|
+
value = instance_variable_get(ivname)
|
38
|
+
ssl_parameters[name] = value
|
39
|
+
end
|
40
|
+
end
|
41
|
+
unless @ssl_context then
|
42
|
+
@ssl_context = OpenSSL::SSL::SSLContext.new
|
43
|
+
@ssl_context.set_params(ssl_parameters)
|
44
|
+
end
|
45
|
+
s = OpenSSL::SSL::SSLSocket.new(s, @ssl_context)
|
46
|
+
s.sync_close = true
|
47
|
+
end
|
48
|
+
@socket = Net::BufferedIO.new(s)
|
49
|
+
@socket.read_timeout = @read_timeout
|
50
|
+
@socket.continue_timeout = @continue_timeout if
|
51
|
+
@socket.respond_to? :continue_timeout
|
52
|
+
@socket.debug_output = @debug_output
|
53
|
+
if use_ssl?
|
54
|
+
begin
|
55
|
+
if proxy?
|
56
|
+
@socket.writeline sprintf('CONNECT %s:%s HTTP/%s',
|
57
|
+
@address, @port, HTTPVersion)
|
58
|
+
@socket.writeline "Host: #{@address}:#{@port}"
|
59
|
+
if proxy_user
|
60
|
+
credential = ["#{proxy_user}:#{proxy_pass}"].pack('m')
|
61
|
+
credential.delete!("\r\n")
|
62
|
+
@socket.writeline "Proxy-Authorization: Basic #{credential}"
|
63
|
+
end
|
64
|
+
@socket.writeline ''
|
65
|
+
Net::HTTPResponse.read_new(@socket).value
|
66
|
+
end
|
67
|
+
s.session = @ssl_session if @ssl_session
|
68
|
+
# Server Name Indication (SNI) RFC 3546
|
69
|
+
s.hostname = @address if s.respond_to? :hostname=
|
70
|
+
timeout(@open_timeout) { s.connect }
|
71
|
+
if @ssl_context.verify_mode != OpenSSL::SSL::VERIFY_NONE
|
72
|
+
s.post_connection_check(@address)
|
73
|
+
end
|
74
|
+
@ssl_session = s.session
|
75
|
+
rescue => exception
|
76
|
+
D "Conn close because of connect error #{exception}"
|
77
|
+
@socket.close if @socket and not @socket.closed?
|
78
|
+
raise exception
|
79
|
+
end
|
80
|
+
end
|
81
|
+
on_connect
|
82
|
+
end if RUBY_VERSION > '1.9'
|
83
|
+
|
84
|
+
##
|
85
|
+
# From ruby_1_8_7 branch r29865 including a modified
|
86
|
+
# http://redmine.ruby-lang.org/issues/5341
|
87
|
+
|
88
|
+
def connect # :nodoc:
|
89
|
+
D "opening connection to #{conn_address()}..."
|
90
|
+
s = timeout(@open_timeout) { TCPSocket.open(conn_address(), conn_port()) }
|
91
|
+
D "opened"
|
92
|
+
if use_ssl?
|
93
|
+
unless @ssl_context.verify_mode
|
94
|
+
warn "warning: peer certificate won't be verified in this SSL session"
|
95
|
+
@ssl_context.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
96
|
+
end
|
97
|
+
s = OpenSSL::SSL::SSLSocket.new(s, @ssl_context)
|
98
|
+
s.sync_close = true
|
99
|
+
end
|
100
|
+
@socket = Net::BufferedIO.new(s)
|
101
|
+
@socket.read_timeout = @read_timeout
|
102
|
+
@socket.debug_output = @debug_output
|
103
|
+
if use_ssl?
|
104
|
+
if proxy?
|
105
|
+
@socket.writeline sprintf('CONNECT %s:%s HTTP/%s',
|
106
|
+
@address, @port, HTTPVersion)
|
107
|
+
@socket.writeline "Host: #{@address}:#{@port}"
|
108
|
+
if proxy_user
|
109
|
+
credential = ["#{proxy_user}:#{proxy_pass}"].pack('m')
|
110
|
+
credential.delete!("\r\n")
|
111
|
+
@socket.writeline "Proxy-Authorization: Basic #{credential}"
|
112
|
+
end
|
113
|
+
@socket.writeline ''
|
114
|
+
Net::HTTPResponse.read_new(@socket).value
|
115
|
+
end
|
116
|
+
s.session = @ssl_session if @ssl_session
|
117
|
+
s.connect
|
118
|
+
if @ssl_context.verify_mode != OpenSSL::SSL::VERIFY_NONE
|
119
|
+
s.post_connection_check(@address)
|
120
|
+
end
|
121
|
+
@ssl_session = s.session
|
122
|
+
end
|
123
|
+
on_connect
|
124
|
+
end if RUBY_VERSION < '1.9'
|
125
|
+
|
126
|
+
private :connect
|
127
|
+
|
128
|
+
end
|
129
|
+
|
@@ -0,0 +1,509 @@
|
|
1
|
+
require "set"
|
2
|
+
require "bundler/vendor/thor/lib/thor/base"
|
3
|
+
|
4
|
+
class Bundler::Thor
|
5
|
+
class << self
|
6
|
+
# Allows for custom "Command" package naming.
|
7
|
+
#
|
8
|
+
# === Parameters
|
9
|
+
# name<String>
|
10
|
+
# options<Hash>
|
11
|
+
#
|
12
|
+
def package_name(name, _ = {})
|
13
|
+
@package_name = name.nil? || name == "" ? nil : name
|
14
|
+
end
|
15
|
+
|
16
|
+
# Sets the default command when thor is executed without an explicit command to be called.
|
17
|
+
#
|
18
|
+
# ==== Parameters
|
19
|
+
# meth<Symbol>:: name of the default command
|
20
|
+
#
|
21
|
+
def default_command(meth = nil)
|
22
|
+
if meth
|
23
|
+
@default_command = meth == :none ? "help" : meth.to_s
|
24
|
+
else
|
25
|
+
@default_command ||= from_superclass(:default_command, "help")
|
26
|
+
end
|
27
|
+
end
|
28
|
+
alias_method :default_task, :default_command
|
29
|
+
|
30
|
+
# Registers another Bundler::Thor subclass as a command.
|
31
|
+
#
|
32
|
+
# ==== Parameters
|
33
|
+
# klass<Class>:: Bundler::Thor subclass to register
|
34
|
+
# command<String>:: Subcommand name to use
|
35
|
+
# usage<String>:: Short usage for the subcommand
|
36
|
+
# description<String>:: Description for the subcommand
|
37
|
+
def register(klass, subcommand_name, usage, description, options = {})
|
38
|
+
if klass <= Bundler::Thor::Group
|
39
|
+
desc usage, description, options
|
40
|
+
define_method(subcommand_name) { |*args| invoke(klass, args) }
|
41
|
+
else
|
42
|
+
desc usage, description, options
|
43
|
+
subcommand subcommand_name, klass
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
# Defines the usage and the description of the next command.
|
48
|
+
#
|
49
|
+
# ==== Parameters
|
50
|
+
# usage<String>
|
51
|
+
# description<String>
|
52
|
+
# options<String>
|
53
|
+
#
|
54
|
+
def desc(usage, description, options = {})
|
55
|
+
if options[:for]
|
56
|
+
command = find_and_refresh_command(options[:for])
|
57
|
+
command.usage = usage if usage
|
58
|
+
command.description = description if description
|
59
|
+
else
|
60
|
+
@usage = usage
|
61
|
+
@desc = description
|
62
|
+
@hide = options[:hide] || false
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
# Defines the long description of the next command.
|
67
|
+
#
|
68
|
+
# ==== Parameters
|
69
|
+
# long description<String>
|
70
|
+
#
|
71
|
+
def long_desc(long_description, options = {})
|
72
|
+
if options[:for]
|
73
|
+
command = find_and_refresh_command(options[:for])
|
74
|
+
command.long_description = long_description if long_description
|
75
|
+
else
|
76
|
+
@long_desc = long_description
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
# Maps an input to a command. If you define:
|
81
|
+
#
|
82
|
+
# map "-T" => "list"
|
83
|
+
#
|
84
|
+
# Running:
|
85
|
+
#
|
86
|
+
# thor -T
|
87
|
+
#
|
88
|
+
# Will invoke the list command.
|
89
|
+
#
|
90
|
+
# ==== Parameters
|
91
|
+
# Hash[String|Array => Symbol]:: Maps the string or the strings in the array to the given command.
|
92
|
+
#
|
93
|
+
def map(mappings = nil)
|
94
|
+
@map ||= from_superclass(:map, {})
|
95
|
+
|
96
|
+
if mappings
|
97
|
+
mappings.each do |key, value|
|
98
|
+
if key.respond_to?(:each)
|
99
|
+
key.each { |subkey| @map[subkey] = value }
|
100
|
+
else
|
101
|
+
@map[key] = value
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
@map
|
107
|
+
end
|
108
|
+
|
109
|
+
# Declares the options for the next command to be declared.
|
110
|
+
#
|
111
|
+
# ==== Parameters
|
112
|
+
# Hash[Symbol => Object]:: The hash key is the name of the option and the value
|
113
|
+
# is the type of the option. Can be :string, :array, :hash, :boolean, :numeric
|
114
|
+
# or :required (string). If you give a value, the type of the value is used.
|
115
|
+
#
|
116
|
+
def method_options(options = nil)
|
117
|
+
@method_options ||= {}
|
118
|
+
build_options(options, @method_options) if options
|
119
|
+
@method_options
|
120
|
+
end
|
121
|
+
|
122
|
+
alias_method :options, :method_options
|
123
|
+
|
124
|
+
# Adds an option to the set of method options. If :for is given as option,
|
125
|
+
# it allows you to change the options from a previous defined command.
|
126
|
+
#
|
127
|
+
# def previous_command
|
128
|
+
# # magic
|
129
|
+
# end
|
130
|
+
#
|
131
|
+
# method_option :foo => :bar, :for => :previous_command
|
132
|
+
#
|
133
|
+
# def next_command
|
134
|
+
# # magic
|
135
|
+
# end
|
136
|
+
#
|
137
|
+
# ==== Parameters
|
138
|
+
# name<Symbol>:: The name of the argument.
|
139
|
+
# options<Hash>:: Described below.
|
140
|
+
#
|
141
|
+
# ==== Options
|
142
|
+
# :desc - Description for the argument.
|
143
|
+
# :required - If the argument is required or not.
|
144
|
+
# :default - Default value for this argument. It cannot be required and have default values.
|
145
|
+
# :aliases - Aliases for this option.
|
146
|
+
# :type - The type of the argument, can be :string, :hash, :array, :numeric or :boolean.
|
147
|
+
# :banner - String to show on usage notes.
|
148
|
+
# :hide - If you want to hide this option from the help.
|
149
|
+
#
|
150
|
+
def method_option(name, options = {})
|
151
|
+
scope = if options[:for]
|
152
|
+
find_and_refresh_command(options[:for]).options
|
153
|
+
else
|
154
|
+
method_options
|
155
|
+
end
|
156
|
+
|
157
|
+
build_option(name, options, scope)
|
158
|
+
end
|
159
|
+
alias_method :option, :method_option
|
160
|
+
|
161
|
+
# Prints help information for the given command.
|
162
|
+
#
|
163
|
+
# ==== Parameters
|
164
|
+
# shell<Bundler::Thor::Shell>
|
165
|
+
# command_name<String>
|
166
|
+
#
|
167
|
+
def command_help(shell, command_name)
|
168
|
+
meth = normalize_command_name(command_name)
|
169
|
+
command = all_commands[meth]
|
170
|
+
handle_no_command_error(meth) unless command
|
171
|
+
|
172
|
+
shell.say "Usage:"
|
173
|
+
shell.say " #{banner(command)}"
|
174
|
+
shell.say
|
175
|
+
class_options_help(shell, nil => command.options.values)
|
176
|
+
if command.long_description
|
177
|
+
shell.say "Description:"
|
178
|
+
shell.print_wrapped(command.long_description, :indent => 2)
|
179
|
+
else
|
180
|
+
shell.say command.description
|
181
|
+
end
|
182
|
+
end
|
183
|
+
alias_method :task_help, :command_help
|
184
|
+
|
185
|
+
# Prints help information for this class.
|
186
|
+
#
|
187
|
+
# ==== Parameters
|
188
|
+
# shell<Bundler::Thor::Shell>
|
189
|
+
#
|
190
|
+
def help(shell, subcommand = false)
|
191
|
+
list = printable_commands(true, subcommand)
|
192
|
+
Bundler::Thor::Util.thor_classes_in(self).each do |klass|
|
193
|
+
list += klass.printable_commands(false)
|
194
|
+
end
|
195
|
+
list.sort! { |a, b| a[0] <=> b[0] }
|
196
|
+
|
197
|
+
if defined?(@package_name) && @package_name
|
198
|
+
shell.say "#{@package_name} commands:"
|
199
|
+
else
|
200
|
+
shell.say "Commands:"
|
201
|
+
end
|
202
|
+
|
203
|
+
shell.print_table(list, :indent => 2, :truncate => true)
|
204
|
+
shell.say
|
205
|
+
class_options_help(shell)
|
206
|
+
end
|
207
|
+
|
208
|
+
# Returns commands ready to be printed.
|
209
|
+
def printable_commands(all = true, subcommand = false)
|
210
|
+
(all ? all_commands : commands).map do |_, command|
|
211
|
+
next if command.hidden?
|
212
|
+
item = []
|
213
|
+
item << banner(command, false, subcommand)
|
214
|
+
item << (command.description ? "# #{command.description.gsub(/\s+/m, ' ')}" : "")
|
215
|
+
item
|
216
|
+
end.compact
|
217
|
+
end
|
218
|
+
alias_method :printable_tasks, :printable_commands
|
219
|
+
|
220
|
+
def subcommands
|
221
|
+
@subcommands ||= from_superclass(:subcommands, [])
|
222
|
+
end
|
223
|
+
alias_method :subtasks, :subcommands
|
224
|
+
|
225
|
+
def subcommand_classes
|
226
|
+
@subcommand_classes ||= {}
|
227
|
+
end
|
228
|
+
|
229
|
+
def subcommand(subcommand, subcommand_class)
|
230
|
+
subcommands << subcommand.to_s
|
231
|
+
subcommand_class.subcommand_help subcommand
|
232
|
+
subcommand_classes[subcommand.to_s] = subcommand_class
|
233
|
+
|
234
|
+
define_method(subcommand) do |*args|
|
235
|
+
args, opts = Bundler::Thor::Arguments.split(args)
|
236
|
+
invoke_args = [args, opts, {:invoked_via_subcommand => true, :class_options => options}]
|
237
|
+
invoke_args.unshift "help" if opts.delete("--help") || opts.delete("-h")
|
238
|
+
invoke subcommand_class, *invoke_args
|
239
|
+
end
|
240
|
+
subcommand_class.commands.each do |_meth, command|
|
241
|
+
command.ancestor_name = subcommand
|
242
|
+
end
|
243
|
+
end
|
244
|
+
alias_method :subtask, :subcommand
|
245
|
+
|
246
|
+
# Extend check unknown options to accept a hash of conditions.
|
247
|
+
#
|
248
|
+
# === Parameters
|
249
|
+
# options<Hash>: A hash containing :only and/or :except keys
|
250
|
+
def check_unknown_options!(options = {})
|
251
|
+
@check_unknown_options ||= {}
|
252
|
+
options.each do |key, value|
|
253
|
+
if value
|
254
|
+
@check_unknown_options[key] = Array(value)
|
255
|
+
else
|
256
|
+
@check_unknown_options.delete(key)
|
257
|
+
end
|
258
|
+
end
|
259
|
+
@check_unknown_options
|
260
|
+
end
|
261
|
+
|
262
|
+
# Overwrite check_unknown_options? to take subcommands and options into account.
|
263
|
+
def check_unknown_options?(config) #:nodoc:
|
264
|
+
options = check_unknown_options
|
265
|
+
return false unless options
|
266
|
+
|
267
|
+
command = config[:current_command]
|
268
|
+
return true unless command
|
269
|
+
|
270
|
+
name = command.name
|
271
|
+
|
272
|
+
if subcommands.include?(name)
|
273
|
+
false
|
274
|
+
elsif options[:except]
|
275
|
+
!options[:except].include?(name.to_sym)
|
276
|
+
elsif options[:only]
|
277
|
+
options[:only].include?(name.to_sym)
|
278
|
+
else
|
279
|
+
true
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
# Stop parsing of options as soon as an unknown option or a regular
|
284
|
+
# argument is encountered. All remaining arguments are passed to the command.
|
285
|
+
# This is useful if you have a command that can receive arbitrary additional
|
286
|
+
# options, and where those additional options should not be handled by
|
287
|
+
# Bundler::Thor.
|
288
|
+
#
|
289
|
+
# ==== Example
|
290
|
+
#
|
291
|
+
# To better understand how this is useful, let's consider a command that calls
|
292
|
+
# an external command. A user may want to pass arbitrary options and
|
293
|
+
# arguments to that command. The command itself also accepts some options,
|
294
|
+
# which should be handled by Bundler::Thor.
|
295
|
+
#
|
296
|
+
# class_option "verbose", :type => :boolean
|
297
|
+
# stop_on_unknown_option! :exec
|
298
|
+
# check_unknown_options! :except => :exec
|
299
|
+
#
|
300
|
+
# desc "exec", "Run a shell command"
|
301
|
+
# def exec(*args)
|
302
|
+
# puts "diagnostic output" if options[:verbose]
|
303
|
+
# Kernel.exec(*args)
|
304
|
+
# end
|
305
|
+
#
|
306
|
+
# Here +exec+ can be called with +--verbose+ to get diagnostic output,
|
307
|
+
# e.g.:
|
308
|
+
#
|
309
|
+
# $ thor exec --verbose echo foo
|
310
|
+
# diagnostic output
|
311
|
+
# foo
|
312
|
+
#
|
313
|
+
# But if +--verbose+ is given after +echo+, it is passed to +echo+ instead:
|
314
|
+
#
|
315
|
+
# $ thor exec echo --verbose foo
|
316
|
+
# --verbose foo
|
317
|
+
#
|
318
|
+
# ==== Parameters
|
319
|
+
# Symbol ...:: A list of commands that should be affected.
|
320
|
+
def stop_on_unknown_option!(*command_names)
|
321
|
+
stop_on_unknown_option.merge(command_names)
|
322
|
+
end
|
323
|
+
|
324
|
+
def stop_on_unknown_option?(command) #:nodoc:
|
325
|
+
command && stop_on_unknown_option.include?(command.name.to_sym)
|
326
|
+
end
|
327
|
+
|
328
|
+
# Disable the check for required options for the given commands.
|
329
|
+
# This is useful if you have a command that does not need the required options
|
330
|
+
# to work, like help.
|
331
|
+
#
|
332
|
+
# ==== Parameters
|
333
|
+
# Symbol ...:: A list of commands that should be affected.
|
334
|
+
def disable_required_check!(*command_names)
|
335
|
+
disable_required_check.merge(command_names)
|
336
|
+
end
|
337
|
+
|
338
|
+
def disable_required_check?(command) #:nodoc:
|
339
|
+
command && disable_required_check.include?(command.name.to_sym)
|
340
|
+
end
|
341
|
+
|
342
|
+
protected
|
343
|
+
|
344
|
+
def stop_on_unknown_option #:nodoc:
|
345
|
+
@stop_on_unknown_option ||= Set.new
|
346
|
+
end
|
347
|
+
|
348
|
+
# help command has the required check disabled by default.
|
349
|
+
def disable_required_check #:nodoc:
|
350
|
+
@disable_required_check ||= Set.new([:help])
|
351
|
+
end
|
352
|
+
|
353
|
+
# The method responsible for dispatching given the args.
|
354
|
+
def dispatch(meth, given_args, given_opts, config) #:nodoc: # rubocop:disable MethodLength
|
355
|
+
meth ||= retrieve_command_name(given_args)
|
356
|
+
command = all_commands[normalize_command_name(meth)]
|
357
|
+
|
358
|
+
if !command && config[:invoked_via_subcommand]
|
359
|
+
# We're a subcommand and our first argument didn't match any of our
|
360
|
+
# commands. So we put it back and call our default command.
|
361
|
+
given_args.unshift(meth)
|
362
|
+
command = all_commands[normalize_command_name(default_command)]
|
363
|
+
end
|
364
|
+
|
365
|
+
if command
|
366
|
+
args, opts = Bundler::Thor::Options.split(given_args)
|
367
|
+
if stop_on_unknown_option?(command) && !args.empty?
|
368
|
+
# given_args starts with a non-option, so we treat everything as
|
369
|
+
# ordinary arguments
|
370
|
+
args.concat opts
|
371
|
+
opts.clear
|
372
|
+
end
|
373
|
+
else
|
374
|
+
args = given_args
|
375
|
+
opts = nil
|
376
|
+
command = dynamic_command_class.new(meth)
|
377
|
+
end
|
378
|
+
|
379
|
+
opts = given_opts || opts || []
|
380
|
+
config[:current_command] = command
|
381
|
+
config[:command_options] = command.options
|
382
|
+
|
383
|
+
instance = new(args, opts, config)
|
384
|
+
yield instance if block_given?
|
385
|
+
args = instance.args
|
386
|
+
trailing = args[Range.new(arguments.size, -1)]
|
387
|
+
instance.invoke_command(command, trailing || [])
|
388
|
+
end
|
389
|
+
|
390
|
+
# The banner for this class. You can customize it if you are invoking the
|
391
|
+
# thor class by another ways which is not the Bundler::Thor::Runner. It receives
|
392
|
+
# the command that is going to be invoked and a boolean which indicates if
|
393
|
+
# the namespace should be displayed as arguments.
|
394
|
+
#
|
395
|
+
def banner(command, namespace = nil, subcommand = false)
|
396
|
+
"#{basename} #{command.formatted_usage(self, $thor_runner, subcommand)}"
|
397
|
+
end
|
398
|
+
|
399
|
+
def baseclass #:nodoc:
|
400
|
+
Bundler::Thor
|
401
|
+
end
|
402
|
+
|
403
|
+
def dynamic_command_class #:nodoc:
|
404
|
+
Bundler::Thor::DynamicCommand
|
405
|
+
end
|
406
|
+
|
407
|
+
def create_command(meth) #:nodoc:
|
408
|
+
@usage ||= nil
|
409
|
+
@desc ||= nil
|
410
|
+
@long_desc ||= nil
|
411
|
+
@hide ||= nil
|
412
|
+
|
413
|
+
if @usage && @desc
|
414
|
+
base_class = @hide ? Bundler::Thor::HiddenCommand : Bundler::Thor::Command
|
415
|
+
commands[meth] = base_class.new(meth, @desc, @long_desc, @usage, method_options)
|
416
|
+
@usage, @desc, @long_desc, @method_options, @hide = nil
|
417
|
+
true
|
418
|
+
elsif all_commands[meth] || meth == "method_missing"
|
419
|
+
true
|
420
|
+
else
|
421
|
+
puts "[WARNING] Attempted to create command #{meth.inspect} without usage or description. " \
|
422
|
+
"Call desc if you want this method to be available as command or declare it inside a " \
|
423
|
+
"no_commands{} block. Invoked from #{caller[1].inspect}."
|
424
|
+
false
|
425
|
+
end
|
426
|
+
end
|
427
|
+
alias_method :create_task, :create_command
|
428
|
+
|
429
|
+
def initialize_added #:nodoc:
|
430
|
+
class_options.merge!(method_options)
|
431
|
+
@method_options = nil
|
432
|
+
end
|
433
|
+
|
434
|
+
# Retrieve the command name from given args.
|
435
|
+
def retrieve_command_name(args) #:nodoc:
|
436
|
+
meth = args.first.to_s unless args.empty?
|
437
|
+
args.shift if meth && (map[meth] || meth !~ /^\-/)
|
438
|
+
end
|
439
|
+
alias_method :retrieve_task_name, :retrieve_command_name
|
440
|
+
|
441
|
+
# receives a (possibly nil) command name and returns a name that is in
|
442
|
+
# the commands hash. In addition to normalizing aliases, this logic
|
443
|
+
# will determine if a shortened command is an unambiguous substring of
|
444
|
+
# a command or alias.
|
445
|
+
#
|
446
|
+
# +normalize_command_name+ also converts names like +animal-prison+
|
447
|
+
# into +animal_prison+.
|
448
|
+
def normalize_command_name(meth) #:nodoc:
|
449
|
+
return default_command.to_s.tr("-", "_") unless meth
|
450
|
+
|
451
|
+
possibilities = find_command_possibilities(meth)
|
452
|
+
raise AmbiguousTaskError, "Ambiguous command #{meth} matches [#{possibilities.join(', ')}]" if possibilities.size > 1
|
453
|
+
|
454
|
+
if possibilities.empty?
|
455
|
+
meth ||= default_command
|
456
|
+
elsif map[meth]
|
457
|
+
meth = map[meth]
|
458
|
+
else
|
459
|
+
meth = possibilities.first
|
460
|
+
end
|
461
|
+
|
462
|
+
meth.to_s.tr("-", "_") # treat foo-bar as foo_bar
|
463
|
+
end
|
464
|
+
alias_method :normalize_task_name, :normalize_command_name
|
465
|
+
|
466
|
+
# this is the logic that takes the command name passed in by the user
|
467
|
+
# and determines whether it is an unambiguous substrings of a command or
|
468
|
+
# alias name.
|
469
|
+
def find_command_possibilities(meth)
|
470
|
+
len = meth.to_s.length
|
471
|
+
possibilities = all_commands.merge(map).keys.select { |n| meth == n[0, len] }.sort
|
472
|
+
unique_possibilities = possibilities.map { |k| map[k] || k }.uniq
|
473
|
+
|
474
|
+
if possibilities.include?(meth)
|
475
|
+
[meth]
|
476
|
+
elsif unique_possibilities.size == 1
|
477
|
+
unique_possibilities
|
478
|
+
else
|
479
|
+
possibilities
|
480
|
+
end
|
481
|
+
end
|
482
|
+
alias_method :find_task_possibilities, :find_command_possibilities
|
483
|
+
|
484
|
+
def subcommand_help(cmd)
|
485
|
+
desc "help [COMMAND]", "Describe subcommands or one specific subcommand"
|
486
|
+
class_eval "
|
487
|
+
def help(command = nil, subcommand = true); super; end
|
488
|
+
"
|
489
|
+
end
|
490
|
+
alias_method :subtask_help, :subcommand_help
|
491
|
+
end
|
492
|
+
|
493
|
+
include Bundler::Thor::Base
|
494
|
+
|
495
|
+
map HELP_MAPPINGS => :help
|
496
|
+
|
497
|
+
desc "help [COMMAND]", "Describe available commands or one specific command"
|
498
|
+
def help(command = nil, subcommand = false)
|
499
|
+
if command
|
500
|
+
if self.class.subcommands.include? command
|
501
|
+
self.class.subcommand_classes[command].help(shell, true)
|
502
|
+
else
|
503
|
+
self.class.command_help(shell, command)
|
504
|
+
end
|
505
|
+
else
|
506
|
+
self.class.help(shell, subcommand)
|
507
|
+
end
|
508
|
+
end
|
509
|
+
end
|