bundler 2.2.0 → 2.2.5

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.

Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +67 -20
  3. data/bundler.gemspec +1 -1
  4. data/lib/bundler.rb +8 -2
  5. data/lib/bundler/build_metadata.rb +2 -2
  6. data/lib/bundler/cli.rb +3 -6
  7. data/lib/bundler/cli/gem.rb +2 -0
  8. data/lib/bundler/cli/install.rb +14 -5
  9. data/lib/bundler/cli/outdated.rb +2 -2
  10. data/lib/bundler/cli/update.rb +1 -1
  11. data/lib/bundler/compact_index_client/cache.rb +5 -13
  12. data/lib/bundler/compact_index_client/gem_parser.rb +28 -0
  13. data/lib/bundler/compact_index_client/updater.rb +0 -8
  14. data/lib/bundler/definition.rb +24 -21
  15. data/lib/bundler/dependency.rb +3 -1
  16. data/lib/bundler/gem_helper.rb +3 -3
  17. data/lib/bundler/gem_helpers.rb +30 -24
  18. data/lib/bundler/lazy_specification.rb +16 -3
  19. data/{man → lib/bundler/man}/bundle-add.1 +0 -0
  20. data/{man → lib/bundler/man}/bundle-binstubs.1 +0 -0
  21. data/{man → lib/bundler/man}/bundle-cache.1 +0 -0
  22. data/{man → lib/bundler/man}/bundle-check.1 +0 -0
  23. data/{man → lib/bundler/man}/bundle-clean.1 +0 -0
  24. data/{man → lib/bundler/man}/bundle-config.1 +0 -0
  25. data/{man → lib/bundler/man}/bundle-doctor.1 +0 -0
  26. data/{man → lib/bundler/man}/bundle-exec.1 +0 -0
  27. data/{man → lib/bundler/man}/bundle-gem.1 +0 -0
  28. data/{man → lib/bundler/man}/bundle-info.1 +0 -0
  29. data/{man → lib/bundler/man}/bundle-init.1 +0 -0
  30. data/{man → lib/bundler/man}/bundle-inject.1 +0 -0
  31. data/{man → lib/bundler/man}/bundle-install.1 +0 -0
  32. data/{man → lib/bundler/man}/bundle-list.1 +0 -0
  33. data/{man → lib/bundler/man}/bundle-lock.1 +0 -0
  34. data/{man → lib/bundler/man}/bundle-open.1 +0 -0
  35. data/{man → lib/bundler/man}/bundle-outdated.1 +0 -0
  36. data/{man → lib/bundler/man}/bundle-platform.1 +0 -0
  37. data/{man → lib/bundler/man}/bundle-pristine.1 +0 -0
  38. data/{man → lib/bundler/man}/bundle-remove.1 +0 -0
  39. data/{man → lib/bundler/man}/bundle-show.1 +0 -0
  40. data/{man → lib/bundler/man}/bundle-update.1 +0 -0
  41. data/{man → lib/bundler/man}/bundle-viz.1 +0 -0
  42. data/{man → lib/bundler/man}/bundle.1 +0 -0
  43. data/{man → lib/bundler/man}/gemfile.5 +0 -0
  44. data/{man → lib/bundler/man}/index.txt +0 -0
  45. data/lib/bundler/resolver.rb +29 -27
  46. data/lib/bundler/resolver/spec_group.rb +19 -25
  47. data/lib/bundler/rubygems_integration.rb +0 -6
  48. data/lib/bundler/source/git.rb +18 -16
  49. data/lib/bundler/source/git/git_proxy.rb +54 -49
  50. data/lib/bundler/source/path/installer.rb +2 -0
  51. data/lib/bundler/source/rubygems.rb +10 -1
  52. data/lib/bundler/spec_set.rb +5 -8
  53. data/lib/bundler/stub_specification.rb +0 -2
  54. data/lib/bundler/templates/newgem/Gemfile.tt +1 -1
  55. data/lib/bundler/templates/newgem/newgem.gemspec.tt +1 -1
  56. data/lib/bundler/templates/newgem/rubocop.yml.tt +3 -0
  57. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +8 -1
  58. data/lib/bundler/version.rb +1 -1
  59. metadata +33 -32
@@ -110,11 +110,6 @@ module Bundler
110
110
  obj.to_s
111
111
  end
112
112
 
113
- def platforms
114
- return [Gem::Platform::RUBY] if Bundler.settings[:force_ruby_platform]
115
- Gem.platforms
116
- end
117
-
118
113
  def configuration
119
114
  require_relative "psyched_yaml"
120
115
  Gem.configuration
@@ -565,7 +560,6 @@ module Bundler
565
560
  end
566
561
 
567
562
  def all_specs
568
- require_relative "remote_specification"
569
563
  Gem::Specification.stubs.map do |stub|
570
564
  StubSpecification.from_stub(stub)
571
565
  end
@@ -22,7 +22,7 @@ module Bundler
22
22
  @uri = options["uri"] || ""
23
23
  @safe_uri = URICredentialsFilter.credential_filtered_uri(@uri)
24
24
  @branch = options["branch"]
25
- @ref = options["ref"] || options["branch"] || options["tag"] || "master"
25
+ @ref = options["ref"] || options["branch"] || options["tag"]
26
26
  @submodules = options["submodules"]
27
27
  @name = options["name"]
28
28
  @version = options["version"].to_s.strip.gsub("-", ".pre.")
@@ -60,25 +60,27 @@ module Bundler
60
60
  alias_method :==, :eql?
61
61
 
62
62
  def to_s
63
- at = if local?
64
- path
65
- elsif user_ref = options["ref"]
66
- if ref =~ /\A[a-z0-9]{4,}\z/i
67
- shortref_for_display(user_ref)
63
+ begin
64
+ at = if local?
65
+ path
66
+ elsif user_ref = options["ref"]
67
+ if ref =~ /\A[a-z0-9]{4,}\z/i
68
+ shortref_for_display(user_ref)
69
+ else
70
+ user_ref
71
+ end
72
+ elsif ref
73
+ ref
68
74
  else
69
- user_ref
75
+ git_proxy.branch
70
76
  end
71
- else
72
- ref
73
- end
74
77
 
75
- rev = begin
76
- "@#{shortref_for_display(revision)}"
77
- rescue GitError
78
- nil
79
- end
78
+ rev = " (at #{at}@#{shortref_for_display(revision)})"
79
+ rescue GitError
80
+ ""
81
+ end
80
82
 
81
- "#{@safe_uri} (at #{at}#{rev})"
83
+ "#{@safe_uri}#{rev}"
82
84
  end
83
85
 
84
86
  def name
@@ -17,7 +17,7 @@ module Bundler
17
17
  class GitNotAllowedError < GitError
18
18
  def initialize(command)
19
19
  msg = String.new
20
- msg << "Bundler is trying to run a `git #{command}` at runtime. You probably need to run `bundle install`. However, "
20
+ msg << "Bundler is trying to run `#{command}` at runtime. You probably need to run `bundle install`. However, "
21
21
  msg << "this error message could probably be more useful. Please submit a ticket at https://github.com/rubygems/rubygems/issues/new?labels=Bundler&template=bundler-related-issue.md "
22
22
  msg << "with steps to reproduce as well as the following\n\nCALLER: #{caller.join("\n")}"
23
23
  super msg
@@ -27,11 +27,11 @@ module Bundler
27
27
  class GitCommandError < GitError
28
28
  attr_reader :command
29
29
 
30
- def initialize(command, path, destination_path, extra_info = nil)
30
+ def initialize(command, path, extra_info = nil)
31
31
  @command = command
32
32
 
33
33
  msg = String.new
34
- msg << "Git error: command `git #{command}` in directory #{destination_path} has failed."
34
+ msg << "Git error: command `#{command}` in directory #{path} has failed."
35
35
  msg << "\n#{extra_info}" if extra_info
36
36
  msg << "\nIf this error persists you could try removing the cache directory '#{path}'" if path.exist?
37
37
  super msg
@@ -39,9 +39,9 @@ module Bundler
39
39
  end
40
40
 
41
41
  class MissingGitRevisionError < GitCommandError
42
- def initialize(command, path, destination_path, ref, repo)
42
+ def initialize(command, destination_path, ref, repo)
43
43
  msg = "Revision #{ref} does not exist in the repository #{repo}. Maybe you misspelled it?"
44
- super command, path, destination_path, msg
44
+ super command, destination_path, msg
45
45
  end
46
46
  end
47
47
 
@@ -67,13 +67,13 @@ module Bundler
67
67
 
68
68
  def branch
69
69
  @branch ||= allowed_with_path do
70
- git("rev-parse --abbrev-ref HEAD", :dir => path).strip
70
+ git("rev-parse", "--abbrev-ref", "HEAD", :dir => path).strip
71
71
  end
72
72
  end
73
73
 
74
74
  def contains?(commit)
75
75
  allowed_with_path do
76
- result, status = git_null("branch --contains #{commit}", :dir => path)
76
+ result, status = git_null("branch", "--contains", commit, :dir => path)
77
77
  status.success? && result =~ /^\* (.*)$/
78
78
  end
79
79
  end
@@ -88,20 +88,22 @@ module Bundler
88
88
 
89
89
  def checkout
90
90
  return if path.exist? && has_revision_cached?
91
- extra_ref = "#{Shellwords.shellescape(ref)}:#{Shellwords.shellescape(ref)}" if ref && ref.start_with?("refs/")
91
+ extra_ref = "#{ref}:#{ref}" if ref && ref.start_with?("refs/")
92
92
 
93
93
  Bundler.ui.info "Fetching #{URICredentialsFilter.credential_filtered_uri(uri)}"
94
94
 
95
+ configured_uri = configured_uri_for(uri).to_s
96
+
95
97
  unless path.exist?
96
98
  SharedHelpers.filesystem_access(path.dirname) do |p|
97
99
  FileUtils.mkdir_p(p)
98
100
  end
99
- git_retry %(clone #{uri_escaped_with_configured_credentials} "#{path}" --bare --no-hardlinks --quiet)
101
+ git_retry "clone", configured_uri, path.to_s, "--bare", "--no-hardlinks", "--quiet"
100
102
  return unless extra_ref
101
103
  end
102
104
 
103
105
  with_path do
104
- git_retry %(fetch --force --quiet --tags #{uri_escaped_with_configured_credentials} "refs/heads/*:refs/heads/*" #{extra_ref}), :dir => path
106
+ git_retry(*["fetch", "--force", "--quiet", "--tags", configured_uri, "refs/heads/*:refs/heads/*", extra_ref].compact, :dir => path)
105
107
  end
106
108
  end
107
109
 
@@ -115,7 +117,7 @@ module Bundler
115
117
  SharedHelpers.filesystem_access(destination) do |p|
116
118
  FileUtils.rm_rf(p)
117
119
  end
118
- git_retry %(clone --no-checkout --quiet "#{path}" "#{destination}")
120
+ git_retry "clone", "--no-checkout", "--quiet", path.to_s, destination.to_s
119
121
  File.chmod(((File.stat(destination).mode | 0o777) & ~File.umask), destination)
120
122
  rescue Errno::EEXIST => e
121
123
  file_path = e.message[%r{.*?((?:[a-zA-Z]:)?/.*)}, 1]
@@ -125,56 +127,59 @@ module Bundler
125
127
  end
126
128
  end
127
129
  # method 2
128
- git_retry %(fetch --force --quiet --tags "#{path}"), :dir => destination
130
+ git_retry "fetch", "--force", "--quiet", "--tags", path.to_s, :dir => destination
129
131
 
130
132
  begin
131
- git "reset --hard #{@revision}", :dir => destination
133
+ git "reset", "--hard", @revision, :dir => destination
132
134
  rescue GitCommandError => e
133
- raise MissingGitRevisionError.new(e.command, path, destination, @revision, URICredentialsFilter.credential_filtered_uri(uri))
135
+ raise MissingGitRevisionError.new(e.command, destination, @revision, URICredentialsFilter.credential_filtered_uri(uri))
134
136
  end
135
137
 
136
138
  if submodules
137
- git_retry "submodule update --init --recursive", :dir => destination
139
+ git_retry "submodule", "update", "--init", "--recursive", :dir => destination
138
140
  elsif Gem::Version.create(version) >= Gem::Version.create("2.9.0")
139
141
  inner_command = "git -C $toplevel submodule deinit --force $sm_path"
140
- inner_command = inner_command.gsub("$") { '\$' } unless Bundler::WINDOWS
141
- git_retry "submodule foreach --quiet \"#{inner_command}\"", :dir => destination
142
+ git_retry "submodule", "foreach", "--quiet", inner_command, :dir => destination
142
143
  end
143
144
  end
144
145
 
145
146
  private
146
147
 
147
- def git_null(command, dir: SharedHelpers.pwd)
148
+ def git_null(*command, dir: nil)
148
149
  check_allowed(command)
149
150
 
150
151
  out, status = SharedHelpers.with_clean_git_env do
151
- capture_and_ignore_stderr("git #{command}", :chdir => dir.to_s)
152
+ capture_and_ignore_stderr(*capture3_args_for(command, dir))
152
153
  end
153
154
 
154
155
  [URICredentialsFilter.credential_filtered_string(out, uri), status]
155
156
  end
156
157
 
157
- def git_retry(command, dir: SharedHelpers.pwd)
158
- Bundler::Retry.new("`git #{URICredentialsFilter.credential_filtered_string(command, uri)}`", GitNotAllowedError).attempts do
159
- git(command, :dir => dir)
158
+ def git_retry(*command, dir: nil)
159
+ command_with_no_credentials = check_allowed(command)
160
+
161
+ Bundler::Retry.new("`#{command_with_no_credentials}` at #{dir || SharedHelpers.pwd}").attempts do
162
+ git(*command, :dir => dir)
160
163
  end
161
164
  end
162
165
 
163
- def git(command, dir: SharedHelpers.pwd)
166
+ def git(*command, dir: nil)
164
167
  command_with_no_credentials = check_allowed(command)
165
168
 
166
169
  out, status = SharedHelpers.with_clean_git_env do
167
- capture_and_filter_stderr(uri, "git #{command}", :chdir => dir.to_s)
170
+ capture_and_filter_stderr(*capture3_args_for(command, dir))
168
171
  end
169
172
 
170
- raise GitCommandError.new(command_with_no_credentials, path, dir) unless status.success?
173
+ filtered_out = URICredentialsFilter.credential_filtered_string(out, uri)
174
+
175
+ raise GitCommandError.new(command_with_no_credentials, dir || SharedHelpers.pwd, filtered_out) unless status.success?
171
176
 
172
- URICredentialsFilter.credential_filtered_string(out, uri)
177
+ filtered_out
173
178
  end
174
179
 
175
180
  def has_revision_cached?
176
181
  return unless @revision
177
- with_path { git("cat-file -e #{@revision}", :dir => path) }
182
+ with_path { git("cat-file", "-e", @revision, :dir => path) }
178
183
  true
179
184
  rescue GitError
180
185
  false
@@ -186,24 +191,10 @@ module Bundler
186
191
 
187
192
  def find_local_revision
188
193
  allowed_with_path do
189
- git("rev-parse --verify #{Shellwords.shellescape(ref)}", :dir => path).strip
194
+ git("rev-parse", "--verify", ref || "HEAD", :dir => path).strip
190
195
  end
191
196
  rescue GitCommandError => e
192
- raise MissingGitRevisionError.new(e.command, path, path, ref, URICredentialsFilter.credential_filtered_uri(uri))
193
- end
194
-
195
- # Escape the URI for git commands
196
- def uri_escaped_with_configured_credentials
197
- remote = configured_uri_for(uri)
198
- if Bundler::WINDOWS
199
- # Windows quoting requires double quotes only, with double quotes
200
- # inside the string escaped by being doubled.
201
- '"' + remote.gsub('"') { '""' } + '"'
202
- else
203
- # Bash requires single quoted strings, with the single quotes escaped
204
- # by ending the string, escaping the quote, and restarting the string.
205
- "'" + remote.gsub("'") { "'\\''" } + "'"
206
- end
197
+ raise MissingGitRevisionError.new(e.command, path, ref, URICredentialsFilter.credential_filtered_uri(uri))
207
198
  end
208
199
 
209
200
  # Adds credentials to the URI as Fetcher#configured_uri_for does
@@ -233,23 +224,37 @@ module Bundler
233
224
  end
234
225
 
235
226
  def check_allowed(command)
236
- command_with_no_credentials = URICredentialsFilter.credential_filtered_string(command, uri)
227
+ command_with_no_credentials = URICredentialsFilter.credential_filtered_string("git #{command.shelljoin}", uri)
237
228
  raise GitNotAllowedError.new(command_with_no_credentials) unless allow?
238
229
  command_with_no_credentials
239
230
  end
240
231
 
241
- def capture_and_filter_stderr(uri, cmd, chdir: SharedHelpers.pwd)
232
+ def capture_and_filter_stderr(*cmd)
242
233
  require "open3"
243
- return_value, captured_err, status = Open3.capture3(cmd, :chdir => chdir)
244
- Bundler.ui.warn URICredentialsFilter.credential_filtered_string(captured_err, uri) if uri && !captured_err.empty?
234
+ return_value, captured_err, status = Open3.capture3(*cmd)
235
+ Bundler.ui.warn URICredentialsFilter.credential_filtered_string(captured_err, uri) unless captured_err.empty?
245
236
  [return_value, status]
246
237
  end
247
238
 
248
- def capture_and_ignore_stderr(cmd, chdir: SharedHelpers.pwd)
239
+ def capture_and_ignore_stderr(*cmd)
249
240
  require "open3"
250
- return_value, _, status = Open3.capture3(cmd, :chdir => chdir)
241
+ return_value, _, status = Open3.capture3(*cmd)
251
242
  [return_value, status]
252
243
  end
244
+
245
+ def capture3_args_for(cmd, dir)
246
+ return ["git", *cmd] unless dir
247
+
248
+ if Bundler.feature_flag.bundler_3_mode? || supports_minus_c?
249
+ ["git", "-C", dir.to_s, *cmd]
250
+ else
251
+ ["git", *cmd, { :chdir => dir.to_s }]
252
+ end
253
+ end
254
+
255
+ def supports_minus_c?
256
+ @supports_minus_c ||= Gem::Version.new(version) >= Gem::Version.new("1.8.5")
257
+ end
253
258
  end
254
259
  end
255
260
  end
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative "../../rubygems_gem_installer"
4
+
3
5
  module Bundler
4
6
  class Source
5
7
  class Path
@@ -145,6 +145,8 @@ module Bundler
145
145
 
146
146
  Bundler.mkdir_p bin_path, :no_sudo => true unless spec.executables.empty? || Bundler.rubygems.provides?(">= 2.7.5")
147
147
 
148
+ require_relative "../rubygems_gem_installer"
149
+
148
150
  installed_spec = Bundler::RubyGemsGemInstaller.at(
149
151
  path,
150
152
  :install_dir => install_path.to_s,
@@ -487,8 +489,15 @@ module Bundler
487
489
  uri = spec.remote.uri
488
490
  Bundler.ui.confirm("Fetching #{version_message(spec)}")
489
491
  rubygems_local_path = Bundler.rubygems.download_gem(spec, uri, download_path)
492
+
493
+ # older rubygems return varying file:// variants depending on version
494
+ rubygems_local_path = rubygems_local_path.gsub(/\Afile:/, "") unless Bundler.rubygems.provides?(">= 3.2.0.rc.2")
495
+ rubygems_local_path = rubygems_local_path.gsub(%r{\A//}, "") if Bundler.rubygems.provides?("< 3.1.0")
496
+
490
497
  if rubygems_local_path != local_path
491
- FileUtils.mv(rubygems_local_path, local_path)
498
+ SharedHelpers.filesystem_access(local_path) do
499
+ FileUtils.mv(rubygems_local_path, local_path)
500
+ end
492
501
  end
493
502
  cache_globally(spec, local_path)
494
503
  end
@@ -22,10 +22,11 @@ module Bundler
22
22
  break unless dep = deps.shift
23
23
  next if !handled.add?(dep) || skip.include?(dep.name)
24
24
 
25
- if spec = spec_for_dependency(dep, match_current_platform)
26
- specs << spec
25
+ specs_for_dep = spec_for_dependency(dep, match_current_platform)
26
+ if specs_for_dep.any?
27
+ specs += specs_for_dep
27
28
 
28
- spec.dependencies.each do |d|
29
+ specs_for_dep.first.dependencies.each do |d|
29
30
  next if d.type == :development
30
31
  d = DepProxy.new(d, dep.__platform) unless match_current_platform
31
32
  deps << d
@@ -184,11 +185,7 @@ module Bundler
184
185
  def spec_for_dependency(dep, match_current_platform)
185
186
  specs_for_platforms = lookup[dep.name]
186
187
  if match_current_platform
187
- Bundler.rubygems.platforms.reverse_each do |pl|
188
- match = GemHelpers.select_best_platform_match(specs_for_platforms, pl)
189
- return match if match
190
- end
191
- nil
188
+ GemHelpers.select_best_platform_match(specs_for_platforms, Bundler.local_platform)
192
189
  else
193
190
  GemHelpers.select_best_platform_match(specs_for_platforms, dep.__platform)
194
191
  end
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "remote_specification"
4
-
5
3
  module Bundler
6
4
  class StubSpecification < RemoteSpecification
7
5
  def self.from_stub(stub)
@@ -16,5 +16,5 @@ gem "<%= config[:test] %>", "~> <%= config[:test_framework_version] %>"
16
16
  <%- end -%>
17
17
  <%- if config[:rubocop] -%>
18
18
 
19
- gem "rubocop", "~> 0.80"
19
+ gem "rubocop", "~> <%= config[:rubocop_version] %>"
20
20
  <%- end -%>
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  <%- if config[:mit] -%>
15
15
  spec.license = "MIT"
16
16
  <%- end -%>
17
- spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
17
+ spec.required_ruby_version = Gem::Requirement.new(">= <%= config[:required_ruby_version] %>")
18
18
 
19
19
  spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
20
20
 
@@ -1,3 +1,6 @@
1
+ AllCops:
2
+ TargetRubyVersion: <%= ::Gem::Version.new(config[:required_ruby_version]).segments[0..1].join(".") %>
3
+
1
4
  Style/StringLiterals:
2
5
  Enabled: true
3
6
  EnforcedStyle: double_quotes
@@ -159,7 +159,14 @@ class Bundler::Persistent::Net::HTTP::Persistent
159
159
  # limits (typically windows).
160
160
 
161
161
  if Process.const_defined? :RLIMIT_NOFILE
162
- DEFAULT_POOL_SIZE = Process.getrlimit(Process::RLIMIT_NOFILE).first / 4
162
+ open_file_limits = Process.getrlimit(Process::RLIMIT_NOFILE)
163
+
164
+ # Under JRuby on Windows Process responds to `getrlimit` but returns something that does not match docs
165
+ if open_file_limits.respond_to?(:first)
166
+ DEFAULT_POOL_SIZE = open_file_limits.first / 4
167
+ else
168
+ DEFAULT_POOL_SIZE = 256
169
+ end
163
170
  else
164
171
  DEFAULT_POOL_SIZE = 256
165
172
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module Bundler
4
- VERSION = "2.2.0".freeze
4
+ VERSION = "2.2.5".freeze
5
5
 
6
6
  def self.bundler_major_version
7
7
  @bundler_major_version ||= VERSION.split(".").first.to_i
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -19,10 +19,10 @@ authors:
19
19
  - Terence Lee
20
20
  - Carl Lerche
21
21
  - Yehuda Katz
22
- autorequire:
22
+ autorequire:
23
23
  bindir: exe
24
24
  cert_chain: []
25
- date: 2020-12-10 00:00:00.000000000 Z
25
+ date: 2021-01-11 00:00:00.000000000 Z
26
26
  dependencies: []
27
27
  description: Bundler manages an application's dependencies through its entire life,
28
28
  across many machines, systematically and repeatably
@@ -74,6 +74,7 @@ files:
74
74
  - lib/bundler/cli/viz.rb
75
75
  - lib/bundler/compact_index_client.rb
76
76
  - lib/bundler/compact_index_client/cache.rb
77
+ - lib/bundler/compact_index_client/gem_parser.rb
77
78
  - lib/bundler/compact_index_client/updater.rb
78
79
  - lib/bundler/constants.rb
79
80
  - lib/bundler/current_ruby.rb
@@ -112,31 +113,57 @@ files:
112
113
  - lib/bundler/lockfile_generator.rb
113
114
  - lib/bundler/lockfile_parser.rb
114
115
  - lib/bundler/man/.document
116
+ - lib/bundler/man/bundle-add.1
115
117
  - lib/bundler/man/bundle-add.1.ronn
118
+ - lib/bundler/man/bundle-binstubs.1
116
119
  - lib/bundler/man/bundle-binstubs.1.ronn
120
+ - lib/bundler/man/bundle-cache.1
117
121
  - lib/bundler/man/bundle-cache.1.ronn
122
+ - lib/bundler/man/bundle-check.1
118
123
  - lib/bundler/man/bundle-check.1.ronn
124
+ - lib/bundler/man/bundle-clean.1
119
125
  - lib/bundler/man/bundle-clean.1.ronn
126
+ - lib/bundler/man/bundle-config.1
120
127
  - lib/bundler/man/bundle-config.1.ronn
128
+ - lib/bundler/man/bundle-doctor.1
121
129
  - lib/bundler/man/bundle-doctor.1.ronn
130
+ - lib/bundler/man/bundle-exec.1
122
131
  - lib/bundler/man/bundle-exec.1.ronn
132
+ - lib/bundler/man/bundle-gem.1
123
133
  - lib/bundler/man/bundle-gem.1.ronn
134
+ - lib/bundler/man/bundle-info.1
124
135
  - lib/bundler/man/bundle-info.1.ronn
136
+ - lib/bundler/man/bundle-init.1
125
137
  - lib/bundler/man/bundle-init.1.ronn
138
+ - lib/bundler/man/bundle-inject.1
126
139
  - lib/bundler/man/bundle-inject.1.ronn
140
+ - lib/bundler/man/bundle-install.1
127
141
  - lib/bundler/man/bundle-install.1.ronn
142
+ - lib/bundler/man/bundle-list.1
128
143
  - lib/bundler/man/bundle-list.1.ronn
144
+ - lib/bundler/man/bundle-lock.1
129
145
  - lib/bundler/man/bundle-lock.1.ronn
146
+ - lib/bundler/man/bundle-open.1
130
147
  - lib/bundler/man/bundle-open.1.ronn
148
+ - lib/bundler/man/bundle-outdated.1
131
149
  - lib/bundler/man/bundle-outdated.1.ronn
150
+ - lib/bundler/man/bundle-platform.1
132
151
  - lib/bundler/man/bundle-platform.1.ronn
152
+ - lib/bundler/man/bundle-pristine.1
133
153
  - lib/bundler/man/bundle-pristine.1.ronn
154
+ - lib/bundler/man/bundle-remove.1
134
155
  - lib/bundler/man/bundle-remove.1.ronn
156
+ - lib/bundler/man/bundle-show.1
135
157
  - lib/bundler/man/bundle-show.1.ronn
158
+ - lib/bundler/man/bundle-update.1
136
159
  - lib/bundler/man/bundle-update.1.ronn
160
+ - lib/bundler/man/bundle-viz.1
137
161
  - lib/bundler/man/bundle-viz.1.ronn
162
+ - lib/bundler/man/bundle.1
138
163
  - lib/bundler/man/bundle.1.ronn
164
+ - lib/bundler/man/gemfile.5
139
165
  - lib/bundler/man/gemfile.5.ronn
166
+ - lib/bundler/man/index.txt
140
167
  - lib/bundler/match_platform.rb
141
168
  - lib/bundler/mirror.rb
142
169
  - lib/bundler/plugin.rb
@@ -301,32 +328,6 @@ files:
301
328
  - lib/bundler/vlad.rb
302
329
  - lib/bundler/worker.rb
303
330
  - lib/bundler/yaml_serializer.rb
304
- - man/bundle-add.1
305
- - man/bundle-binstubs.1
306
- - man/bundle-cache.1
307
- - man/bundle-check.1
308
- - man/bundle-clean.1
309
- - man/bundle-config.1
310
- - man/bundle-doctor.1
311
- - man/bundle-exec.1
312
- - man/bundle-gem.1
313
- - man/bundle-info.1
314
- - man/bundle-init.1
315
- - man/bundle-inject.1
316
- - man/bundle-install.1
317
- - man/bundle-list.1
318
- - man/bundle-lock.1
319
- - man/bundle-open.1
320
- - man/bundle-outdated.1
321
- - man/bundle-platform.1
322
- - man/bundle-pristine.1
323
- - man/bundle-remove.1
324
- - man/bundle-show.1
325
- - man/bundle-update.1
326
- - man/bundle-viz.1
327
- - man/bundle.1
328
- - man/gemfile.5
329
- - man/index.txt
330
331
  homepage: https://bundler.io
331
332
  licenses:
332
333
  - MIT
@@ -335,7 +336,7 @@ metadata:
335
336
  changelog_uri: https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md
336
337
  homepage_uri: https://bundler.io/
337
338
  source_code_uri: https://github.com/rubygems/rubygems/
338
- post_install_message:
339
+ post_install_message:
339
340
  rdoc_options: []
340
341
  require_paths:
341
342
  - lib
@@ -350,8 +351,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
350
351
  - !ruby/object:Gem::Version
351
352
  version: 2.5.2
352
353
  requirements: []
353
- rubygems_version: 3.2.0
354
- signing_key:
354
+ rubygems_version: 3.3.0.dev
355
+ signing_key:
355
356
  specification_version: 4
356
357
  summary: The best way to manage your application's dependencies
357
358
  test_files: []