bundler-source-vault 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/gemvault_load_path.rb +7 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e731b876c99024cab69d38f9a889c58837d394f6156dfec12ef3e5d933ce440f
|
|
4
|
+
data.tar.gz: 9fda8d6cd924f07964c57aecdea8c879367aeab2848e774354be95df15d02f5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6093a166c405cbbedaac9134090d6db934f5cca55433ff36bef2d4bb202959dc2f99321de21d25d71c8538a84d7f05452aeeef72a66b99838253981e5fb8b951
|
|
7
|
+
data.tar.gz: 02bfc6e00faa91f8fd8739dc46143a4646d8126b6732cbef273a585931f09329bb9d6a7489494119c346452b567481555d55591518f306e6c572a1ecb601bd92
|
data/gemvault_load_path.rb
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# Bundler can evaluate two installed copies of the shim in one process -- an
|
|
2
|
+
# upgrade resolving a newer bundler-source-vault while the index still names
|
|
3
|
+
# the old one -- and require_relative cannot deduplicate across paths, so a
|
|
4
|
+
# second copy would reopen the module and warn on every constant. The first
|
|
5
|
+
# copy wins, as it does for Bundler::Plugin::VaultSource in plugins.rb.
|
|
6
|
+
return if defined?(BundlerSourceVault::GemvaultLoadPath)
|
|
7
|
+
|
|
1
8
|
module BundlerSourceVault
|
|
2
9
|
# Finds gemvault, and the runtime dependencies it needs, across every gem root
|
|
3
10
|
# that could hold either, and puts their require paths on $LOAD_PATH.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bundler-source-vault
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Gillis
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.2.
|
|
18
|
+
version: 0.2.6
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.2.
|
|
25
|
+
version: 0.2.6
|
|
26
26
|
description: Registers the :vault source type with Bundler, enabling gem installation
|
|
27
27
|
from .gemv vault files
|
|
28
28
|
email:
|