vagrant-multi-hostsupdater 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -2
- data/README.md +2 -2
- data/lib/vagrant-multi-hostsupdater.rb +2 -2
- data/lib/vagrant-multi-hostsupdater/plugin.rb +3 -3
- data/lib/vagrant-multi-hostsupdater/version.rb +1 -1
- data/vagrant-multi-hostsupdater.gemspec +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b87cd919819f6b66773070ea606950aafad31c46
|
4
|
+
data.tar.gz: 1e25433e87227be92e37d4afdff688dbf3886432
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b723ddfd39e78f65a657684429a99045d1590ece87b1abe826c66a801c8a5702025bfac976d89c42a26d3b2e7418a522fcd6a5cfaa8ed4f1360945eeacb34ba5
|
7
|
+
data.tar.gz: 716a840dcaa6b908404be97c700d93b01345f8cf74dfa8dcfc88167a8c29a2545bedbcaffeb8df119fa7f6725c55d9311926ce0db68ca00e5b3db50491b83c80
|
data/Gemfile
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
$:.unshift File.expand_path("../lib", __FILE__)
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
|
-
s.name = "vagrant-hostsupdater"
|
4
|
+
s.name = "vagrant-multi-hostsupdater"
|
5
5
|
s.version = 0.2
|
6
6
|
s.platform = Gem::Platform::RUBY
|
7
7
|
s.authors = "Falk Kühnel"
|
8
8
|
s.email = "fk@cogitatio.de"
|
9
|
-
s.homepage = "https://github.com/cogitatio/vagrant-hostsupdater"
|
9
|
+
s.homepage = "https://github.com/cogitatio/vagrant-multi-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
@@ -13,11 +13,11 @@ By setting the remove\_on\_suspend option, you can have them removed on **suspen
|
|
13
13
|
|
14
14
|
## Installation
|
15
15
|
|
16
|
-
$ vagrant plugin install vagrant-hostsupdater
|
16
|
+
$ vagrant plugin install vagrant-multi-hostsupdater
|
17
17
|
|
18
18
|
Uninstall it with:
|
19
19
|
|
20
|
-
$ vagrant plugin uninstall vagrant-hostsupdater
|
20
|
+
$ vagrant plugin uninstall vagrant-multi-hostsupdater
|
21
21
|
|
22
22
|
## Usage
|
23
23
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
require "vagrant-hostsupdater/Action/UpdateHosts"
|
2
|
-
require "vagrant-hostsupdater/Action/CacheHosts"
|
3
|
-
require "vagrant-hostsupdater/Action/RemoveHosts"
|
1
|
+
require "vagrant-multi-hostsupdater/Action/UpdateHosts"
|
2
|
+
require "vagrant-multi-hostsupdater/Action/CacheHosts"
|
3
|
+
require "vagrant-multi-hostsupdater/Action/RemoveHosts"
|
4
4
|
|
5
5
|
module VagrantPlugins
|
6
6
|
module HostsUpdater
|
@@ -6,11 +6,11 @@ require 'vagrant-multi-hostsupdater/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "vagrant-multi-hostsupdater"
|
8
8
|
spec.version = VagrantPlugins::MultiHostsUpdater::VERSION
|
9
|
-
spec.authors = ["
|
10
|
-
spec.email = ["
|
9
|
+
spec.authors = ["Matt Fellows"]
|
10
|
+
spec.email = ["matt.fellows@onegeek.com.au"]
|
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 = "https://github.com/
|
13
|
+
spec.homepage = "https://github.com/SEEK-Jobs/vagrant-hostsupdater"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-multi-hostsupdater
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Matt Fellows
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
version: '0'
|
41
41
|
description: Enables Vagrant to update hosts file on the host machine
|
42
42
|
email:
|
43
|
-
-
|
43
|
+
- matt.fellows@onegeek.com.au
|
44
44
|
executables: []
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
@@ -60,7 +60,7 @@ files:
|
|
60
60
|
- lib/vagrant-multi-hostsupdater/plugin.rb
|
61
61
|
- lib/vagrant-multi-hostsupdater/version.rb
|
62
62
|
- vagrant-multi-hostsupdater.gemspec
|
63
|
-
homepage: https://github.com/
|
63
|
+
homepage: https://github.com/SEEK-Jobs/vagrant-hostsupdater
|
64
64
|
licenses:
|
65
65
|
- MIT
|
66
66
|
metadata: {}
|