bundler 1.16.0.pre.3 → 1.16.0

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 (50) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +14 -0
  3. data/lib/bundler.rb +2 -0
  4. data/lib/bundler/build_metadata.rb +2 -2
  5. data/lib/bundler/cli/exec.rb +1 -1
  6. data/lib/bundler/compact_index_client/cache.rb +1 -3
  7. data/lib/bundler/compact_index_client/updater.rb +1 -1
  8. data/lib/bundler/definition.rb +5 -6
  9. data/lib/bundler/deprecate.rb +13 -3
  10. data/lib/bundler/friendly_errors.rb +2 -0
  11. data/lib/bundler/installer.rb +13 -7
  12. data/lib/bundler/plugin/api/source.rb +1 -2
  13. data/lib/bundler/psyched_yaml.rb +9 -0
  14. data/lib/bundler/resolver.rb +4 -2
  15. data/lib/bundler/rubygems_gem_installer.rb +1 -1
  16. data/lib/bundler/rubygems_integration.rb +1 -0
  17. data/lib/bundler/runtime.rb +0 -2
  18. data/lib/bundler/shared_helpers.rb +5 -0
  19. data/lib/bundler/source/git.rb +1 -2
  20. data/lib/bundler/source/git/git_proxy.rb +1 -0
  21. data/lib/bundler/source/rubygems/remote.rb +1 -1
  22. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +1 -1
  23. data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  24. data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +1 -1
  25. data/lib/bundler/vendor/thor/lib/thor/runner.rb +2 -2
  26. data/lib/bundler/version.rb +1 -1
  27. data/man/bundle-binstubs.1 +2 -2
  28. data/man/bundle-binstubs.1.txt +2 -2
  29. data/man/bundle-binstubs.ronn +1 -1
  30. data/man/bundle-exec.1 +1 -1
  31. data/man/bundle-exec.1.txt +1 -1
  32. data/man/bundle-gem.1 +1 -1
  33. data/man/bundle-gem.1.txt +1 -1
  34. data/man/bundle-list.1 +1 -1
  35. data/man/bundle-list.1.txt +1 -1
  36. data/man/bundle-outdated.1 +1 -1
  37. data/man/bundle-outdated.1.txt +1 -1
  38. data/man/bundle-package.1 +1 -1
  39. data/man/bundle-package.1.txt +1 -1
  40. data/man/bundle-pristine.1 +1 -1
  41. data/man/bundle-pristine.1.txt +1 -1
  42. data/man/bundle-update.1 +1 -1
  43. data/man/bundle-update.1.txt +1 -1
  44. data/man/bundle-viz.1 +1 -1
  45. data/man/bundle-viz.1.txt +1 -1
  46. data/man/bundle.1 +1 -1
  47. data/man/bundle.1.txt +1 -1
  48. data/man/gemfile.5 +1 -1
  49. data/man/gemfile.5.txt +1 -1
  50. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40169121fecfdf293d22459dd8000d9c88cdc78b8bacf89a78b07d539b1e07ba
4
- data.tar.gz: 298192423d2c89bf6bfb12271e1df69ec47127bd25f23f25717635455f2d75cc
3
+ metadata.gz: d56462f2f8c79cbbedc0181c42011735545ba490563aa6ffd54fc3fdcf059a0d
4
+ data.tar.gz: 75f2fea3dde35a7cf22b2e208676670c619b43f86b7b30b5154f6e4f74eca50c
5
5
  SHA512:
6
- metadata.gz: 24be1fb8e8efc5d06f4363c04c2dc15c405a3cab4351ae5a61b498d34f7ebfa9bd8236083f2ce73aca5b5db891add7b315cec4a58860f731da0762cc4c36861b
7
- data.tar.gz: 3773d507eac9570ae8c3c792eadb610e574b2db96c3734681a2770df2b3fb56c81e5cea266b2ac5266b7ed137b3ccd4fbe41758cbd218d83a28159132cad028a
6
+ metadata.gz: 5e297400591076de5fdb17dd50d4cc36615d1294e402fb6675df7fd138e46aecce70dff55ff5efbb1b0ab9044f2c6df3ac7a838353693570f4be5fa0a2fa993e
7
+ data.tar.gz: ed1ceb6eaeafd2208447f362bc77867d7a0207ed1379c78e88e0e37b91f929f64376cce5fab1e2393833a78a836a3de51d19f93b630e5247d4cc4be190ea9444
@@ -1,3 +1,17 @@
1
+ ## 1.16.0 (2017-10-31)
2
+
3
+ Bugfixes:
4
+
5
+ - avoid new RubyGems warning about unsafe YAML loading (to keep output consistent) (@segiddins)
6
+ - load digest subclasses in a thread-safe manner (@segiddins, @colby-swandale)
7
+ - avoid unusued variable warnings under ruby 2.5 (@amatsuda)
8
+ - fix printing the same message twice in verbose mode ([#6028](https://github.com/bundler/bundler/issues/6028), @akhramov)
9
+ - allow `SignalException`s to bubble up to the interpreter during `bundle exec` ([#6090](https://github.com/bundler/bundler/issues/6090), @dekellum)
10
+ - avoid activating stdlib digest under Ruby 2.5 (@segiddins)
11
+ - prioritise explicitly requested gems in dependency resolution sort order (@segiddins)
12
+ - reduce memory usage during dependency resolution ([#6114](https://github.com/bundler/bundler/issues/6114), @greysteil)
13
+ - ensure that the default bundler gem is not accidentally activated on ruby 2.5 when using local git overrides (@segiddins)
14
+
1
15
  ## 1.16.0.pre.3 (2017-10-04)
2
16
 
3
17
  Features:
@@ -487,6 +487,8 @@ EOF
487
487
  private
488
488
 
489
489
  def eval_yaml_gemspec(path, contents)
490
+ Kernel.send(:require, "bundler/psyched_yaml")
491
+
490
492
  # If the YAML is invalid, Syck raises an ArgumentError, and Psych
491
493
  # raises a Psych::SyntaxError. See psyched_yaml.rb for more info.
492
494
  Gem::Specification.from_yaml(contents)
@@ -4,8 +4,8 @@ module Bundler
4
4
  # Represents metadata from when the Bundler gem was built.
5
5
  module BuildMetadata
6
6
  # begin ivars
7
- @built_at = "2017-10-05".freeze
8
- @git_commit_sha = "d94616dd8".freeze
7
+ @built_at = "2017-10-31".freeze
8
+ @git_commit_sha = "10f20fa33".freeze
9
9
  @release = true
10
10
  # end ivars
11
11
 
@@ -73,7 +73,7 @@ module Bundler
73
73
  signals = Signal.list.keys - RESERVED_SIGNALS
74
74
  signals.each {|s| trap(s, "DEFAULT") }
75
75
  Kernel.load(file)
76
- rescue SystemExit
76
+ rescue SystemExit, SignalException
77
77
  raise
78
78
  rescue Exception => e # rubocop:disable Lint/RescueException
79
79
  Bundler.ui = ui
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "digest/md5"
4
-
5
3
  module Bundler
6
4
  class CompactIndexClient
7
5
  class Cache
@@ -69,7 +67,7 @@ module Bundler
69
67
  def info_path(name)
70
68
  name = name.to_s
71
69
  if name =~ /[^a-z0-9_-]/
72
- name += "-#{Digest::MD5.hexdigest(name).downcase}"
70
+ name += "-#{SharedHelpers.digest(:MD5).hexdigest(name).downcase}"
73
71
  info_roots.last.join(name)
74
72
  else
75
73
  info_roots.first.join(name)
@@ -99,7 +99,7 @@ module Bundler
99
99
  # because we need to preserve \n line endings on windows when calculating
100
100
  # the checksum
101
101
  SharedHelpers.filesystem_access(path, :read) do
102
- Digest::MD5.hexdigest(IO.read(path))
102
+ SharedHelpers.digest(:MD5).hexdigest(IO.read(path))
103
103
  end
104
104
  end
105
105
  end
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "bundler/lockfile_parser"
4
- require "digest/sha1"
5
4
  require "set"
6
5
 
7
6
  module Bundler
@@ -206,18 +205,18 @@ module Bundler
206
205
  end
207
206
 
208
207
  def missing_specs?
209
- missing = []
210
- resolve.materialize(requested_dependencies, missing)
208
+ missing = missing_specs
211
209
  return false if missing.empty?
212
210
  Bundler.ui.debug "The definition is missing #{missing.map(&:full_name)}"
213
211
  true
214
212
  rescue BundlerError => e
215
- Bundler.ui.debug "The definition is missing dependencies, failed to resolve & materialize locally (#{e})"
216
- true
217
- ensure
218
213
  @index = nil
219
214
  @resolve = nil
220
215
  @specs = nil
216
+ @gem_version_promoter = create_gem_version_promoter
217
+
218
+ Bundler.ui.debug "The definition is missing dependencies, failed to resolve & materialize locally (#{e})"
219
+ true
221
220
  end
222
221
 
223
222
  def requested_specs
@@ -1,12 +1,22 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ begin
4
+ require "rubygems/deprecate"
5
+ rescue LoadError
6
+ # it's fine if it doesn't exist on the current RubyGems...
7
+ nil
8
+ end
9
+
3
10
  module Bundler
4
- if defined? ::Deprecate
11
+ if defined? Bundler::Deprecate
12
+ # nothing to do!
13
+ elsif defined? ::Deprecate
5
14
  Deprecate = ::Deprecate
6
15
  elsif defined? Gem::Deprecate
7
16
  Deprecate = Gem::Deprecate
8
17
  else
9
- class Deprecate; end
18
+ class Deprecate
19
+ end
10
20
  end
11
21
 
12
22
  unless Deprecate.respond_to?(:skip_during)
@@ -21,7 +31,7 @@ module Bundler
21
31
 
22
32
  unless Deprecate.respond_to?(:skip)
23
33
  def Deprecate.skip
24
- @skip
34
+ @skip ||= false
25
35
  end
26
36
  end
27
37
 
@@ -120,6 +120,8 @@ module Bundler
120
120
 
121
121
  def self.with_friendly_errors
122
122
  yield
123
+ rescue SignalException
124
+ raise
123
125
  rescue Exception => e
124
126
  FriendlyErrors.log_error(e)
125
127
  exit FriendlyErrors.exit_status(e)
@@ -52,7 +52,7 @@ module Bundler
52
52
  #
53
53
  # Fourthly, Bundler checks if the Gemfile.lock exists, and if so
54
54
  # then proceeds to set up a definition based on the Gemfile and the Gemfile.lock.
55
- # During this step Bundler will also download infomrmation about any new gems
55
+ # During this step Bundler will also download information about any new gems
56
56
  # that are not in the Gemfile.lock and resolve any dependencies if needed.
57
57
  #
58
58
  # Fifthly, Bundler resolves the dependencies either through a cache of gems or by remote.
@@ -113,9 +113,12 @@ module Bundler
113
113
  end
114
114
 
115
115
  # double-assignment to avoid warnings about variables that will be used by ERB
116
- bin_path = bin_path = Bundler.bin_path
117
- relative_gemfile_path = relative_gemfile_path = Bundler.default_gemfile.relative_path_from(bin_path)
118
- ruby_command = ruby_command = Thor::Util.ruby_command
116
+ bin_path = Bundler.bin_path
117
+ bin_path = bin_path
118
+ relative_gemfile_path = Bundler.default_gemfile.relative_path_from(bin_path)
119
+ relative_gemfile_path = relative_gemfile_path
120
+ ruby_command = Thor::Util.ruby_command
121
+ ruby_command = ruby_command
119
122
  template_path = File.expand_path("../templates/Executable", __FILE__)
120
123
  if spec.name == "bundler"
121
124
  template_path += ".bundler"
@@ -157,13 +160,16 @@ module Bundler
157
160
  unless path = Bundler.settings[:path]
158
161
  raise "Can't standalone without an explicit path set"
159
162
  end
160
- standalone_path = standalone_path = Bundler.root.join(path).relative_path_from(bin_path)
163
+ standalone_path = Bundler.root.join(path).relative_path_from(bin_path)
164
+ standalone_path = standalone_path
161
165
  template = File.read(File.expand_path("../templates/Executable.standalone", __FILE__))
162
- ruby_command = ruby_command = Thor::Util.ruby_command
166
+ ruby_command = Thor::Util.ruby_command
167
+ ruby_command = ruby_command
163
168
 
164
169
  spec.executables.each do |executable|
165
170
  next if executable == "bundle"
166
- executable_path = executable_path = Pathname(spec.full_gem_path).join(spec.bindir, executable).relative_path_from(bin_path)
171
+ executable_path = Pathname(spec.full_gem_path).join(spec.bindir, executable).relative_path_from(bin_path)
172
+ executable_path = executable_path
167
173
  File.open "#{bin_path}/#{executable}", "w", 0o755 do |f|
168
174
  f.puts ERB.new(template, nil, "-").result(binding)
169
175
  end
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "uri"
4
- require "digest/sha1"
5
4
 
6
5
  module Bundler
7
6
  module Plugin
@@ -272,7 +271,7 @@ module Bundler
272
271
  end
273
272
 
274
273
  def uri_hash
275
- Digest::SHA1.hexdigest(uri)
274
+ SharedHelpers.digest(:SHA1).hexdigest(uri)
276
275
  end
277
276
 
278
277
  # Note: Do not override if you don't know what you are doing.
@@ -26,3 +26,12 @@ module Bundler
26
26
  YamlLibrarySyntaxError = ::ArgumentError
27
27
  end
28
28
  end
29
+
30
+ require "bundler/deprecate"
31
+ begin
32
+ Bundler::Deprecate.skip_during do
33
+ require "rubygems/safe_yaml"
34
+ end
35
+ rescue LoadError
36
+ # it's OK if the file isn't there
37
+ end
@@ -201,12 +201,14 @@ module Bundler
201
201
  dependencies.sort_by do |dependency|
202
202
  dependency.all_sources = relevant_sources_for_vertex(activated.vertex_named(dependency.name))
203
203
  name = name_for(dependency)
204
+ vertex = activated.vertex_named(name)
204
205
  [
205
206
  @base_dg.vertex_named(name) ? 0 : 1,
206
- activated.vertex_named(name).payload ? 0 : 1,
207
+ vertex.payload ? 0 : 1,
208
+ vertex.root? ? 0 : 1,
207
209
  amount_constrained(dependency),
208
210
  conflicts[name] ? 0 : 1,
209
- activated.vertex_named(name).payload ? 0 : search_for(dependency).count,
211
+ vertex.payload ? 0 : search_for(dependency).count,
210
212
  self.class.platform_sort_key(dependency.__platform),
211
213
  ]
212
214
  end
@@ -48,7 +48,7 @@ module Bundler
48
48
  return true unless source = @package.instance_variable_get(:@gem)
49
49
  return true unless source.respond_to?(:with_read_io)
50
50
  digest = source.with_read_io do |io|
51
- digest = Digest::SHA256.new
51
+ digest = SharedHelpers.digest(:SHA256).new
52
52
  digest << io.read(16_384) until io.eof?
53
53
  io.rewind
54
54
  send(checksum_type(checksum), digest)
@@ -299,6 +299,7 @@ module Bundler
299
299
 
300
300
  def spec_from_gem(path, policy = nil)
301
301
  require "rubygems/security"
302
+ require "bundler/psyched_yaml"
302
303
  gem_from_path(path, security_policies[policy]).spec
303
304
  rescue Gem::Package::FormatError
304
305
  raise GemspecError, "Could not read gem at #{path}. It may be corrupted."
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "digest/sha1"
4
-
5
3
  module Bundler
6
4
  class Runtime
7
5
  include SharedHelpers
@@ -218,6 +218,11 @@ module Bundler
218
218
  end
219
219
  end
220
220
 
221
+ def digest(name)
222
+ require "digest"
223
+ Digest(name)
224
+ end
225
+
221
226
  private
222
227
 
223
228
  def validate_bundle_path
@@ -2,7 +2,6 @@
2
2
 
3
3
  require "bundler/vendored_fileutils"
4
4
  require "uri"
5
- require "digest/sha1"
6
5
 
7
6
  module Bundler
8
7
  class Source
@@ -284,7 +283,7 @@ module Bundler
284
283
  # If there is no URI scheme, assume it is an ssh/git URI
285
284
  input = uri
286
285
  end
287
- Digest::SHA1.hexdigest(input)
286
+ SharedHelpers.digest(:SHA1).hexdigest(input)
288
287
  end
289
288
 
290
289
  def cached_revision
@@ -221,6 +221,7 @@ module Bundler
221
221
 
222
222
  def in_path(&blk)
223
223
  checkout unless path.exist?
224
+ _ = URICredentialsFilter # load it before we chdir
224
225
  SharedHelpers.chdir(path, &blk)
225
226
  end
226
227
 
@@ -26,7 +26,7 @@ module Bundler
26
26
  cache_uri = original_uri || uri
27
27
 
28
28
  uri_parts = [cache_uri.host, cache_uri.user, cache_uri.port, cache_uri.path]
29
- uri_digest = Digest::MD5.hexdigest(uri_parts.compact.join("."))
29
+ uri_digest = SharedHelpers.digest(:MD5).hexdigest(uri_parts.compact.join("."))
30
30
 
31
31
  uri_parts[-1] = uri_digest
32
32
  uri_parts.compact.join(".")
@@ -33,7 +33,7 @@ module Bundler::Molinillo
33
33
  # @return [Array<Object>] all of the requirements that required
34
34
  # this vertex
35
35
  def requirements
36
- incoming_edges.map(&:requirement) + explicit_requirements
36
+ (incoming_edges.map(&:requirement) + explicit_requirements).uniq
37
37
  end
38
38
 
39
39
  # @return [Array<Edge>] the edges of {#graph} that have `self` as their
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bundler::Molinillo
4
4
  # The version of Bundler::Molinillo.
5
- VERSION = '0.6.3'.freeze
5
+ VERSION = '0.6.4'.freeze
6
6
  end
@@ -218,7 +218,7 @@ module Bundler::Molinillo
218
218
  next unless vertex.payload
219
219
 
220
220
  latest_version = vertex.payload.possibilities.reverse_each.find do |possibility|
221
- vertex.requirements.uniq.all? { |req| requirement_satisfied_by?(req, activated, possibility) }
221
+ vertex.requirements.all? { |req| requirement_satisfied_by?(req, activated, possibility) }
222
222
  end
223
223
 
224
224
  activated.set_payload(vertex.name, latest_version)
@@ -3,7 +3,7 @@ require "bundler/vendor/thor/lib/thor/group"
3
3
  require "bundler/vendor/thor/lib/thor/core_ext/io_binary_read"
4
4
 
5
5
  require "yaml"
6
- require "digest/md5"
6
+ require "digest"
7
7
  require "pathname"
8
8
 
9
9
  class Bundler::Thor::Runner < Bundler::Thor #:nodoc: # rubocop:disable ClassLength
@@ -90,7 +90,7 @@ class Bundler::Thor::Runner < Bundler::Thor #:nodoc: # rubocop:disable ClassLeng
90
90
  end
91
91
 
92
92
  thor_yaml[as] = {
93
- :filename => Digest::MD5.hexdigest(name + as),
93
+ :filename => Digest(:MD5).hexdigest(name + as),
94
94
  :location => location,
95
95
  :namespaces => Bundler::Thor::Util.namespaces_in_content(contents, base)
96
96
  }
@@ -7,7 +7,7 @@ module Bundler
7
7
  # We're doing this because we might write tests that deal
8
8
  # with other versions of bundler and we are unsure how to
9
9
  # handle this better.
10
- VERSION = "1.16.0.pre.3" unless defined?(::Bundler::VERSION)
10
+ VERSION = "1.16.0" unless defined?(::Bundler::VERSION)
11
11
 
12
12
  def self.overwrite_loaded_gem_version
13
13
  begin
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-BINSTUBS" "1" "September 2017" "" ""
4
+ .TH "BUNDLE\-BINSTUBS" "1" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
@@ -10,7 +10,7 @@
10
10
  \fBbundle binstubs\fR \fIGEM_NAME\fR [\-\-force] [\-\-path PATH] [\-\-standalone]
11
11
  .
12
12
  .SH "DESCRIPTION"
13
- Binstubs are scripts that wrap aroung executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it into \fBbin/\fR\. Binstubs are a shortcutor alternative to always using \fBbundle exec\fR\. This gives you a file that can by run directly, and one that will always run the correct gem version used by the application\.
13
+ Binstubs are scripts that wrap aroung executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it into \fBbin/\fR\. Binstubs are a shortcut\-or alternative\- to always using \fBbundle exec\fR\. This gives you a file that can by run directly, and one that will always run the correct gem version used by the application\.
14
14
  .
15
15
  .P
16
16
  For example, if you run \fBbundle binstubs rspec\-core\fR, Bundler will create the file \fBbin/rspec\fR\. That file will contain enough code to load Bundler, tell it to load the bundled gems, and then run rspec\.
@@ -11,7 +11,7 @@ BUNDLE-BINSTUBS(1) BUNDLE-BINSTUBS(1)
11
11
  1mDESCRIPTION0m
12
12
  Binstubs are scripts that wrap aroung executables. Bundler creates a
13
13
  small Ruby file (a binstub) that loads Bundler, runs the command, and
14
- puts it into 1mbin/22m. Binstubs are a shortcutaor alternativea to always
14
+ puts it into 1mbin/22m. Binstubs are a shortcut-or alternative- to always
15
15
  using 1mbundle exec22m. This gives you a file that can by run directly, and
16
16
  one that will always run the correct gem version used by the applica-
17
17
  tion.
@@ -45,4 +45,4 @@ BUNDLE-BINSTUBS(1) BUNDLE-BINSTUBS(1)
45
45
 
46
46
 
47
47
 
48
- September 2017 BUNDLE-BINSTUBS(1)
48
+ October 2017 BUNDLE-BINSTUBS(1)
@@ -9,7 +9,7 @@ bundle-binstubs(1) -- Install the binstubs of the listed gems
9
9
 
10
10
  Binstubs are scripts that wrap aroung executables. Bundler creates a
11
11
  small Ruby file (a binstub) that loads Bundler, runs the command,
12
- and puts it into `bin/`. Binstubs are a shortcutor alternative
12
+ and puts it into `bin/`. Binstubs are a shortcut-or alternative-
13
13
  to always using `bundle exec`. This gives you a file that can by run
14
14
  directly, and one that will always run the correct gem version
15
15
  used by the application.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-EXEC" "1" "September 2017" "" ""
4
+ .TH "BUNDLE\-EXEC" "1" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-exec\fR \- Execute a command in the context of the bundle
@@ -175,4 +175,4 @@ BUNDLE-EXEC(1) BUNDLE-EXEC(1)
175
175
 
176
176
 
177
177
 
178
- September 2017 BUNDLE-EXEC(1)
178
+ October 2017 BUNDLE-EXEC(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-GEM" "1" "September 2017" "" ""
4
+ .TH "BUNDLE\-GEM" "1" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
@@ -88,4 +88,4 @@ BUNDLE-GEM(1) BUNDLE-GEM(1)
88
88
 
89
89
 
90
90
 
91
- September 2017 BUNDLE-GEM(1)
91
+ October 2017 BUNDLE-GEM(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-LIST" "1" "September 2017" "" ""
4
+ .TH "BUNDLE\-LIST" "1" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-list\fR \- List all the gems in the bundle
@@ -18,4 +18,4 @@ BUNDLE-LIST(1) BUNDLE-LIST(1)
18
18
 
19
19
 
20
20
 
21
- September 2017 BUNDLE-LIST(1)
21
+ October 2017 BUNDLE-LIST(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-OUTDATED" "1" "September 2017" "" ""
4
+ .TH "BUNDLE\-OUTDATED" "1" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-outdated\fR \- List installed gems with newer versions available
@@ -124,4 +124,4 @@ BUNDLE-OUTDATED(1) BUNDLE-OUTDATED(1)
124
124
 
125
125
 
126
126
 
127
- September 2017 BUNDLE-OUTDATED(1)
127
+ October 2017 BUNDLE-OUTDATED(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-PACKAGE" "1" "September 2017" "" ""
4
+ .TH "BUNDLE\-PACKAGE" "1" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-package\fR \- Package your needed \fB\.gem\fR files into your application
@@ -76,4 +76,4 @@ BUNDLE-PACKAGE(1) BUNDLE-PACKAGE(1)
76
76
 
77
77
 
78
78
 
79
- September 2017 BUNDLE-PACKAGE(1)
79
+ October 2017 BUNDLE-PACKAGE(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-PRISTINE" "1" "September 2017" "" ""
4
+ .TH "BUNDLE\-PRISTINE" "1" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
@@ -41,4 +41,4 @@ BUNDLE-PRISTINE(1) BUNDLE-PRISTINE(1)
41
41
 
42
42
 
43
43
 
44
- September 2017 BUNDLE-PRISTINE(1)
44
+ October 2017 BUNDLE-PRISTINE(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-UPDATE" "1" "September 2017" "" ""
4
+ .TH "BUNDLE\-UPDATE" "1" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-update\fR \- Update your gems to the latest available versions
@@ -383,4 +383,4 @@ BUNDLE-UPDATE(1) BUNDLE-UPDATE(1)
383
383
 
384
384
 
385
385
 
386
- September 2017 BUNDLE-UPDATE(1)
386
+ October 2017 BUNDLE-UPDATE(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-VIZ" "1" "September 2017" "" ""
4
+ .TH "BUNDLE\-VIZ" "1" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
@@ -35,4 +35,4 @@ BUNDLE-VIZ(1) BUNDLE-VIZ(1)
35
35
 
36
36
 
37
37
 
38
- September 2017 BUNDLE-VIZ(1)
38
+ October 2017 BUNDLE-VIZ(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE" "1" "September 2017" "" ""
4
+ .TH "BUNDLE" "1" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\fR \- Ruby Dependency Management
@@ -110,4 +110,4 @@ BUNDLE(1) BUNDLE(1)
110
110
 
111
111
 
112
112
 
113
- September 2017 BUNDLE(1)
113
+ October 2017 BUNDLE(1)
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "GEMFILE" "5" "September 2017" "" ""
4
+ .TH "GEMFILE" "5" "October 2017" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
@@ -633,4 +633,4 @@ GEMFILE(5) GEMFILE(5)
633
633
 
634
634
 
635
635
 
636
- September 2017 GEMFILE(5)
636
+ October 2017 GEMFILE(5)
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: 1.16.0.pre.3
4
+ version: 1.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -17,7 +17,7 @@ authors:
17
17
  autorequire:
18
18
  bindir: exe
19
19
  cert_chain: []
20
- date: 2017-10-05 00:00:00.000000000 Z
20
+ date: 2017-10-31 00:00:00.000000000 Z
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  name: automatiek