bundler 2.0.0.pre.1 → 2.0.0.pre.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bundler might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +31 -4
- data/bundler.gemspec +10 -4
- data/lib/bundler/build_metadata.rb +13 -6
- data/lib/bundler/current_ruby.rb +1 -0
- data/lib/bundler/dsl.rb +2 -2
- data/lib/bundler/feature_flag.rb +2 -0
- data/lib/bundler/shared_helpers.rb +13 -3
- data/lib/bundler/source/metadata.rb +2 -3
- data/lib/bundler/spec_set.rb +22 -6
- data/lib/bundler/templates/newgem/Gemfile.tt +0 -2
- data/lib/bundler/version.rb +1 -1
- data/man/bundle-add.1 +1 -1
- data/man/bundle-add.1.txt +1 -1
- data/man/bundle-binstubs.1 +1 -1
- data/man/bundle-binstubs.1.txt +1 -1
- data/man/bundle-check.1 +1 -1
- data/man/bundle-check.1.txt +1 -1
- data/man/bundle-clean.1 +1 -1
- data/man/bundle-clean.1.txt +1 -1
- data/man/bundle-config.1 +1 -1
- data/man/bundle-config.1.txt +1 -1
- data/man/bundle-doctor.1 +1 -1
- data/man/bundle-doctor.1.txt +1 -1
- data/man/bundle-exec.1 +1 -1
- data/man/bundle-exec.1.txt +1 -1
- data/man/bundle-gem.1 +1 -1
- data/man/bundle-gem.1.txt +1 -1
- data/man/bundle-info.1 +1 -1
- data/man/bundle-info.1.txt +1 -1
- data/man/bundle-init.1 +1 -1
- data/man/bundle-init.1.txt +1 -1
- data/man/bundle-inject.1 +1 -1
- data/man/bundle-inject.1.txt +1 -1
- data/man/bundle-install.1 +1 -1
- data/man/bundle-install.1.txt +1 -1
- data/man/bundle-list.1 +1 -1
- data/man/bundle-list.1.txt +1 -1
- data/man/bundle-lock.1 +1 -1
- data/man/bundle-lock.1.txt +1 -1
- data/man/bundle-open.1 +1 -1
- data/man/bundle-open.1.txt +1 -1
- data/man/bundle-outdated.1 +1 -1
- data/man/bundle-outdated.1.txt +1 -1
- data/man/bundle-package.1 +1 -1
- data/man/bundle-package.1.txt +1 -1
- data/man/bundle-platform.1 +1 -1
- data/man/bundle-platform.1.txt +1 -1
- data/man/bundle-pristine.1 +1 -1
- data/man/bundle-pristine.1.txt +1 -1
- data/man/bundle-remove.1 +1 -1
- data/man/bundle-remove.1.txt +1 -1
- data/man/bundle-show.1 +1 -1
- data/man/bundle-show.1.txt +1 -1
- data/man/bundle-update.1 +1 -1
- data/man/bundle-update.1.txt +1 -1
- data/man/bundle-viz.1 +1 -1
- data/man/bundle-viz.1.txt +1 -1
- data/man/bundle.1 +5 -1
- data/man/bundle.1.txt +4 -1
- data/man/bundle.ronn +3 -0
- data/man/gemfile.5 +5 -5
- data/man/gemfile.5.ronn +4 -4
- data/man/gemfile.5.txt +5 -5
- metadata +4 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be762e3ff73a0f185de7eb87ad4cdc414f3442c95c3d836198c5cc0c0405ad58
|
4
|
+
data.tar.gz: cbbb6eede657cbfdebaea6259e26821ba302e35eaa3b12cc6047a32c8c7e5d3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb5714ba80986e33848040ded67bfd18d7a8d8da7fea548fe10268942e1054f2faf60bb58de7617ea261e88815f77182a2db7e8f27f02b5026418e1790d211e9
|
7
|
+
data.tar.gz: 863ff27884afa18ff18990f983c2d18f2f1db8b5cedecd6a54902da9ebc59c30d870dff71da53de73fe33072ca9fd507b2fb285eb5098ca89928ce0dd1c192f3
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,35 @@
|
|
1
|
-
## 2.0.0.pre.
|
1
|
+
## 2.0.0.pre.3 (2018-12-30)
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
-
|
3
|
+
Breaking Changes:
|
4
|
+
|
5
|
+
- Bundler 2 now requires RubyGems 3.0.0 at minimum
|
6
|
+
|
7
|
+
Changes:
|
8
|
+
|
9
|
+
- Ruby 2.6 compatibility fixes (@segiddins)
|
10
|
+
- Import changes from Bundler 1.17.3 release
|
11
|
+
|
12
|
+
Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
|
13
|
+
|
14
|
+
## 2.0.0.pre.2 (2018-11-27)
|
15
|
+
|
16
|
+
Breaking Changes:
|
17
|
+
|
18
|
+
- `:github` source in the Gemfile now defaults to using HTTPS
|
19
|
+
|
20
|
+
Changes
|
21
|
+
|
22
|
+
- Add compatibility for Bundler merge into ruby-src
|
23
|
+
|
24
|
+
Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
|
25
|
+
|
26
|
+
## 2.0.0.pre.1 (2018-11-09)
|
27
|
+
|
28
|
+
Breaking Changes:
|
29
|
+
|
30
|
+
- Dropped support for versions of Ruby < 2.3
|
31
|
+
- Dropped support for version of RubyGems < 2.5
|
32
|
+
- Moved error messages from STDOUT to STDERR
|
6
33
|
|
7
34
|
Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
|
8
35
|
|
data/bundler.gemspec
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
require "
|
4
|
+
begin
|
5
|
+
require File.expand_path("../lib/bundler/version", __FILE__)
|
6
|
+
rescue LoadError
|
7
|
+
# for Ruby core repository
|
8
|
+
require File.expand_path("../bundler/version", __FILE__)
|
9
|
+
end
|
6
10
|
|
7
11
|
Gem::Specification.new do |s|
|
8
12
|
s.name = "bundler"
|
@@ -30,7 +34,7 @@ Gem::Specification.new do |s|
|
|
30
34
|
|
31
35
|
if s.version >= Gem::Version.new("2.a".dup)
|
32
36
|
s.required_ruby_version = ">= 2.3.0"
|
33
|
-
s.required_rubygems_version = ">=
|
37
|
+
s.required_rubygems_version = ">= 3.0.0"
|
34
38
|
else
|
35
39
|
s.required_ruby_version = ">= 1.8.7"
|
36
40
|
s.required_rubygems_version = ">= 1.3.6"
|
@@ -43,7 +47,9 @@ Gem::Specification.new do |s|
|
|
43
47
|
s.add_development_dependency "ronn", "~> 0.7.3"
|
44
48
|
s.add_development_dependency "rspec", "~> 3.6"
|
45
49
|
|
46
|
-
|
50
|
+
base_dir = File.dirname(__FILE__).gsub(%r{([^A-Za-z0-9_\-.,:\/@\n])}, "\\\\\\1")
|
51
|
+
s.files = IO.popen("git -C #{base_dir} ls-files -z", &:read).split("\x0").select {|f| f.match(%r{^(lib|exe)/}) }
|
52
|
+
|
47
53
|
# we don't check in man pages, but we need to ship them because
|
48
54
|
# we use them to generate the long-form help for each command.
|
49
55
|
s.files += Dir.glob("man/**/*")
|
@@ -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 = "2018-
|
8
|
-
@git_commit_sha = "
|
7
|
+
@built_at = "2018-12-30".freeze
|
8
|
+
@git_commit_sha = "526bb665e".freeze
|
9
9
|
@release = true
|
10
10
|
# end ivars
|
11
11
|
|
@@ -30,12 +30,19 @@ module Bundler
|
|
30
30
|
# If Bundler has been installed without its .git directory and without a
|
31
31
|
# commit instance variable then we can't determine its commits SHA.
|
32
32
|
git_dir = File.join(File.expand_path("../../..", __FILE__), ".git")
|
33
|
-
|
33
|
+
if File.directory?(git_dir)
|
34
|
+
return @git_commit_sha = Dir.chdir(git_dir) { `git rev-parse --short HEAD`.strip.freeze }
|
35
|
+
end
|
34
36
|
|
35
|
-
#
|
36
|
-
|
37
|
-
|
37
|
+
# If Bundler is a submodule in RubyGems, get the submodule commit
|
38
|
+
git_sub_dir = File.join(File.expand_path("../../../..", __FILE__), ".git")
|
39
|
+
if File.directory?(git_sub_dir)
|
40
|
+
return @git_commit_sha = Dir.chdir(git_sub_dir) do
|
41
|
+
`git ls-tree --abbrev=8 HEAD bundler`.split(/\s/).fetch(2, "").strip.freeze
|
42
|
+
end
|
38
43
|
end
|
44
|
+
|
45
|
+
@git_commit_sha ||= "unknown"
|
39
46
|
end
|
40
47
|
|
41
48
|
# Whether this is an official release build of Bundler.
|
data/lib/bundler/current_ruby.rb
CHANGED
data/lib/bundler/dsl.rb
CHANGED
@@ -474,7 +474,7 @@ repo_name ||= user_name
|
|
474
474
|
msg = "This Gemfile contains multiple primary sources. " \
|
475
475
|
"Each source after the first must include a block to indicate which gems " \
|
476
476
|
"should come from that source"
|
477
|
-
unless Bundler.feature_flag.
|
477
|
+
unless Bundler.feature_flag.bundler_3_mode?
|
478
478
|
msg += ". To downgrade this error to a warning, run " \
|
479
479
|
"`bundle config --delete disable_multisource`"
|
480
480
|
end
|
@@ -499,7 +499,7 @@ repo_name ||= user_name
|
|
499
499
|
end
|
500
500
|
|
501
501
|
Bundler::SharedHelpers.major_deprecation 3, <<-EOS
|
502
|
-
The :#{name} git source is deprecated, and will be removed in Bundler
|
502
|
+
The :#{name} git source is deprecated, and will be removed in Bundler 3.0.#{additional_message} Add this code to the top of your Gemfile to ensure it continues to work:
|
503
503
|
|
504
504
|
git_source(:#{name}) #{replacement}
|
505
505
|
|
data/lib/bundler/feature_flag.rb
CHANGED
@@ -61,6 +61,8 @@ module Bundler
|
|
61
61
|
|
62
62
|
settings_option(:default_cli_command) { bundler_3_mode? ? :cli_help : :install }
|
63
63
|
|
64
|
+
settings_method(:github_https?, "github.https") { bundler_2_mode? }
|
65
|
+
|
64
66
|
def initialize(bundler_version)
|
65
67
|
@bundler_version = Gem::Version.create(bundler_version)
|
66
68
|
end
|
@@ -274,7 +274,15 @@ module Bundler
|
|
274
274
|
until !File.directory?(current) || current == previous
|
275
275
|
if ENV["BUNDLE_SPEC_RUN"]
|
276
276
|
# avoid stepping above the tmp directory when testing
|
277
|
-
|
277
|
+
gemspec = if ENV["BUNDLE_RUBY"] && ENV["BUNDLE_GEM"]
|
278
|
+
# for Ruby Core
|
279
|
+
"lib/bundler.gemspec"
|
280
|
+
else
|
281
|
+
"bundler.gemspec"
|
282
|
+
end
|
283
|
+
|
284
|
+
# avoid stepping above the tmp directory when testing
|
285
|
+
return nil if File.file?(File.join(current, gemspec))
|
278
286
|
end
|
279
287
|
|
280
288
|
names.each do |name|
|
@@ -303,10 +311,12 @@ module Bundler
|
|
303
311
|
unless File.exist?(exe_file)
|
304
312
|
exe_file = File.expand_path("../../../exe/bundle", __FILE__)
|
305
313
|
end
|
306
|
-
|
307
314
|
Bundler::SharedHelpers.set_env "BUNDLE_BIN_PATH", exe_file
|
308
315
|
rescue Gem::GemNotFoundException
|
309
|
-
|
316
|
+
exe_file = File.expand_path("../../../exe/bundle", __FILE__)
|
317
|
+
# for Ruby core repository
|
318
|
+
exe_file = File.expand_path("../../../../bin/bundle", __FILE__) unless File.exist?(exe_file)
|
319
|
+
Bundler::SharedHelpers.set_env "BUNDLE_BIN_PATH", exe_file
|
310
320
|
end
|
311
321
|
|
312
322
|
# Set BUNDLE_GEMFILE
|
@@ -19,9 +19,8 @@ module Bundler
|
|
19
19
|
# can't point to the actual gemspec or else the require paths will be wrong
|
20
20
|
s.loaded_from = File.expand_path("..", __FILE__)
|
21
21
|
end
|
22
|
-
|
23
|
-
|
24
|
-
elsif local_spec = Bundler.rubygems.find_name("bundler").find {|s| s.version.to_s == VERSION }
|
22
|
+
|
23
|
+
if local_spec = Bundler.rubygems.find_name("bundler").find {|s| s.version.to_s == VERSION }
|
25
24
|
idx << local_spec
|
26
25
|
end
|
27
26
|
|
data/lib/bundler/spec_set.rb
CHANGED
@@ -1,16 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "tsort"
|
4
|
-
require "forwardable"
|
5
4
|
require "set"
|
6
5
|
|
7
6
|
module Bundler
|
8
7
|
class SpecSet
|
9
|
-
|
10
|
-
include TSort
|
11
|
-
|
12
|
-
def_delegators :@specs, :<<, :length, :add, :remove, :size, :empty?
|
13
|
-
def_delegators :sorted, :each
|
8
|
+
include Enumerable
|
9
|
+
include TSort
|
14
10
|
|
15
11
|
def initialize(specs)
|
16
12
|
@specs = specs
|
@@ -132,6 +128,26 @@ module Bundler
|
|
132
128
|
what_required(req) << spec
|
133
129
|
end
|
134
130
|
|
131
|
+
def <<(spec)
|
132
|
+
@specs << spec
|
133
|
+
end
|
134
|
+
|
135
|
+
def length
|
136
|
+
@specs.length
|
137
|
+
end
|
138
|
+
|
139
|
+
def size
|
140
|
+
@specs.size
|
141
|
+
end
|
142
|
+
|
143
|
+
def empty?
|
144
|
+
@specs.empty?
|
145
|
+
end
|
146
|
+
|
147
|
+
def each(&b)
|
148
|
+
sorted.each(&b)
|
149
|
+
end
|
150
|
+
|
135
151
|
private
|
136
152
|
|
137
153
|
def sorted
|
data/lib/bundler/version.rb
CHANGED
@@ -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 = "2.0.0.pre.
|
10
|
+
VERSION = "2.0.0.pre.3" unless defined?(::Bundler::VERSION)
|
11
11
|
|
12
12
|
def self.overwrite_loaded_gem_version
|
13
13
|
begin
|
data/man/bundle-add.1
CHANGED
data/man/bundle-add.1.txt
CHANGED
data/man/bundle-binstubs.1
CHANGED
@@ -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" "
|
4
|
+
.TH "BUNDLE\-BINSTUBS" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
|
data/man/bundle-binstubs.1.txt
CHANGED
data/man/bundle-check.1
CHANGED
@@ -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\-CHECK" "1" "
|
4
|
+
.TH "BUNDLE\-CHECK" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
|
data/man/bundle-check.1.txt
CHANGED
data/man/bundle-clean.1
CHANGED
@@ -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\-CLEAN" "1" "
|
4
|
+
.TH "BUNDLE\-CLEAN" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
|
data/man/bundle-clean.1.txt
CHANGED
data/man/bundle-config.1
CHANGED
data/man/bundle-config.1.txt
CHANGED
data/man/bundle-doctor.1
CHANGED
data/man/bundle-doctor.1.txt
CHANGED
data/man/bundle-exec.1
CHANGED
data/man/bundle-exec.1.txt
CHANGED
data/man/bundle-gem.1
CHANGED
data/man/bundle-gem.1.txt
CHANGED
data/man/bundle-info.1
CHANGED
@@ -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\-INFO" "1" "
|
4
|
+
.TH "BUNDLE\-INFO" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-info\fR \- Show information for the given gem in your bundle
|
data/man/bundle-info.1.txt
CHANGED
data/man/bundle-init.1
CHANGED
@@ -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\-INIT" "1" "
|
4
|
+
.TH "BUNDLE\-INIT" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-init\fR \- Generates a Gemfile into the current working directory
|
data/man/bundle-init.1.txt
CHANGED
data/man/bundle-inject.1
CHANGED
@@ -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\-INJECT" "1" "
|
4
|
+
.TH "BUNDLE\-INJECT" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
|
data/man/bundle-inject.1.txt
CHANGED
data/man/bundle-install.1
CHANGED
@@ -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\-INSTALL" "1" "
|
4
|
+
.TH "BUNDLE\-INSTALL" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
|
data/man/bundle-install.1.txt
CHANGED
data/man/bundle-list.1
CHANGED
data/man/bundle-list.1.txt
CHANGED
data/man/bundle-lock.1
CHANGED
data/man/bundle-lock.1.txt
CHANGED
data/man/bundle-open.1
CHANGED
@@ -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\-OPEN" "1" "
|
4
|
+
.TH "BUNDLE\-OPEN" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
|
data/man/bundle-open.1.txt
CHANGED
data/man/bundle-outdated.1
CHANGED
@@ -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" "
|
4
|
+
.TH "BUNDLE\-OUTDATED" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-outdated\fR \- List installed gems with newer versions available
|
data/man/bundle-outdated.1.txt
CHANGED
data/man/bundle-package.1
CHANGED
@@ -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" "
|
4
|
+
.TH "BUNDLE\-PACKAGE" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-package\fR \- Package your needed \fB\.gem\fR files into your application
|
data/man/bundle-package.1.txt
CHANGED
data/man/bundle-platform.1
CHANGED
@@ -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\-PLATFORM" "1" "
|
4
|
+
.TH "BUNDLE\-PLATFORM" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-platform\fR \- Displays platform compatibility information
|
data/man/bundle-platform.1.txt
CHANGED
data/man/bundle-pristine.1
CHANGED
@@ -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" "
|
4
|
+
.TH "BUNDLE\-PRISTINE" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
|
data/man/bundle-pristine.1.txt
CHANGED
data/man/bundle-remove.1
CHANGED
data/man/bundle-remove.1.txt
CHANGED
data/man/bundle-show.1
CHANGED
@@ -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\-SHOW" "1" "
|
4
|
+
.TH "BUNDLE\-SHOW" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
|
data/man/bundle-show.1.txt
CHANGED
data/man/bundle-update.1
CHANGED
@@ -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" "
|
4
|
+
.TH "BUNDLE\-UPDATE" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-update\fR \- Update your gems to the latest available versions
|
data/man/bundle-update.1.txt
CHANGED
data/man/bundle-viz.1
CHANGED
@@ -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" "
|
4
|
+
.TH "BUNDLE\-VIZ" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
|
data/man/bundle-viz.1.txt
CHANGED
data/man/bundle.1
CHANGED
@@ -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" "
|
4
|
+
.TH "BUNDLE" "1" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBbundle\fR \- Ruby Dependency Management
|
@@ -116,6 +116,10 @@ Clean up unused gems in your Bundler directory
|
|
116
116
|
\fBbundle doctor(1)\fR \fIbundle\-doctor\.1\.html\fR
|
117
117
|
Display warnings about common problems
|
118
118
|
.
|
119
|
+
.TP
|
120
|
+
\fBbundle remove(1)\fR \fIbundle\-remove\.1\.html\fR
|
121
|
+
Removes gems from the Gemfile
|
122
|
+
.
|
119
123
|
.SH "PLUGINS"
|
120
124
|
When running a command that isn\'t listed in PRIMARY COMMANDS or UTILITIES, Bundler will try to find an executable on your path named \fBbundler\-<command>\fR and execute it, passing down any extra arguments to it\.
|
121
125
|
.
|
data/man/bundle.1.txt
CHANGED
@@ -92,6 +92,9 @@ UTILITIES
|
|
92
92
|
bundle doctor(1) bundle-doctor.1.html
|
93
93
|
Display warnings about common problems
|
94
94
|
|
95
|
+
bundle remove(1) bundle-remove.1.html
|
96
|
+
Removes gems from the Gemfile
|
97
|
+
|
95
98
|
PLUGINS
|
96
99
|
When running a command that isn't listed in PRIMARY COMMANDS or UTILI-
|
97
100
|
TIES, Bundler will try to find an executable on your path named
|
@@ -110,4 +113,4 @@ OBSOLETE
|
|
110
113
|
|
111
114
|
|
112
115
|
|
113
|
-
|
116
|
+
December 2018 BUNDLE(1)
|
data/man/bundle.ronn
CHANGED
@@ -94,6 +94,9 @@ We divide `bundle` subcommands into primary commands and utilities:
|
|
94
94
|
* [`bundle doctor(1)`](bundle-doctor.1.html):
|
95
95
|
Display warnings about common problems
|
96
96
|
|
97
|
+
* [`bundle remove(1)`](bundle-remove.1.html):
|
98
|
+
Removes gems from the Gemfile
|
99
|
+
|
97
100
|
## PLUGINS
|
98
101
|
|
99
102
|
When running a command that isn't listed in PRIMARY COMMANDS or UTILITIES,
|
data/man/gemfile.5
CHANGED
@@ -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" "
|
4
|
+
.TH "GEMFILE" "5" "December 2018" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
|
@@ -299,19 +299,19 @@ The full list of platforms and supported versions includes:
|
|
299
299
|
.
|
300
300
|
.TP
|
301
301
|
\fBruby\fR
|
302
|
-
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5
|
302
|
+
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
|
303
303
|
.
|
304
304
|
.TP
|
305
305
|
\fBmri\fR
|
306
|
-
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5
|
306
|
+
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
|
307
307
|
.
|
308
308
|
.TP
|
309
309
|
\fBmingw\fR
|
310
|
-
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5
|
310
|
+
1\.8, 1\.9, 2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
|
311
311
|
.
|
312
312
|
.TP
|
313
313
|
\fBx64_mingw\fR
|
314
|
-
2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5
|
314
|
+
2\.0, 2\.1, 2\.2, 2\.3, 2\.4, 2\.5, 2\.6
|
315
315
|
.
|
316
316
|
.P
|
317
317
|
As with groups, you can specify one or more platforms:
|
data/man/gemfile.5.ronn
CHANGED
@@ -216,13 +216,13 @@ used on platforms with Ruby 2.3, use:
|
|
216
216
|
The full list of platforms and supported versions includes:
|
217
217
|
|
218
218
|
* `ruby`:
|
219
|
-
1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
|
219
|
+
1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
|
220
220
|
* `mri`:
|
221
|
-
1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
|
221
|
+
1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
|
222
222
|
* `mingw`:
|
223
|
-
1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
|
223
|
+
1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
|
224
224
|
* `x64_mingw`:
|
225
|
-
2.0, 2.1, 2.2, 2.3, 2.4, 2.5
|
225
|
+
2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
|
226
226
|
|
227
227
|
As with groups, you can specify one or more platforms:
|
228
228
|
|
data/man/gemfile.5.txt
CHANGED
@@ -271,14 +271,14 @@ GEMS
|
|
271
271
|
|
272
272
|
The full list of platforms and supported versions includes:
|
273
273
|
|
274
|
-
ruby 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
|
274
|
+
ruby 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
|
275
275
|
|
276
|
-
mri 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
|
276
|
+
mri 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
|
277
277
|
|
278
|
-
mingw 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
|
278
|
+
mingw 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
|
279
279
|
|
280
280
|
x64_mingw
|
281
|
-
2.0, 2.1, 2.2, 2.3, 2.4, 2.5
|
281
|
+
2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
|
282
282
|
|
283
283
|
As with groups, you can specify one or more platforms:
|
284
284
|
|
@@ -650,4 +650,4 @@ SOURCE PRIORITY
|
|
650
650
|
|
651
651
|
|
652
652
|
|
653
|
-
|
653
|
+
December 2018 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: 2.0.0.pre.
|
4
|
+
version: 2.0.0.pre.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Arko
|
@@ -22,7 +22,7 @@ authors:
|
|
22
22
|
autorequire:
|
23
23
|
bindir: exe
|
24
24
|
cert_chain: []
|
25
|
-
date: 2018-
|
25
|
+
date: 2018-12-30 00:00:00.000000000 Z
|
26
26
|
dependencies:
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: automatiek
|
@@ -439,10 +439,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
439
439
|
requirements:
|
440
440
|
- - ">="
|
441
441
|
- !ruby/object:Gem::Version
|
442
|
-
version:
|
442
|
+
version: 3.0.0
|
443
443
|
requirements: []
|
444
|
-
|
445
|
-
rubygems_version: 2.7.7
|
444
|
+
rubygems_version: 3.0.1
|
446
445
|
signing_key:
|
447
446
|
specification_version: 4
|
448
447
|
summary: The best way to manage your application's dependencies
|