vagrant-hostentries 0.6.4 → 0.6.5
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 +8 -8
- data/Gemfile.lock +1 -1
- data/lib/vagrant-hostentries/action/update_hosts_entry.rb +2 -1
- data/vagrant-hostentries.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YjVlNzg3OGJiZmJhYTQ3NzNhZjc5YThlNGIyZjc0NTM3N2Q4YWM4Nw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NjA1NWY2ZmYzMTQwNTZhYjlmY2NmMDJkYjRlZWM1NmY1NTkwNWY0ZA==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NmRkMGU1ZGVhMzRlMjI0NTU5Y2M1M2JhZjIxYTUwOTgwMWI1OTdkMzhkNTE3
|
|
10
|
+
ODQ0NzhkNWJhYzI0NzMwMmE5MGFhYjgzZTMwMDJkYzY2NWQ1M2NlOTBiNDRm
|
|
11
|
+
ODBiODc0OWYyOWE0M2ExNWEwODU4YTFiOTA2NGNlNTFkOGZkNjc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDBmZmU2OGQxODFkMDIyNDlmODE2NmU1NTU0MzNjYzdhNjZhZWIzN2E0MDFh
|
|
14
|
+
MTg1MzI0ZTM3Y2FlNjA1OGM2MTcxYTcwYWEwYjZhNmMxMGFmYTRkNmE4YzBm
|
|
15
|
+
MmIzNmM3MmMyMWNkZTM5NDE3MmM2NzZkODA3NmU3YjAzYmE3MjQ=
|
data/Gemfile.lock
CHANGED
|
@@ -16,7 +16,8 @@ module VagrantPlugins
|
|
|
16
16
|
# Update each guest machines' host entry with all the other guest machines' entries
|
|
17
17
|
env[:machine].env.active_machines.each do |machine|
|
|
18
18
|
m = env[:machine].env.machine(machine[0], machine[1])
|
|
19
|
-
|
|
19
|
+
next unless m.methods.member? :guest # Machine is not actually active...
|
|
20
|
+
if !m.guest.capability?(:update_hosts_entry)
|
|
20
21
|
@logger.warn "Unsupported machine #{machine.config.name}"
|
|
21
22
|
next
|
|
22
23
|
end
|
data/vagrant-hostentries.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
|
|
|
13
13
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
14
14
|
gem.name = "vagrant-hostentries"
|
|
15
15
|
gem.require_paths = ["lib"]
|
|
16
|
-
gem.version = "0.6.
|
|
16
|
+
gem.version = "0.6.5"
|
|
17
17
|
|
|
18
18
|
gem.add_development_dependency 'bundler'
|
|
19
19
|
gem.add_development_dependency 'vagrant'
|