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,310 @@
|
|
1
|
+
require "digest/sha1"
|
2
|
+
|
3
|
+
module Bundler
|
4
|
+
class Runtime < Environment
|
5
|
+
include SharedHelpers
|
6
|
+
|
7
|
+
def setup(*groups)
|
8
|
+
groups.map! { |g| g.to_sym }
|
9
|
+
|
10
|
+
# Has to happen first
|
11
|
+
clean_load_path
|
12
|
+
|
13
|
+
specs = groups.any? ? @definition.specs_for(groups) : requested_specs
|
14
|
+
|
15
|
+
setup_environment
|
16
|
+
Bundler.rubygems.replace_entrypoints(specs)
|
17
|
+
|
18
|
+
# Activate the specs
|
19
|
+
specs.each do |spec|
|
20
|
+
unless spec.loaded_from
|
21
|
+
raise GemNotFound, "#{spec.full_name} is missing. Run `bundle` to get it."
|
22
|
+
end
|
23
|
+
|
24
|
+
if activated_spec = Bundler.rubygems.loaded_specs(spec.name) and activated_spec.version != spec.version
|
25
|
+
e = Gem::LoadError.new "You have already activated #{activated_spec.name} #{activated_spec.version}, " \
|
26
|
+
"but your Gemfile requires #{spec.name} #{spec.version}. Prepending " \
|
27
|
+
"`bundle exec` to your command may solve this."
|
28
|
+
e.name = spec.name
|
29
|
+
if e.respond_to?(:requirement=)
|
30
|
+
e.requirement = Gem::Requirement.new(spec.version.to_s)
|
31
|
+
else
|
32
|
+
e.version_requirement = Gem::Requirement.new(spec.version.to_s)
|
33
|
+
end
|
34
|
+
raise e
|
35
|
+
end
|
36
|
+
|
37
|
+
Bundler.rubygems.mark_loaded(spec)
|
38
|
+
load_paths = spec.load_paths.reject {|path| $LOAD_PATH.include?(path)}
|
39
|
+
$LOAD_PATH.unshift(*load_paths)
|
40
|
+
end
|
41
|
+
|
42
|
+
setup_manpath
|
43
|
+
|
44
|
+
lock
|
45
|
+
|
46
|
+
self
|
47
|
+
end
|
48
|
+
|
49
|
+
REGEXPS = [
|
50
|
+
/^no such file to load -- (.+)$/i,
|
51
|
+
/^Missing \w+ (?:file\s*)?([^\s]+.rb)$/i,
|
52
|
+
/^Missing API definition file in (.+)$/i,
|
53
|
+
/^cannot load such file -- (.+)$/i,
|
54
|
+
/^dlopen\([^)]*\): Library not loaded: (.+)$/i,
|
55
|
+
]
|
56
|
+
|
57
|
+
def require(*groups)
|
58
|
+
groups.map! { |g| g.to_sym }
|
59
|
+
groups = [:default] if groups.empty?
|
60
|
+
|
61
|
+
@definition.dependencies.each do |dep|
|
62
|
+
# Skip the dependency if it is not in any of the requested
|
63
|
+
# groups
|
64
|
+
next unless ((dep.groups & groups).any? && dep.current_platform?)
|
65
|
+
|
66
|
+
required_file = nil
|
67
|
+
|
68
|
+
begin
|
69
|
+
# Loop through all the specified autorequires for the
|
70
|
+
# dependency. If there are none, use the dependency's name
|
71
|
+
# as the autorequire.
|
72
|
+
Array(dep.autorequire || dep.name).each do |file|
|
73
|
+
# Allow `require: true` as an alias for `require: <name>`
|
74
|
+
file = dep.name if file == true
|
75
|
+
required_file = file
|
76
|
+
Kernel.require file
|
77
|
+
end
|
78
|
+
rescue LoadError => e
|
79
|
+
REGEXPS.find { |r| r =~ e.message }
|
80
|
+
raise if dep.autorequire || $1 != required_file
|
81
|
+
|
82
|
+
if dep.autorequire.nil? && dep.name.include?('-')
|
83
|
+
begin
|
84
|
+
namespaced_file = dep.name.gsub('-', '/')
|
85
|
+
Kernel.require namespaced_file
|
86
|
+
rescue LoadError
|
87
|
+
REGEXPS.find { |r| r =~ e.message }
|
88
|
+
regex_name = $1
|
89
|
+
raise e if dep.autorequire || (regex_name && regex_name.gsub('-', '/') != namespaced_file)
|
90
|
+
raise e if regex_name.nil?
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
def dependencies_for(*groups)
|
98
|
+
if groups.empty?
|
99
|
+
dependencies
|
100
|
+
else
|
101
|
+
dependencies.select { |d| (groups & d.groups).any? }
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
alias gems specs
|
106
|
+
|
107
|
+
def cache(custom_path = nil)
|
108
|
+
cache_path = cache_path(custom_path)
|
109
|
+
FileUtils.mkdir_p(cache_path) unless File.exist?(cache_path)
|
110
|
+
|
111
|
+
Bundler.ui.info "Updating files in vendor/cache"
|
112
|
+
specs.each do |spec|
|
113
|
+
next if spec.name == 'bundler'
|
114
|
+
spec.source.cache(spec, custom_path) if spec.source.respond_to?(:cache)
|
115
|
+
end
|
116
|
+
|
117
|
+
Dir[cache_path.join("*/.git")].each do |git_dir|
|
118
|
+
FileUtils.rm_rf(git_dir)
|
119
|
+
FileUtils.touch(File.expand_path("../.bundlecache", git_dir))
|
120
|
+
end
|
121
|
+
|
122
|
+
prune_cache(custom_path) unless Bundler.settings[:no_prune]
|
123
|
+
end
|
124
|
+
|
125
|
+
def prune_cache(custom_path)
|
126
|
+
cache_path = cache_path(custom_path)
|
127
|
+
FileUtils.mkdir_p(cache_path) unless File.exist?(cache_path)
|
128
|
+
resolve = @definition.resolve
|
129
|
+
prune_gem_cache(resolve, custom_path)
|
130
|
+
prune_git_and_path_cache(resolve, custom_path)
|
131
|
+
end
|
132
|
+
|
133
|
+
def clean(dry_run = false)
|
134
|
+
gem_bins = Dir["#{Gem.dir}/bin/*"]
|
135
|
+
git_dirs = Dir["#{Gem.dir}/bundler/gems/*"]
|
136
|
+
git_cache_dirs = Dir["#{Gem.dir}/cache/bundler/git/*"]
|
137
|
+
gem_dirs = Dir["#{Gem.dir}/gems/*"]
|
138
|
+
gem_files = Dir["#{Gem.dir}/cache/*.gem"]
|
139
|
+
gemspec_files = Dir["#{Gem.dir}/specifications/*.gemspec"]
|
140
|
+
spec_gem_paths = []
|
141
|
+
# need to keep git sources around
|
142
|
+
spec_git_paths = @definition.sources.select {|s| s.is_a?(Bundler::Source::Git) }.map {|s| s.path.to_s }
|
143
|
+
spec_git_cache_dirs = []
|
144
|
+
spec_gem_executables = []
|
145
|
+
spec_cache_paths = []
|
146
|
+
spec_gemspec_paths = []
|
147
|
+
specs.each do |spec|
|
148
|
+
spec_gem_paths << spec.full_gem_path
|
149
|
+
# need to check here in case gems are nested like for the rails git repo
|
150
|
+
md = %r{(.+bundler/gems/.+-[a-f0-9]{7,12})}.match(spec.full_gem_path)
|
151
|
+
spec_git_paths << md[1] if md
|
152
|
+
spec_gem_executables << spec.executables.collect do |executable|
|
153
|
+
e = "#{Bundler.rubygems.gem_bindir}/#{executable}"
|
154
|
+
[e, "#{e}.bat"]
|
155
|
+
end
|
156
|
+
spec_cache_paths << spec.cache_file
|
157
|
+
spec_gemspec_paths << spec.spec_file
|
158
|
+
spec_git_cache_dirs << spec.source.cache_path.to_s if spec.source.is_a?(Bundler::Source::Git)
|
159
|
+
end
|
160
|
+
spec_gem_paths.uniq!
|
161
|
+
spec_gem_executables.flatten!
|
162
|
+
|
163
|
+
stale_gem_bins = gem_bins - spec_gem_executables
|
164
|
+
stale_git_dirs = git_dirs - spec_git_paths
|
165
|
+
stale_git_cache_dirs = git_cache_dirs - spec_git_cache_dirs
|
166
|
+
stale_gem_dirs = gem_dirs - spec_gem_paths
|
167
|
+
stale_gem_files = gem_files - spec_cache_paths
|
168
|
+
stale_gemspec_files = gemspec_files - spec_gemspec_paths
|
169
|
+
|
170
|
+
output = stale_gem_dirs.collect do |gem_dir|
|
171
|
+
full_name = Pathname.new(gem_dir).basename.to_s
|
172
|
+
|
173
|
+
parts = full_name.split('-')
|
174
|
+
name = parts[0..-2].join('-')
|
175
|
+
version = parts.last
|
176
|
+
output = "#{name} (#{version})"
|
177
|
+
|
178
|
+
if dry_run
|
179
|
+
Bundler.ui.info "Would have removed #{output}"
|
180
|
+
else
|
181
|
+
Bundler.ui.info "Removing #{output}"
|
182
|
+
FileUtils.rm_rf(gem_dir)
|
183
|
+
end
|
184
|
+
|
185
|
+
output
|
186
|
+
end + stale_git_dirs.collect do |gem_dir|
|
187
|
+
full_name = Pathname.new(gem_dir).basename.to_s
|
188
|
+
|
189
|
+
parts = full_name.split('-')
|
190
|
+
name = parts[0..-2].join('-')
|
191
|
+
revision = parts[-1]
|
192
|
+
output = "#{name} (#{revision})"
|
193
|
+
|
194
|
+
if dry_run
|
195
|
+
Bundler.ui.info "Would have removed #{output}"
|
196
|
+
else
|
197
|
+
Bundler.ui.info "Removing #{output}"
|
198
|
+
FileUtils.rm_rf(gem_dir)
|
199
|
+
end
|
200
|
+
|
201
|
+
output
|
202
|
+
end
|
203
|
+
|
204
|
+
unless dry_run
|
205
|
+
stale_gem_bins.each { |bin| FileUtils.rm(bin) if File.exist?(bin) }
|
206
|
+
stale_gem_files.each { |file| FileUtils.rm(file) if File.exist?(file) }
|
207
|
+
stale_gemspec_files.each { |file| FileUtils.rm(file) if File.exist?(file) }
|
208
|
+
stale_git_cache_dirs.each { |dir| FileUtils.rm_rf(dir) if File.exist?(dir) }
|
209
|
+
end
|
210
|
+
|
211
|
+
output
|
212
|
+
end
|
213
|
+
|
214
|
+
def setup_environment
|
215
|
+
begin
|
216
|
+
ENV["BUNDLE_BIN_PATH"] = Bundler.rubygems.bin_path("bundler", "bundle", VERSION)
|
217
|
+
rescue Gem::GemNotFoundException
|
218
|
+
ENV["BUNDLE_BIN_PATH"] = File.expand_path("../../../bin/bundle", __FILE__)
|
219
|
+
end
|
220
|
+
|
221
|
+
# Set PATH
|
222
|
+
paths = (ENV["PATH"] || "").split(File::PATH_SEPARATOR)
|
223
|
+
paths.unshift "#{Bundler.bundle_path}/bin"
|
224
|
+
ENV["PATH"] = paths.uniq.join(File::PATH_SEPARATOR)
|
225
|
+
|
226
|
+
# Set BUNDLE_GEMFILE
|
227
|
+
ENV["BUNDLE_GEMFILE"] = default_gemfile.to_s
|
228
|
+
|
229
|
+
# Set RUBYOPT
|
230
|
+
rubyopt = [ENV["RUBYOPT"]].compact
|
231
|
+
if rubyopt.empty? || rubyopt.first !~ /-rbundler\/setup/
|
232
|
+
rubyopt.unshift %|-rbundler/setup|
|
233
|
+
ENV["RUBYOPT"] = rubyopt.join(' ')
|
234
|
+
end
|
235
|
+
|
236
|
+
# Set RUBYLIB
|
237
|
+
rubylib = (ENV["RUBYLIB"] || "").split(File::PATH_SEPARATOR)
|
238
|
+
rubylib.unshift File.expand_path('../..', __FILE__)
|
239
|
+
ENV["RUBYLIB"] = rubylib.uniq.join(File::PATH_SEPARATOR)
|
240
|
+
end
|
241
|
+
|
242
|
+
private
|
243
|
+
|
244
|
+
def prune_gem_cache(resolve, custom_path)
|
245
|
+
cached = Dir["#{cache_path(custom_path)}/*.gem"]
|
246
|
+
|
247
|
+
cached = cached.delete_if do |path|
|
248
|
+
spec = Bundler.rubygems.spec_from_gem path
|
249
|
+
|
250
|
+
resolve.any? do |s|
|
251
|
+
s.name == spec.name && s.version == spec.version && !s.source.is_a?(Bundler::Source::Git)
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
255
|
+
if cached.any?
|
256
|
+
Bundler.ui.info "Removing outdated .gem files from vendor/cache"
|
257
|
+
|
258
|
+
cached.each do |path|
|
259
|
+
Bundler.ui.info " * #{File.basename(path)}"
|
260
|
+
File.delete(path)
|
261
|
+
end
|
262
|
+
end
|
263
|
+
end
|
264
|
+
|
265
|
+
def prune_git_and_path_cache(resolve, custom_path)
|
266
|
+
cached = Dir["#{cache_path(custom_path)}/*/.bundlecache"]
|
267
|
+
|
268
|
+
cached = cached.delete_if do |path|
|
269
|
+
name = File.basename(File.dirname(path))
|
270
|
+
|
271
|
+
resolve.any? do |s|
|
272
|
+
source = s.source
|
273
|
+
source.respond_to?(:app_cache_dirname) && source.app_cache_dirname == name
|
274
|
+
end
|
275
|
+
end
|
276
|
+
|
277
|
+
if cached.any?
|
278
|
+
Bundler.ui.info "Removing outdated git and path gems from vendor/cache"
|
279
|
+
|
280
|
+
cached.each do |path|
|
281
|
+
path = File.dirname(path)
|
282
|
+
Bundler.ui.info " * #{File.basename(path)}"
|
283
|
+
FileUtils.rm_rf(path)
|
284
|
+
end
|
285
|
+
end
|
286
|
+
end
|
287
|
+
|
288
|
+
def setup_manpath
|
289
|
+
# Store original MANPATH for restoration later in with_clean_env()
|
290
|
+
ENV['BUNDLE_ORIG_MANPATH'] = ENV['MANPATH']
|
291
|
+
|
292
|
+
# Add man/ subdirectories from activated bundles to MANPATH for man(1)
|
293
|
+
manuals = $LOAD_PATH.map do |path|
|
294
|
+
man_subdir = path.sub(/lib$/, 'man')
|
295
|
+
man_subdir unless Dir[man_subdir + '/man?/'].empty?
|
296
|
+
end.compact
|
297
|
+
|
298
|
+
unless manuals.empty?
|
299
|
+
ENV['MANPATH'] = manuals.concat(
|
300
|
+
ENV['MANPATH'].to_s.split(File::PATH_SEPARATOR)
|
301
|
+
).uniq.join(File::PATH_SEPARATOR)
|
302
|
+
end
|
303
|
+
end
|
304
|
+
|
305
|
+
def cache_path(custom_path = nil)
|
306
|
+
path = custom_path || root
|
307
|
+
path.join("vendor/cache")
|
308
|
+
end
|
309
|
+
end
|
310
|
+
end
|
@@ -0,0 +1,176 @@
|
|
1
|
+
module Bundler
|
2
|
+
class Settings
|
3
|
+
def initialize(root = nil)
|
4
|
+
@root = root
|
5
|
+
@local_config = load_config(local_config_file)
|
6
|
+
@global_config = load_config(global_config_file)
|
7
|
+
end
|
8
|
+
|
9
|
+
def [](key)
|
10
|
+
the_key = key_for(key)
|
11
|
+
value = (@local_config[the_key] || ENV[the_key] || @global_config[the_key])
|
12
|
+
is_bool(key) ? to_bool(value) : value
|
13
|
+
end
|
14
|
+
|
15
|
+
def []=(key, value)
|
16
|
+
local_config_file or raise GemfileNotFound, "Could not locate Gemfile"
|
17
|
+
set_key(key, value, @local_config, local_config_file)
|
18
|
+
end
|
19
|
+
|
20
|
+
alias :set_local :[]=
|
21
|
+
|
22
|
+
def delete(key)
|
23
|
+
@local_config.delete(key_for(key))
|
24
|
+
end
|
25
|
+
|
26
|
+
def set_global(key, value)
|
27
|
+
set_key(key, value, @global_config, global_config_file)
|
28
|
+
end
|
29
|
+
|
30
|
+
def all
|
31
|
+
env_keys = ENV.keys.select { |k| k =~ /BUNDLE_.*/ }
|
32
|
+
|
33
|
+
keys = @global_config.keys | @local_config.keys | env_keys
|
34
|
+
|
35
|
+
keys.map do |key|
|
36
|
+
key.sub(/^BUNDLE_/, '').gsub(/__/, ".").downcase
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def local_overrides
|
41
|
+
repos = {}
|
42
|
+
all.each do |k|
|
43
|
+
if k =~ /^local\./
|
44
|
+
repos[$'] = self[k]
|
45
|
+
end
|
46
|
+
end
|
47
|
+
repos
|
48
|
+
end
|
49
|
+
|
50
|
+
def gem_mirrors
|
51
|
+
all.inject({}) do |h, k|
|
52
|
+
if k =~ /^mirror\./
|
53
|
+
uri = normalize_uri($')
|
54
|
+
h[uri] = normalize_uri(self[k])
|
55
|
+
end
|
56
|
+
h
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def locations(key)
|
61
|
+
key = key_for(key)
|
62
|
+
locations = {}
|
63
|
+
locations[:local] = @local_config[key] if @local_config.key?(key)
|
64
|
+
locations[:env] = ENV[key] if ENV[key]
|
65
|
+
locations[:global] = @global_config[key] if @global_config.key?(key)
|
66
|
+
locations
|
67
|
+
end
|
68
|
+
|
69
|
+
def pretty_values_for(exposed_key)
|
70
|
+
key = key_for(exposed_key)
|
71
|
+
|
72
|
+
locations = []
|
73
|
+
if @local_config.key?(key)
|
74
|
+
locations << "Set for your local app (#{local_config_file}): #{@local_config[key].inspect}"
|
75
|
+
end
|
76
|
+
|
77
|
+
if value = ENV[key]
|
78
|
+
locations << "Set via #{key}: #{value.inspect}"
|
79
|
+
end
|
80
|
+
|
81
|
+
if @global_config.key?(key)
|
82
|
+
locations << "Set for the current user (#{global_config_file}): #{@global_config[key].inspect}"
|
83
|
+
end
|
84
|
+
|
85
|
+
return ["You have not configured a value for `#{exposed_key}`"] if locations.empty?
|
86
|
+
locations
|
87
|
+
end
|
88
|
+
|
89
|
+
def without=(array)
|
90
|
+
self[:without] = (array.empty? ? nil : array.join(":")) if array
|
91
|
+
end
|
92
|
+
|
93
|
+
def without
|
94
|
+
self[:without] ? self[:without].split(":").map { |w| w.to_sym } : []
|
95
|
+
end
|
96
|
+
|
97
|
+
# @local_config["BUNDLE_PATH"] should be prioritized over ENV["BUNDLE_PATH"]
|
98
|
+
def path
|
99
|
+
key = key_for(:path)
|
100
|
+
path = ENV[key] || @global_config[key]
|
101
|
+
return path if path && !@local_config.key?(key)
|
102
|
+
|
103
|
+
if path = self[:path]
|
104
|
+
"#{path}/#{Bundler.ruby_scope}"
|
105
|
+
else
|
106
|
+
Bundler.rubygems.gem_dir
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
def allow_sudo?
|
111
|
+
!@local_config.key?(key_for(:path))
|
112
|
+
end
|
113
|
+
|
114
|
+
def ignore_config?
|
115
|
+
ENV['BUNDLE_IGNORE_CONFIG']
|
116
|
+
end
|
117
|
+
|
118
|
+
private
|
119
|
+
def key_for(key)
|
120
|
+
key = key.to_s.sub(".", "__").upcase
|
121
|
+
"BUNDLE_#{key}"
|
122
|
+
end
|
123
|
+
|
124
|
+
def is_bool(key)
|
125
|
+
%w(frozen cache_all no_prune disable_local_branch_check).include? key.to_s
|
126
|
+
end
|
127
|
+
|
128
|
+
def to_bool(value)
|
129
|
+
!(value.nil? || value == '' || value =~ /^(false|f|no|n|0)$/i)
|
130
|
+
end
|
131
|
+
|
132
|
+
def set_key(key, value, hash, file)
|
133
|
+
key = key_for(key)
|
134
|
+
|
135
|
+
unless hash[key] == value
|
136
|
+
hash[key] = value
|
137
|
+
hash.delete(key) if value.nil?
|
138
|
+
FileUtils.mkdir_p(file.dirname)
|
139
|
+
require 'bundler/psyched_yaml'
|
140
|
+
File.open(file, "w") { |f| f.puts YAML.dump(hash) }
|
141
|
+
end
|
142
|
+
value
|
143
|
+
end
|
144
|
+
|
145
|
+
def global_config_file
|
146
|
+
file = ENV["BUNDLE_CONFIG"] || File.join(Bundler.rubygems.user_home, ".bundle/config")
|
147
|
+
Pathname.new(file)
|
148
|
+
end
|
149
|
+
|
150
|
+
def local_config_file
|
151
|
+
Pathname.new(@root).join("config") if @root
|
152
|
+
end
|
153
|
+
|
154
|
+
def load_config(config_file)
|
155
|
+
valid_file = config_file && config_file.exist? && !config_file.size.zero?
|
156
|
+
if !ignore_config? && valid_file
|
157
|
+
config_regex =/^(BUNDLE_.+): (?:['"](.*)['"]|(.+(?:\n(?!BUNDLE).+))|(.+))$/
|
158
|
+
config_pairs = config_file.read.scan(config_regex).map{|m| m.compact.map { |n| n.gsub(/\n\s?/, "") } }
|
159
|
+
Hash[config_pairs]
|
160
|
+
else
|
161
|
+
{}
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
# TODO: duplicates Rubygems#normalize_uri
|
166
|
+
# TODO: is this the correct place to validate mirror URIs?
|
167
|
+
def normalize_uri(uri)
|
168
|
+
uri = uri.to_s
|
169
|
+
uri = "#{uri}/" unless uri =~ %r[/\Z]
|
170
|
+
uri = URI(uri)
|
171
|
+
raise ArgumentError, "Gem mirror sources must be absolute URIs (configured: #{mirror_source})" unless uri.absolute?
|
172
|
+
uri
|
173
|
+
end
|
174
|
+
|
175
|
+
end
|
176
|
+
end
|