vagrant-hostsupdater 0.0.3 → 0.0.4
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 +5 -5
- data/Gemfile +1 -1
- data/README.md +2 -0
- data/lib/vagrant-hostsupdater/Action/RemoveHosts.rb +2 -2
- data/lib/vagrant-hostsupdater/version.rb +1 -1
- data/vagrant-hostsupdater.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
SHA1:
|
|
3
|
-
data.tar.gz: 6663b44949ad00cfb53164de9cc616c6cf08003c
|
|
4
|
-
metadata.gz: d28529fec2edd9b8777ff9e76f13b911967b8d53
|
|
5
2
|
SHA512:
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
metadata.gz: 0db0091503f284153dc70c41d7da1810620cefeacec001296315c7d7e6d776a299b61ac8e8dfca101471b7d81f3b59ff19e3b24370e3ee5e5b5525a22d869705
|
|
4
|
+
data.tar.gz: 9d52c0a9a17543fcf3b0308f01f30bfd10d32452fc7025042b5c9681e2de5e4a494b45ba5eb06a42f78c482b4e0b8538d13f32c56d35ef765d8e164b8dbb53f4
|
|
5
|
+
SHA1:
|
|
6
|
+
metadata.gz: 655539ef1ab9bb5ca3bf093c3a362e433e41ac20
|
|
7
|
+
data.tar.gz: 96ea3992b37bdb460838bde11ced120bc6f7a86b
|
data/Gemfile
CHANGED
|
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.platform = Gem::Platform::RUBY
|
|
7
7
|
s.authors = "Falk Kühnel"
|
|
8
8
|
s.email = "fk@cogitatio.de"
|
|
9
|
-
s.homepage = "
|
|
9
|
+
s.homepage = "https://github.com/cogitatio/vagrant-hostsupdater"
|
|
10
10
|
s.summary = "Enables Vagrant to update hosts file on the host machine"
|
|
11
11
|
s.description = "Enables Vagrant to update hosts file on the host machine"
|
|
12
12
|
|
data/README.md
CHANGED
|
@@ -7,6 +7,8 @@ On **up** and **reload** commands, it tries to add the information, if its not a
|
|
|
7
7
|
On **halt**, **suspend** and **destroy**, those entries will be removed again.
|
|
8
8
|
|
|
9
9
|
## Versions
|
|
10
|
+
### 0.0.4
|
|
11
|
+
* fixed problem with removing hosts entries on destroy command (Thanks to Andy Bohne)
|
|
10
12
|
### 0.0.3
|
|
11
13
|
* added aliases config option to define additional hostnames
|
|
12
14
|
|
|
@@ -6,11 +6,11 @@ require 'vagrant-hostsupdater/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "vagrant-hostsupdater"
|
|
8
8
|
spec.version = VagrantPlugins::HostsUpdater::VERSION
|
|
9
|
-
spec.authors = ["Falk
|
|
9
|
+
spec.authors = ["Falk Kühnel"]
|
|
10
10
|
spec.email = ["fk@cogitatio.de"]
|
|
11
11
|
spec.description = %q{Enables Vagrant to update hosts file on the host machine}
|
|
12
12
|
spec.summary = %q{Enables Vagrant to update hosts file on the host machine}
|
|
13
|
-
spec.homepage = "
|
|
13
|
+
spec.homepage = "https://github.com/cogitatio/vagrant-hostsupdater"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-hostsupdater
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- "Falk
|
|
7
|
+
- "Falk K\xC3\xBChnel"
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2013-05-
|
|
12
|
+
date: 2013-05-10 00:00:00 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
prerelease: false
|
|
@@ -56,7 +56,7 @@ files:
|
|
|
56
56
|
- lib/vagrant-hostsupdater/plugin.rb
|
|
57
57
|
- lib/vagrant-hostsupdater/version.rb
|
|
58
58
|
- vagrant-hostsupdater.gemspec
|
|
59
|
-
homepage:
|
|
59
|
+
homepage: https://github.com/cogitatio/vagrant-hostsupdater
|
|
60
60
|
licenses:
|
|
61
61
|
- MIT
|
|
62
62
|
metadata: {}
|