gemvault 0.1.1 → 0.1.2
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/lib/bundler/plugin/vault_source.rb +5 -0
- data/lib/gemvault/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a02c9b869cf7a374027dc96bccca295aee69f2d1dfd06f4ec7120b025aaf6d6
|
|
4
|
+
data.tar.gz: 82542f43ccab3337a08d0f2b34445ab0535f659e24e4542e71f742510280d215
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31536e18dfb5508c186ca4771fa60dcd569aa5e1786e71e757c15a30133e0281833434433dc90384669b93507f987191dd68c642a97b7b29d41c28e882417d08
|
|
7
|
+
data.tar.gz: 7bc1958e230e05ec6bab5c283b835732494f2b05065bf3c56bcf7916e0aa2fe4c693a3065a2fc4fd1616165892220d6fdd173262d75a829f7fe68c1b6691a8e4
|
|
@@ -76,6 +76,11 @@ module Bundler
|
|
|
76
76
|
{}
|
|
77
77
|
end
|
|
78
78
|
|
|
79
|
+
# No source-level install_path to copy: VaultSource#install installs
|
|
80
|
+
# each gem into Bundler.bundle_path via RubyGemsGemInstaller, so the
|
|
81
|
+
# default Source#cache would dereference a non-existent directory.
|
|
82
|
+
def cache(spec, custom_path = nil); end
|
|
83
|
+
|
|
79
84
|
def to_s
|
|
80
85
|
"vault at #{@uri}"
|
|
81
86
|
end
|
data/lib/gemvault/version.rb
CHANGED