bundler 1.17.0.pre.2 → 1.17.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/version.rb +1 -1
- data/man/bundle-config.1 +16 -0
- data/man/bundle-config.1.txt +16 -0
- data/man/bundle-config.ronn +14 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 826b081c960a2fe0084ea124893a754eeee572161e33a9930dca4b44837a5192
|
4
|
+
data.tar.gz: 411870bead2d4c52e16aef27fcf0e5f7ddd75a6e71b4a2b78bea43b017eb892f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0497838c924f913990dffdcab7b69f0418290fc5a5c335ade02bd4ca17140df090759d8043dc39c33b32bdc6fee78ffcf5dc88f0f28d0768349324c7416ce711'
|
7
|
+
data.tar.gz: cceaf1c1f6a43c30a75ef3cb4ad4aa2efb5c6e39acc0405dd55db3de8ad0d470f8efac578fcb94d356457cb9c1e023ef55b392d7d4f1d676408a6b6f8b06206d
|
data/CHANGELOG.md
CHANGED
@@ -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-10-
|
8
|
-
@git_commit_sha = "
|
7
|
+
@built_at = "2018-10-25".freeze
|
8
|
+
@git_commit_sha = "1fe7e93e9".freeze
|
9
9
|
@release = true
|
10
10
|
# end ivars
|
11
11
|
|
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 = "1.17.0
|
10
|
+
VERSION = "1.17.0" unless defined?(::Bundler::VERSION)
|
11
11
|
|
12
12
|
def self.overwrite_loaded_gem_version
|
13
13
|
begin
|
data/man/bundle-config.1
CHANGED
@@ -478,4 +478,20 @@ export BUNDLE_GITHUB__COM=abcd0123generatedtoken:x\-oauth\-basic
|
|
478
478
|
.fi
|
479
479
|
.
|
480
480
|
.IP "" 0
|
481
|
+
.
|
482
|
+
.SH "CONFIGURE BUNDLER DIRECTORIES"
|
483
|
+
Bundler\'s home, config, cache and plugin directories are able to be configured through environment variables\. The default location for Bundler\'s home directory is \fB~/\.bundle\fR, which all directories inherit from by default\. The following outlines the available environment variables and their default values
|
484
|
+
.
|
485
|
+
.IP "" 4
|
486
|
+
.
|
487
|
+
.nf
|
488
|
+
|
489
|
+
BUNDLE_USER_HOME : $HOME/\.bundle
|
490
|
+
BUNDLE_USER_CACHE : $BUNDLE_USER_HOME/cache
|
491
|
+
BUNDLE_USER_CONFIG : $BUNDLE_USER_HOME/config
|
492
|
+
BUNDLE_USER_PLUGIN : $BUNDLE_USER_HOME/plugin
|
493
|
+
.
|
494
|
+
.fi
|
495
|
+
.
|
496
|
+
.IP "" 0
|
481
497
|
|
data/man/bundle-config.1.txt
CHANGED
@@ -507,6 +507,22 @@ CREDENTIALS FOR GEM SOURCES
|
|
507
507
|
|
508
508
|
|
509
509
|
|
510
|
+
CONFIGURE BUNDLER DIRECTORIES
|
511
|
+
Bundler's home, config, cache and plugin directories are able to be
|
512
|
+
configured through environment variables. The default location for
|
513
|
+
Bundler's home directory is ~/.bundle, which all directories inherit
|
514
|
+
from by default. The following outlines the available environment vari-
|
515
|
+
ables and their default values
|
516
|
+
|
517
|
+
|
518
|
+
|
519
|
+
BUNDLE_USER_HOME : $HOME/.bundle
|
520
|
+
BUNDLE_USER_CACHE : $BUNDLE_USER_HOME/cache
|
521
|
+
BUNDLE_USER_CONFIG : $BUNDLE_USER_HOME/config
|
522
|
+
BUNDLE_USER_PLUGIN : $BUNDLE_USER_HOME/plugin
|
523
|
+
|
524
|
+
|
525
|
+
|
510
526
|
|
511
527
|
|
512
528
|
|
data/man/bundle-config.ronn
CHANGED
@@ -381,3 +381,17 @@ This is especially useful for private repositories on hosts such as Github,
|
|
381
381
|
where you can use personal OAuth tokens:
|
382
382
|
|
383
383
|
export BUNDLE_GITHUB__COM=abcd0123generatedtoken:x-oauth-basic
|
384
|
+
|
385
|
+
|
386
|
+
## CONFIGURE BUNDLER DIRECTORIES
|
387
|
+
|
388
|
+
Bundler's home, config, cache and plugin directories are able to be configured
|
389
|
+
through environment variables. The default location for Bundler's home directory is
|
390
|
+
`~/.bundle`, which all directories inherit from by default. The following
|
391
|
+
outlines the available environment variables and their default values
|
392
|
+
|
393
|
+
BUNDLE_USER_HOME : $HOME/.bundle
|
394
|
+
BUNDLE_USER_CACHE : $BUNDLE_USER_HOME/cache
|
395
|
+
BUNDLE_USER_CONFIG : $BUNDLE_USER_HOME/config
|
396
|
+
BUNDLE_USER_PLUGIN : $BUNDLE_USER_HOME/plugin
|
397
|
+
|
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.17.0
|
4
|
+
version: 1.17.0
|
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-10-
|
25
|
+
date: 2018-10-25 00:00:00.000000000 Z
|
26
26
|
dependencies:
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: automatiek
|