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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 533512cd17c6ca13e71dbe1813d3270d750b887d
4
- data.tar.gz: 209416ad79ae954b48fd15bf0963cbfb555233fb
3
+ metadata.gz: b87cd919819f6b66773070ea606950aafad31c46
4
+ data.tar.gz: 1e25433e87227be92e37d4afdff688dbf3886432
5
5
  SHA512:
6
- metadata.gz: e54c18e70573ad52cb72f08ffa780af88f6b7cf0d7d52efc5fc4f2707f86ecc851c6a507b159c54aec153ed661f439fde9181163bcf1e9e30cbe9297fb941a63
7
- data.tar.gz: 20e512ae6e36f2c0e65b4f0e2d4a152be63288c859adebb1c1d55914bc8f6fcf841b919807aa5cc6d2a70bf7dd78c4ed6311cf7080d306fdb1042836bb6453d0
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,5 +1,5 @@
1
- require "vagrant-hostsupdater/version"
2
- require "vagrant-hostsupdater/plugin"
1
+ require "vagrant-multi-hostsupdater/version"
2
+ require "vagrant-multi-hostsupdater/plugin"
3
3
 
4
4
  module VagrantPlugins
5
5
  module HostsUpdater
@@ -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
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module MultiHostsUpdater
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -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 = ["Falk Kühnel"]
10
- spec.email = ["fk@cogitatio.de"]
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/cogitatio/vagrant-multi-hostsupdater"
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.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
- - Falk Kühnel
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
- - fk@cogitatio.de
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/cogitatio/vagrant-multi-hostsupdater
63
+ homepage: https://github.com/SEEK-Jobs/vagrant-hostsupdater
64
64
  licenses:
65
65
  - MIT
66
66
  metadata: {}