bundler-prehistoric 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +3 -0
- data/.travis.yml +100 -0
- data/CHANGELOG.md +1640 -0
- data/CONTRIBUTING.md +32 -0
- data/DEVELOPMENT.md +117 -0
- data/Gemfile +3 -0
- data/ISSUES.md +96 -0
- data/LICENSE.md +23 -0
- data/README.md +46 -0
- data/Rakefile +256 -0
- data/UPGRADING.md +103 -0
- data/bin/bundle +21 -0
- data/bin/bundle_ruby +56 -0
- data/bin/bundler +21 -0
- data/bundler.gemspec +33 -0
- data/lib/bundler.rb +442 -0
- data/lib/bundler/backports/time.rb +7 -0
- data/lib/bundler/capistrano.rb +16 -0
- data/lib/bundler/cli.rb +395 -0
- data/lib/bundler/cli/binstubs.rb +38 -0
- data/lib/bundler/cli/cache.rb +34 -0
- data/lib/bundler/cli/check.rb +35 -0
- data/lib/bundler/cli/clean.rb +19 -0
- data/lib/bundler/cli/common.rb +54 -0
- data/lib/bundler/cli/config.rb +84 -0
- data/lib/bundler/cli/console.rb +39 -0
- data/lib/bundler/cli/exec.rb +37 -0
- data/lib/bundler/cli/gem.rb +101 -0
- data/lib/bundler/cli/init.rb +33 -0
- data/lib/bundler/cli/inject.rb +33 -0
- data/lib/bundler/cli/install.rb +133 -0
- data/lib/bundler/cli/open.rb +23 -0
- data/lib/bundler/cli/outdated.rb +80 -0
- data/lib/bundler/cli/package.rb +36 -0
- data/lib/bundler/cli/platform.rb +43 -0
- data/lib/bundler/cli/show.rb +48 -0
- data/lib/bundler/cli/update.rb +73 -0
- data/lib/bundler/cli/viz.rb +27 -0
- data/lib/bundler/constants.rb +5 -0
- data/lib/bundler/current_ruby.rb +155 -0
- data/lib/bundler/definition.rb +604 -0
- data/lib/bundler/dep_proxy.rb +43 -0
- data/lib/bundler/dependency.rb +106 -0
- data/lib/bundler/deployment.rb +59 -0
- data/lib/bundler/deprecate.rb +15 -0
- data/lib/bundler/dsl.rb +305 -0
- data/lib/bundler/endpoint_specification.rb +76 -0
- data/lib/bundler/env.rb +56 -0
- data/lib/bundler/environment.rb +42 -0
- data/lib/bundler/fetcher.rb +396 -0
- data/lib/bundler/friendly_errors.rb +42 -0
- data/lib/bundler/gem_helper.rb +169 -0
- data/lib/bundler/gem_helpers.rb +25 -0
- data/lib/bundler/gem_installer.rb +9 -0
- data/lib/bundler/gem_path_manipulation.rb +8 -0
- data/lib/bundler/gem_tasks.rb +2 -0
- data/lib/bundler/graph.rb +169 -0
- data/lib/bundler/index.rb +184 -0
- data/lib/bundler/injector.rb +64 -0
- data/lib/bundler/installer.rb +332 -0
- data/lib/bundler/lazy_specification.rb +83 -0
- data/lib/bundler/lockfile_parser.rb +146 -0
- data/lib/bundler/match_platform.rb +13 -0
- data/lib/bundler/parallel_workers.rb +18 -0
- data/lib/bundler/parallel_workers/thread_worker.rb +30 -0
- data/lib/bundler/parallel_workers/unix_worker.rb +101 -0
- data/lib/bundler/parallel_workers/worker.rb +69 -0
- data/lib/bundler/psyched_yaml.rb +26 -0
- data/lib/bundler/remote_specification.rb +57 -0
- data/lib/bundler/resolver.rb +534 -0
- data/lib/bundler/retry.rb +60 -0
- data/lib/bundler/ruby_dsl.rb +11 -0
- data/lib/bundler/ruby_version.rb +117 -0
- data/lib/bundler/rubygems_ext.rb +171 -0
- data/lib/bundler/rubygems_integration.rb +578 -0
- data/lib/bundler/runtime.rb +310 -0
- data/lib/bundler/settings.rb +176 -0
- data/lib/bundler/setup.rb +23 -0
- data/lib/bundler/shared_helpers.rb +110 -0
- data/lib/bundler/similarity_detector.rb +63 -0
- data/lib/bundler/source.rb +29 -0
- data/lib/bundler/source/git.rb +289 -0
- data/lib/bundler/source/git/git_proxy.rb +158 -0
- data/lib/bundler/source/path.rb +225 -0
- data/lib/bundler/source/path/installer.rb +38 -0
- data/lib/bundler/source/rubygems.rb +334 -0
- data/lib/bundler/source/svn.rb +260 -0
- data/lib/bundler/source/svn/svn_proxy.rb +110 -0
- data/lib/bundler/spec_set.rb +154 -0
- data/lib/bundler/ssl_certs/.document +1 -0
- data/lib/bundler/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem +14 -0
- data/lib/bundler/ssl_certs/DigiCertHighAssuranceEVRootCA.pem +23 -0
- data/lib/bundler/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem +28 -0
- data/lib/bundler/ssl_certs/GeoTrustGlobalCA.pem +20 -0
- data/lib/bundler/ssl_certs/certificate_manager.rb +41 -0
- data/lib/bundler/templates/Executable +16 -0
- data/lib/bundler/templates/Executable.standalone +12 -0
- data/lib/bundler/templates/Gemfile +4 -0
- data/lib/bundler/templates/newgem/.travis.yml.tt +3 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
- data/lib/bundler/templates/newgem/LICENSE.txt.tt +22 -0
- data/lib/bundler/templates/newgem/README.md.tt +31 -0
- data/lib/bundler/templates/newgem/Rakefile.tt +26 -0
- data/lib/bundler/templates/newgem/bin/newgem.tt +3 -0
- data/lib/bundler/templates/newgem/consolerc.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 +16 -0
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +12 -0
- data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +38 -0
- data/lib/bundler/templates/newgem/rspec.tt +2 -0
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +11 -0
- data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
- data/lib/bundler/templates/newgem/test/minitest_helper.rb.tt +4 -0
- data/lib/bundler/templates/newgem/test/test_newgem.rb.tt +11 -0
- data/lib/bundler/ui.rb +7 -0
- data/lib/bundler/ui/rg_proxy.rb +21 -0
- data/lib/bundler/ui/shell.rb +98 -0
- data/lib/bundler/ui/silent.rb +44 -0
- data/lib/bundler/vendor/.document +0 -0
- data/lib/bundler/vendor/net/http/faster.rb +26 -0
- data/lib/bundler/vendor/net/http/persistent.rb +1230 -0
- data/lib/bundler/vendor/net/http/persistent/ssl_reuse.rb +128 -0
- data/lib/bundler/vendor/thor.rb +480 -0
- data/lib/bundler/vendor/thor/actions.rb +319 -0
- data/lib/bundler/vendor/thor/actions/create_file.rb +103 -0
- data/lib/bundler/vendor/thor/actions/create_link.rb +59 -0
- data/lib/bundler/vendor/thor/actions/directory.rb +118 -0
- data/lib/bundler/vendor/thor/actions/empty_directory.rb +135 -0
- data/lib/bundler/vendor/thor/actions/file_manipulation.rb +316 -0
- data/lib/bundler/vendor/thor/actions/inject_into_file.rb +107 -0
- data/lib/bundler/vendor/thor/base.rb +656 -0
- data/lib/bundler/vendor/thor/command.rb +133 -0
- data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +77 -0
- data/lib/bundler/vendor/thor/core_ext/io_binary_read.rb +10 -0
- data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +98 -0
- data/lib/bundler/vendor/thor/error.rb +32 -0
- data/lib/bundler/vendor/thor/group.rb +281 -0
- data/lib/bundler/vendor/thor/invocation.rb +173 -0
- data/lib/bundler/vendor/thor/line_editor.rb +17 -0
- data/lib/bundler/vendor/thor/line_editor/basic.rb +35 -0
- data/lib/bundler/vendor/thor/line_editor/readline.rb +88 -0
- data/lib/bundler/vendor/thor/parser.rb +4 -0
- data/lib/bundler/vendor/thor/parser/argument.rb +73 -0
- data/lib/bundler/vendor/thor/parser/arguments.rb +175 -0
- data/lib/bundler/vendor/thor/parser/option.rb +121 -0
- data/lib/bundler/vendor/thor/parser/options.rb +218 -0
- data/lib/bundler/vendor/thor/rake_compat.rb +71 -0
- data/lib/bundler/vendor/thor/runner.rb +322 -0
- data/lib/bundler/vendor/thor/shell.rb +81 -0
- data/lib/bundler/vendor/thor/shell/basic.rb +420 -0
- data/lib/bundler/vendor/thor/shell/color.rb +149 -0
- data/lib/bundler/vendor/thor/shell/html.rb +126 -0
- data/lib/bundler/vendor/thor/util.rb +267 -0
- data/lib/bundler/vendor/thor/version.rb +3 -0
- data/lib/bundler/vendored_persistent.rb +3 -0
- data/lib/bundler/vendored_thor.rb +8 -0
- data/lib/bundler/version.rb +6 -0
- data/lib/bundler/vlad.rb +11 -0
- data/man/bundle-config.ronn +155 -0
- data/man/bundle-exec.ronn +136 -0
- data/man/bundle-install.ronn +372 -0
- data/man/bundle-package.ronn +59 -0
- data/man/bundle-platform.ronn +42 -0
- data/man/bundle-update.ronn +179 -0
- data/man/bundle.ronn +92 -0
- data/man/gemfile.5.ronn +369 -0
- data/man/index.txt +7 -0
- data/spec/bundler/bundler_spec.rb +74 -0
- data/spec/bundler/cli_spec.rb +16 -0
- data/spec/bundler/definition_spec.rb +21 -0
- data/spec/bundler/dsl_spec.rb +108 -0
- data/spec/bundler/friendly_errors_spec.rb +13 -0
- data/spec/bundler/gem_helper_spec.rb +225 -0
- data/spec/bundler/psyched_yaml_spec.rb +8 -0
- data/spec/bundler/retry_spec.rb +59 -0
- data/spec/bundler/settings_spec.rb +13 -0
- data/spec/bundler/source_spec.rb +25 -0
- data/spec/cache/gems_spec.rb +316 -0
- data/spec/cache/git_spec.rb +188 -0
- data/spec/cache/path_spec.rb +121 -0
- data/spec/cache/platform_spec.rb +53 -0
- data/spec/cache/svn_spec.rb +82 -0
- data/spec/commands/binstubs_spec.rb +246 -0
- data/spec/commands/check_spec.rb +278 -0
- data/spec/commands/clean_spec.rb +652 -0
- data/spec/commands/config_spec.rb +227 -0
- data/spec/commands/console_spec.rb +102 -0
- data/spec/commands/exec_spec.rb +367 -0
- data/spec/commands/help_spec.rb +39 -0
- data/spec/commands/init_spec.rb +39 -0
- data/spec/commands/inject_spec.rb +78 -0
- data/spec/commands/licenses_spec.rb +31 -0
- data/spec/commands/newgem_spec.rb +451 -0
- data/spec/commands/open_spec.rb +80 -0
- data/spec/commands/outdated_spec.rb +168 -0
- data/spec/commands/package_spec.rb +128 -0
- data/spec/commands/show_spec.rb +152 -0
- data/spec/install/binstubs_spec.rb +24 -0
- data/spec/install/bundler_spec.rb +146 -0
- data/spec/install/deploy_spec.rb +237 -0
- data/spec/install/gemfile/gemspec_spec.rb +170 -0
- data/spec/install/gemfile/git_spec.rb +967 -0
- data/spec/install/gemfile/path_spec.rb +480 -0
- data/spec/install/gemfile/svn_spec.rb +582 -0
- data/spec/install/gemfile_spec.rb +44 -0
- data/spec/install/gems/c_ext_spec.rb +48 -0
- data/spec/install/gems/dependency_api_spec.rb +580 -0
- data/spec/install/gems/env_spec.rb +107 -0
- data/spec/install/gems/flex_spec.rb +314 -0
- data/spec/install/gems/groups_spec.rb +308 -0
- data/spec/install/gems/mirror_spec.rb +39 -0
- data/spec/install/gems/platform_spec.rb +221 -0
- data/spec/install/gems/post_install_spec.rb +121 -0
- data/spec/install/gems/resolving_spec.rb +124 -0
- data/spec/install/gems/simple_case_spec.rb +386 -0
- data/spec/install/gems/standalone_spec.rb +260 -0
- data/spec/install/gems/sudo_spec.rb +136 -0
- data/spec/install/gems/win32_spec.rb +26 -0
- data/spec/install/gemspecs_spec.rb +50 -0
- data/spec/install/path_spec.rb +150 -0
- data/spec/install/post_bundle_message_spec.rb +142 -0
- data/spec/install/prereleases_spec.rb +43 -0
- data/spec/install/security_policy_spec.rb +77 -0
- data/spec/install/upgrade_spec.rb +26 -0
- data/spec/lock/git_spec.rb +34 -0
- data/spec/lock/lockfile_spec.rb +912 -0
- data/spec/lock/svn_spec.rb +35 -0
- data/spec/other/bundle_ruby_spec.rb +142 -0
- data/spec/other/cli_dispatch_spec.rb +21 -0
- data/spec/other/ext_spec.rb +60 -0
- data/spec/other/platform_spec.rb +1285 -0
- data/spec/other/ssl_cert_spec.rb +10 -0
- data/spec/quality_spec.rb +88 -0
- data/spec/realworld/dependency_api_spec.rb +60 -0
- data/spec/realworld/edgecases_spec.rb +177 -0
- data/spec/realworld/parallel_spec.rb +69 -0
- data/spec/resolver/basic_spec.rb +66 -0
- data/spec/resolver/platform_spec.rb +88 -0
- data/spec/runtime/executable_spec.rb +149 -0
- data/spec/runtime/load_spec.rb +107 -0
- data/spec/runtime/platform_spec.rb +90 -0
- data/spec/runtime/require_spec.rb +332 -0
- data/spec/runtime/setup_spec.rb +856 -0
- data/spec/runtime/with_clean_env_spec.rb +91 -0
- data/spec/spec_helper.rb +114 -0
- data/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb +13 -0
- data/spec/support/artifice/endpoint.rb +71 -0
- data/spec/support/artifice/endpoint_500.rb +37 -0
- data/spec/support/artifice/endpoint_api_missing.rb +16 -0
- data/spec/support/artifice/endpoint_basic_authentication.rb +13 -0
- data/spec/support/artifice/endpoint_creds_diff_host.rb +38 -0
- data/spec/support/artifice/endpoint_extra.rb +31 -0
- data/spec/support/artifice/endpoint_extra_missing.rb +15 -0
- data/spec/support/artifice/endpoint_fallback.rb +17 -0
- data/spec/support/artifice/endpoint_host_redirect.rb +15 -0
- data/spec/support/artifice/endpoint_marshal_fail.rb +11 -0
- data/spec/support/artifice/endpoint_redirect.rb +15 -0
- data/spec/support/artifice/endpoint_strict_basic_authentication.rb +18 -0
- data/spec/support/artifice/endpoint_timeout.rb +13 -0
- data/spec/support/builders.rb +748 -0
- data/spec/support/fakeweb/rack-1.0.0.marshal +2 -0
- data/spec/support/fakeweb/windows.rb +23 -0
- data/spec/support/hax.rb +22 -0
- data/spec/support/helpers.rb +348 -0
- data/spec/support/indexes.rb +280 -0
- data/spec/support/less_than_proc.rb +14 -0
- data/spec/support/matchers.rb +77 -0
- data/spec/support/path.rb +81 -0
- data/spec/support/permissions.rb +10 -0
- data/spec/support/platforms.rb +94 -0
- data/spec/support/ruby_ext.rb +20 -0
- data/spec/support/rubygems_ext.rb +39 -0
- data/spec/support/streams.rb +13 -0
- data/spec/support/sudo.rb +16 -0
- data/spec/update/gems_spec.rb +201 -0
- data/spec/update/git_spec.rb +236 -0
- data/spec/update/source_spec.rb +63 -0
- data/spec/update/svn_spec.rb +100 -0
- metadata +486 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
module Bundler
|
2
|
+
class CLI::Inject
|
3
|
+
attr_reader :options, :name, :version, :gems
|
4
|
+
def initialize(options, name, version, gems)
|
5
|
+
@options = options
|
6
|
+
@name = name
|
7
|
+
@version = version
|
8
|
+
@gems = gems
|
9
|
+
end
|
10
|
+
|
11
|
+
def run
|
12
|
+
# The required arguments allow Thor to give useful feedback when the arguments
|
13
|
+
# are incorrect. This adds those first two arguments onto the list as a whole.
|
14
|
+
gems.unshift(version).unshift(name)
|
15
|
+
|
16
|
+
# Build an array of Dependency objects out of the arguments
|
17
|
+
deps = []
|
18
|
+
gems.each_slice(2) do |gem_name, gem_version|
|
19
|
+
deps << Bundler::Dependency.new(gem_name, gem_version)
|
20
|
+
end
|
21
|
+
|
22
|
+
added = Injector.inject(deps)
|
23
|
+
|
24
|
+
if added.any?
|
25
|
+
Bundler.ui.confirm "Added to Gemfile:"
|
26
|
+
Bundler.ui.confirm added.map{ |g| " #{g}" }.join("\n")
|
27
|
+
else
|
28
|
+
Bundler.ui.confirm "All injected gems were already present in the Gemfile"
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,133 @@
|
|
1
|
+
module Bundler
|
2
|
+
class CLI::Install
|
3
|
+
attr_reader :options
|
4
|
+
def initialize(options)
|
5
|
+
@options = options.dup
|
6
|
+
end
|
7
|
+
|
8
|
+
def run
|
9
|
+
warn_if_root
|
10
|
+
|
11
|
+
if options[:without]
|
12
|
+
options[:without] = options[:without].map{|g| g.tr(' ', ':') }
|
13
|
+
end
|
14
|
+
|
15
|
+
ENV['RB_USER_INSTALL'] = '1' if Bundler::FREEBSD
|
16
|
+
|
17
|
+
# Just disable color in deployment mode
|
18
|
+
Bundler.ui.shell = Thor::Shell::Basic.new if options[:deployment]
|
19
|
+
|
20
|
+
if (options[:path] || options[:deployment]) && options[:system]
|
21
|
+
Bundler.ui.error "You have specified both a path to install your gems to, \n" \
|
22
|
+
"as well as --system. Please choose."
|
23
|
+
exit 1
|
24
|
+
end
|
25
|
+
|
26
|
+
if (options["trust-policy"])
|
27
|
+
unless (Bundler.rubygems.security_policies.keys.include?(options["trust-policy"]))
|
28
|
+
Bundler.ui.error "Rubygems doesn't know about trust policy '#{options["trust-policy"]}'. " \
|
29
|
+
"The known policies are: #{Bundler.rubygems.security_policies.keys.join(', ')}."
|
30
|
+
exit 1
|
31
|
+
end
|
32
|
+
Bundler.settings["trust-policy"] = options["trust-policy"]
|
33
|
+
else
|
34
|
+
Bundler.settings["trust-policy"] = nil if Bundler.settings["trust-policy"]
|
35
|
+
end
|
36
|
+
|
37
|
+
if options[:deployment] || options[:frozen]
|
38
|
+
unless Bundler.default_lockfile.exist?
|
39
|
+
flag = options[:deployment] ? '--deployment' : '--frozen'
|
40
|
+
raise ProductionError, "The #{flag} flag requires a Gemfile.lock. Please make " \
|
41
|
+
"sure you have checked your Gemfile.lock into version control " \
|
42
|
+
"before deploying."
|
43
|
+
end
|
44
|
+
|
45
|
+
if Bundler.root.join("vendor/cache").exist?
|
46
|
+
options[:local] = true
|
47
|
+
end
|
48
|
+
|
49
|
+
Bundler.settings[:frozen] = '1'
|
50
|
+
end
|
51
|
+
|
52
|
+
# When install is called with --no-deployment, disable deployment mode
|
53
|
+
if options[:deployment] == false
|
54
|
+
Bundler.settings.delete(:frozen)
|
55
|
+
options[:system] = true
|
56
|
+
end
|
57
|
+
|
58
|
+
Bundler.settings[:path] = nil if options[:system]
|
59
|
+
Bundler.settings[:path] = "vendor/bundle" if options[:deployment]
|
60
|
+
Bundler.settings[:path] = options["path"] if options["path"]
|
61
|
+
Bundler.settings[:path] ||= "bundle" if options["standalone"]
|
62
|
+
Bundler.settings[:bin] = options["binstubs"] if options["binstubs"]
|
63
|
+
Bundler.settings[:bin] = nil if options["binstubs"] && options["binstubs"].empty?
|
64
|
+
Bundler.settings[:shebang] = options["shebang"] if options["shebang"]
|
65
|
+
Bundler.settings[:jobs] = options["jobs"] if options["jobs"]
|
66
|
+
Bundler.settings[:no_prune] = true if options["no-prune"]
|
67
|
+
Bundler.settings[:no_install] = true if options["no-install"]
|
68
|
+
Bundler.settings[:clean] = options["clean"] if options["clean"]
|
69
|
+
Bundler.settings.without = options[:without]
|
70
|
+
Bundler.ui.level = "warn" if options[:quiet]
|
71
|
+
Bundler::Fetcher.disable_endpoint = options["full-index"]
|
72
|
+
Bundler.settings[:disable_shared_gems] = Bundler.settings[:path] ? '1' : nil
|
73
|
+
|
74
|
+
# rubygems plugins sometimes hook into the gem install process
|
75
|
+
Gem.load_env_plugins if Gem.respond_to?(:load_env_plugins)
|
76
|
+
|
77
|
+
definition = Bundler.definition
|
78
|
+
definition.validate_ruby!
|
79
|
+
Installer.install(Bundler.root, definition, options)
|
80
|
+
Bundler.load.cache if Bundler.root.join("vendor/cache").exist? && !options["no-cache"] && !Bundler.settings[:frozen]
|
81
|
+
|
82
|
+
if Bundler.settings[:path]
|
83
|
+
absolute_path = File.expand_path(Bundler.settings[:path])
|
84
|
+
relative_path = absolute_path.sub(File.expand_path('.'), '.')
|
85
|
+
Bundler.ui.confirm "Your bundle is complete!"
|
86
|
+
without_groups_messages
|
87
|
+
Bundler.ui.confirm "It was installed into #{relative_path}"
|
88
|
+
else
|
89
|
+
Bundler.ui.confirm "Your bundle is complete!"
|
90
|
+
without_groups_messages
|
91
|
+
Bundler.ui.confirm "Use `bundle show [gemname]` to see where a bundled gem is installed."
|
92
|
+
end
|
93
|
+
Installer.post_install_messages.to_a.each do |name, msg|
|
94
|
+
Bundler.ui.confirm "Post-install message from #{name}:"
|
95
|
+
Bundler.ui.info msg
|
96
|
+
end
|
97
|
+
|
98
|
+
if Bundler.settings[:clean] && Bundler.settings[:path]
|
99
|
+
require "bundler/cli/clean"
|
100
|
+
Bundler::CLI::Clean.new(options).run
|
101
|
+
end
|
102
|
+
rescue GemNotFound, VersionConflict => e
|
103
|
+
if options[:local] && Bundler.app_cache.exist?
|
104
|
+
Bundler.ui.warn "Some gems seem to be missing from your vendor/cache directory."
|
105
|
+
end
|
106
|
+
|
107
|
+
if Bundler.definition.rubygems_remotes.empty?
|
108
|
+
Bundler.ui.warn <<-WARN, :wrap => true
|
109
|
+
Your Gemfile has no gem server sources. If you need gems that are \
|
110
|
+
not already on your machine, add a line like this to your Gemfile:
|
111
|
+
source 'https://rubygems.org'
|
112
|
+
WARN
|
113
|
+
end
|
114
|
+
raise e
|
115
|
+
end
|
116
|
+
|
117
|
+
private
|
118
|
+
|
119
|
+
def warn_if_root
|
120
|
+
return if Bundler::WINDOWS || !Process.uid.zero?
|
121
|
+
Bundler.ui.warn "Don't run Bundler as root. Bundler can ask for sudo " \
|
122
|
+
"if it is needed, and installing your bundle as root will break this " \
|
123
|
+
"application for all non-root users on this machine.", :wrap => true
|
124
|
+
end
|
125
|
+
|
126
|
+
def without_groups_messages
|
127
|
+
if Bundler.settings.without.any?
|
128
|
+
require "bundler/cli/common"
|
129
|
+
Bundler.ui.confirm Bundler::CLI::Common.without_groups_message
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'bundler/cli/common'
|
2
|
+
require 'shellwords'
|
3
|
+
|
4
|
+
module Bundler
|
5
|
+
class CLI::Open
|
6
|
+
attr_reader :options, :name
|
7
|
+
def initialize(options, name)
|
8
|
+
@options = options
|
9
|
+
@name = name
|
10
|
+
end
|
11
|
+
|
12
|
+
def run
|
13
|
+
editor = [ENV['BUNDLER_EDITOR'], ENV['VISUAL'], ENV['EDITOR']].find{|e| !e.nil? && !e.empty? }
|
14
|
+
return Bundler.ui.info("To open a bundled gem, set $EDITOR or $BUNDLER_EDITOR") unless editor
|
15
|
+
path = Bundler::CLI::Common.select_spec(name, :regex_match).full_gem_path
|
16
|
+
Dir.chdir(path) do
|
17
|
+
command = Shellwords.split(editor) + [path]
|
18
|
+
system(*command) || Bundler.ui.info("Could not run '#{command.join(' ')}'")
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
require 'bundler/cli/common'
|
2
|
+
|
3
|
+
module Bundler
|
4
|
+
class CLI::Outdated
|
5
|
+
attr_reader :options, :gems
|
6
|
+
def initialize(options, gems)
|
7
|
+
@options = options
|
8
|
+
@gems = gems
|
9
|
+
end
|
10
|
+
|
11
|
+
def run
|
12
|
+
sources = Array(options[:source])
|
13
|
+
|
14
|
+
gems.each do |gem_name|
|
15
|
+
Bundler::CLI::Common.select_spec(gem_name)
|
16
|
+
end
|
17
|
+
|
18
|
+
Bundler.definition.validate_ruby!
|
19
|
+
current_specs = Bundler.ui.silence { Bundler.load.specs }
|
20
|
+
current_dependencies = {}
|
21
|
+
Bundler.ui.silence { Bundler.load.dependencies.each { |dep| current_dependencies[dep.name] = dep } }
|
22
|
+
|
23
|
+
if gems.empty? && sources.empty?
|
24
|
+
# We're doing a full update
|
25
|
+
definition = Bundler.definition(true)
|
26
|
+
else
|
27
|
+
definition = Bundler.definition(:gems => gems, :sources => sources)
|
28
|
+
end
|
29
|
+
options["local"] ? definition.resolve_with_cache! : definition.resolve_remotely!
|
30
|
+
|
31
|
+
Bundler.ui.info ""
|
32
|
+
|
33
|
+
out_count = 0
|
34
|
+
# Loop through the current specs
|
35
|
+
gemfile_specs, dependency_specs = current_specs.partition { |spec| current_dependencies.has_key? spec.name }
|
36
|
+
[gemfile_specs.sort_by(&:name), dependency_specs.sort_by(&:name)].flatten.each do |current_spec|
|
37
|
+
next if !gems.empty? && !gems.include?(current_spec.name)
|
38
|
+
|
39
|
+
dependency = current_dependencies[current_spec.name]
|
40
|
+
|
41
|
+
if options["strict"]
|
42
|
+
active_spec = definition.specs.detect { |spec| spec.name == current_spec.name }
|
43
|
+
else
|
44
|
+
active_spec = definition.index[current_spec.name].sort_by { |b| b.version }
|
45
|
+
if !current_spec.version.prerelease? && !options[:pre] && active_spec.size > 1
|
46
|
+
active_spec = active_spec.delete_if { |b| b.respond_to?(:version) && b.version.prerelease? }
|
47
|
+
end
|
48
|
+
active_spec = active_spec.last
|
49
|
+
end
|
50
|
+
next if active_spec.nil?
|
51
|
+
|
52
|
+
gem_outdated = Gem::Version.new(active_spec.version) > Gem::Version.new(current_spec.version)
|
53
|
+
scm_outdated = current_spec.scm_version != active_spec.scm_version
|
54
|
+
if gem_outdated || scm_outdated
|
55
|
+
if out_count == 0
|
56
|
+
if options["pre"]
|
57
|
+
Bundler.ui.info "Outdated gems included in the bundle (including pre-releases):"
|
58
|
+
else
|
59
|
+
Bundler.ui.info "Outdated gems included in the bundle:"
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
spec_version = "#{active_spec.version}#{active_spec.scm_version}"
|
64
|
+
current_version = "#{current_spec.version}#{current_spec.scm_version}"
|
65
|
+
dependency_version = %|Gemfile specifies "#{dependency.requirement}"| if dependency && dependency.specific?
|
66
|
+
Bundler.ui.info " * #{active_spec.name} (#{spec_version} > #{current_version}) #{dependency_version}".rstrip
|
67
|
+
out_count += 1
|
68
|
+
end
|
69
|
+
Bundler.ui.debug "from #{active_spec.loaded_from}"
|
70
|
+
end
|
71
|
+
|
72
|
+
if out_count.zero?
|
73
|
+
Bundler.ui.info "Your bundle is up to date!\n"
|
74
|
+
else
|
75
|
+
exit 1
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
end
|
80
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
module Bundler
|
2
|
+
class CLI::Package
|
3
|
+
attr_reader :options
|
4
|
+
|
5
|
+
def initialize(options)
|
6
|
+
@options = options
|
7
|
+
end
|
8
|
+
|
9
|
+
def run
|
10
|
+
Bundler.ui.level = "warn" if options[:quiet]
|
11
|
+
Bundler.settings[:path] = File.expand_path(options[:path]) if options[:path]
|
12
|
+
setup_cache_all
|
13
|
+
install
|
14
|
+
# TODO: move cache contents here now that all bundles are locked
|
15
|
+
custom_path = Pathname.new(options[:path]) if options[:path]
|
16
|
+
Bundler.load.cache(custom_path)
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def install
|
22
|
+
require 'bundler/cli/install'
|
23
|
+
Bundler::CLI::Install.new(options.dup).run
|
24
|
+
end
|
25
|
+
|
26
|
+
def setup_cache_all
|
27
|
+
Bundler.settings[:cache_all] = options[:all] if options.key?("all")
|
28
|
+
|
29
|
+
if Bundler.definition.sources.any? { |s| !s.is_a?(Source::Rubygems) } && !Bundler.settings[:cache_all]
|
30
|
+
Bundler.ui.warn "Your Gemfile contains path and git dependencies. If you want " \
|
31
|
+
"to package them as well, please pass the --all flag. This will be the default " \
|
32
|
+
"on Bundler 2.0."
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
module Bundler
|
2
|
+
class CLI::Platform
|
3
|
+
attr_reader :options
|
4
|
+
def initialize(options)
|
5
|
+
@options = options
|
6
|
+
end
|
7
|
+
|
8
|
+
def run
|
9
|
+
platforms, ruby_version = Bundler.ui.silence do
|
10
|
+
[ Bundler.definition.platforms.map {|p| "* #{p}" },
|
11
|
+
Bundler.definition.ruby_version ]
|
12
|
+
end
|
13
|
+
output = []
|
14
|
+
|
15
|
+
if options[:ruby]
|
16
|
+
if ruby_version
|
17
|
+
output << ruby_version
|
18
|
+
else
|
19
|
+
output << "No ruby version specified"
|
20
|
+
end
|
21
|
+
else
|
22
|
+
output << "Your platform is: #{RUBY_PLATFORM}"
|
23
|
+
output << "Your app has gems that work on these platforms:\n#{platforms.join("\n")}"
|
24
|
+
|
25
|
+
if ruby_version
|
26
|
+
output << "Your Gemfile specifies a Ruby version requirement:\n* #{ruby_version}"
|
27
|
+
|
28
|
+
begin
|
29
|
+
Bundler.definition.validate_ruby!
|
30
|
+
output << "Your current platform satisfies the Ruby version requirement."
|
31
|
+
rescue RubyVersionMismatch => e
|
32
|
+
output << e.message
|
33
|
+
end
|
34
|
+
else
|
35
|
+
output << "Your Gemfile does not specify a Ruby version requirement."
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
Bundler.ui.info output.join("\n\n")
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'bundler/cli/common'
|
2
|
+
|
3
|
+
module Bundler
|
4
|
+
class CLI::Show
|
5
|
+
attr_reader :options, :gem_name
|
6
|
+
def initialize(options, gem_name)
|
7
|
+
@options = options
|
8
|
+
@gem_name = gem_name
|
9
|
+
end
|
10
|
+
|
11
|
+
def run
|
12
|
+
Bundler.ui.silence do
|
13
|
+
Bundler.definition.validate_ruby!
|
14
|
+
Bundler.load.lock
|
15
|
+
end
|
16
|
+
|
17
|
+
if gem_name
|
18
|
+
if gem_name == "bundler"
|
19
|
+
path = File.expand_path("../../../..", __FILE__)
|
20
|
+
else
|
21
|
+
spec = Bundler::CLI::Common.select_spec(gem_name, :regex_match)
|
22
|
+
return unless spec
|
23
|
+
path = spec.full_gem_path
|
24
|
+
if !File.directory?(path)
|
25
|
+
Bundler.ui.warn "The gem #{gem_name} has been deleted. It was installed at:"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
return Bundler.ui.info(path)
|
29
|
+
end
|
30
|
+
|
31
|
+
if options[:paths]
|
32
|
+
Bundler.load.specs.sort_by { |s| s.name }.map do |s|
|
33
|
+
Bundler.ui.info s.full_gem_path
|
34
|
+
end
|
35
|
+
else
|
36
|
+
Bundler.ui.info "Gems included by the bundle:"
|
37
|
+
Bundler.load.specs.sort_by { |s| s.name }.each do |s|
|
38
|
+
desc = " * #{s.name} (#{s.version}#{s.scm_version})"
|
39
|
+
if @options[:verbose]
|
40
|
+
Bundler.ui.info "#{desc} - #{s.summary || 'No description available.'}"
|
41
|
+
else
|
42
|
+
Bundler.ui.info desc
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,73 @@
|
|
1
|
+
module Bundler
|
2
|
+
class CLI::Update
|
3
|
+
attr_reader :options, :gems
|
4
|
+
def initialize(options, gems)
|
5
|
+
@options = options
|
6
|
+
@gems = gems
|
7
|
+
end
|
8
|
+
|
9
|
+
def run
|
10
|
+
|
11
|
+
sources = Array(options[:source])
|
12
|
+
groups = Array(options[:group]).map(&:to_sym)
|
13
|
+
Bundler.ui.level = "warn" if options[:quiet]
|
14
|
+
|
15
|
+
if gems.empty? && sources.empty? && groups.empty?
|
16
|
+
# We're doing a full update
|
17
|
+
Bundler.definition(true)
|
18
|
+
else
|
19
|
+
unless Bundler.default_lockfile.exist?
|
20
|
+
raise GemfileLockNotFound, "This Bundle hasn't been installed yet. " \
|
21
|
+
"Run `bundle install` to update and install the bundled gems."
|
22
|
+
end
|
23
|
+
# cycle through the requested gems, just to make sure they exist
|
24
|
+
names = Bundler.locked_gems.specs.map{ |s| s.name }
|
25
|
+
gems.each do |g|
|
26
|
+
next if names.include?(g)
|
27
|
+
require "bundler/cli/common"
|
28
|
+
raise GemNotFound, Bundler::CLI::Common.gem_not_found_message(g, names)
|
29
|
+
end
|
30
|
+
|
31
|
+
if groups.any?
|
32
|
+
specs = Bundler.definition.specs_for groups
|
33
|
+
sources.concat(specs.map(&:name))
|
34
|
+
end
|
35
|
+
|
36
|
+
Bundler.definition(:gems => gems, :sources => sources)
|
37
|
+
end
|
38
|
+
|
39
|
+
Bundler::Fetcher.disable_endpoint = options["full-index"]
|
40
|
+
|
41
|
+
opts = options.dup
|
42
|
+
opts["update"] = true
|
43
|
+
opts["local"] = options[:local]
|
44
|
+
|
45
|
+
Bundler.settings[:jobs] = opts["jobs"] if opts["jobs"]
|
46
|
+
|
47
|
+
# rubygems plugins sometimes hook into the gem install process
|
48
|
+
Gem.load_env_plugins if Gem.respond_to?(:load_env_plugins)
|
49
|
+
|
50
|
+
Bundler.definition.validate_ruby!
|
51
|
+
Installer.install Bundler.root, Bundler.definition, opts
|
52
|
+
Bundler.load.cache if Bundler.root.join("vendor/cache").exist?
|
53
|
+
|
54
|
+
if Bundler.settings[:clean] && Bundler.settings[:path]
|
55
|
+
require "bundler/cli/clean"
|
56
|
+
Bundler::CLI::Clean.new(options).run
|
57
|
+
end
|
58
|
+
|
59
|
+
Bundler.ui.confirm "Your bundle is updated!"
|
60
|
+
without_groups_messages
|
61
|
+
end
|
62
|
+
|
63
|
+
private
|
64
|
+
|
65
|
+
def without_groups_messages
|
66
|
+
if Bundler.settings.without.any?
|
67
|
+
require "bundler/cli/common"
|
68
|
+
Bundler.ui.confirm Bundler::CLI::Common.without_groups_message
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
end
|
73
|
+
end
|