vagrant-unbundled 2.2.6.0 → 2.2.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/vagrant/bundler.rb +2 -2
- data/version.txt +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: 3877d5536d61bcd8f8dfb66eb3154c25dce4dba2807a15b957335079e2e8d931
|
4
|
+
data.tar.gz: c39816ad0bda48892e90cf770fad896292c5d3a5e75566d14ee8059294dd1102
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59b28f25f056aa10909d0226d4cc38a19fe6568f75602f1e3820a91b70c3d0048356df7038c0192e9ad3f0fa50dd754c6b896d599c22733576cd4130bd3635ea
|
7
|
+
data.tar.gz: af8e6cfffaa0e1bfe4fd8df9f315200ac376064471c1b45e3e31fcad0fb54133ed2d9e00e0226b812e4c167fe04e7f9d86156e4cb9095d8189ccd1b89dfffa27
|
data/Gemfile.lock
CHANGED
data/lib/vagrant/bundler.rb
CHANGED
@@ -421,7 +421,7 @@ module Vagrant
|
|
421
421
|
def vagrant_internal_specs
|
422
422
|
# activate any dependencies up front so we can always
|
423
423
|
# pin them when resolving
|
424
|
-
Gem::Specification.find { |s| s.name == "vagrant" && s.activated? }.
|
424
|
+
Gem::Specification.find { |s| s.name == "vagrant-unbundled" && s.activated? }.
|
425
425
|
runtime_dependencies.each { |d| gem d.name, *d.requirement.as_list }
|
426
426
|
# discover all the gems we have available
|
427
427
|
list = {}
|
@@ -601,7 +601,7 @@ module Vagrant
|
|
601
601
|
|
602
602
|
def find_all(req)
|
603
603
|
@specs.select do |spec|
|
604
|
-
allow_prerelease = spec.name == "vagrant" && Vagrant.prerelease?
|
604
|
+
allow_prerelease = spec.name == "vagrant-unbundled" && Vagrant.prerelease?
|
605
605
|
req.match?(spec, allow_prerelease)
|
606
606
|
end.map do |spec|
|
607
607
|
Gem::Resolver::InstalledSpecification.new(self, spec)
|
data/version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.6.
|
1
|
+
2.2.6.1
|