vagrant-hostmanager-lite 0.4.1 → 0.4.2

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MmIzNmNlYjYzYjA4ZDFjNGIxZDFhNjc1NTM0MmVkYjVlNjM5ZjE1Zg==
4
+ NjAzYzVlNTFkMWRmMjc5ODZjNGNiMzI2NGYwYWEwODE5MTdjZWY4Yg==
5
5
  data.tar.gz: !binary |-
6
- MGNjZjNjYzIxZWU4OGQ3YjA2OGQ2NDI1ZWRmNWI0NmU5YmVlNDg2NA==
6
+ ODY3OTk0NDVlZjg3MTgxMjljYTIxODk0ZmYxMDMwNTJmMmM5NGIwOQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- Yjc4MzYyNjNmN2I2Njc3YmE0ODI1YzA0MWZlMDgyZWY1NDk1YTg5Y2I2Mjhi
10
- ZWNiMzNhOTA1NTFlYTMyNWE0MWRhMTI2NDRhMmZlNTQ4OTE1MzU2OGJkN2Uz
11
- NzFjZmJlYmMyODFhNWZlOTZmODcyZDE3ODI4YjE3ZWQ5NzM3ZDg=
9
+ M2U5OGM0MjI3MmE1NDM3MWFlMWNmNjBkNWNiNTNmMTRlMmRjZGMzYTUxODkx
10
+ ZTcxZjk1NzcwZmVhMmFiM2E2N2E4ZGNmNDE3MDlhZDA0ZDAyN2M5YTQ3MWZh
11
+ MjZlNzRhNjFlNTRhZWE4NDNmNTRiYTBkOTJiYzQ4N2U3ZDhiMDg=
12
12
  data.tar.gz: !binary |-
13
- OTk0OGNlYmRlY2Y4OWNmMjI2NGE4ZGRlZTNiZjA4MGE1NjZmMmM0NmExMDIz
14
- MGExZDNmNjVmNDVhYTE2YmJhNzE3OTQ5ODc1YzBjMDM0Njg2YjZjN2IyN2E0
15
- Zjg2YzhkZTUyN2I0ZjA3NmQxMTljMTUwZGI5YzdjMzVmMWVhYjU=
13
+ YjM4YjhmMDU3ODQ3YjZmMTk2NjM0MDhmNWRlYjEwNzVlZTZjNzYxMDRjMmUz
14
+ MWUxZjgwMzIxNTE1MWFkYTJmYjM3ZTY5NDJmNDJlZDAxMWMxMTU5ZDg2YTcw
15
+ ZmViMGZmNDFiNzVkNzIxOTQ0YTM4ODEyZWYzNDYxOWRlYjhkM2M=
@@ -1,6 +1,6 @@
1
- require 'vagrant-hostmanager/plugin'
2
- require 'vagrant-hostmanager/version'
3
- require 'vagrant-hostmanager/errors'
1
+ require 'vagrant-hostmanager-lite/plugin'
2
+ require 'vagrant-hostmanager-lite/version'
3
+ require 'vagrant-hostmanager-lite/errors'
4
4
 
5
5
  module VagrantPlugins
6
6
  module HostManager
@@ -1,4 +1,4 @@
1
- require 'vagrant-hostmanager/hosts_file'
1
+ require 'vagrant-hostmanager-lite/hosts_file'
2
2
 
3
3
  module VagrantPlugins
4
4
  module HostManager
@@ -1,4 +1,4 @@
1
- require 'vagrant-hostmanager/util'
1
+ require 'vagrant-hostmanager-lite/util'
2
2
 
3
3
  module VagrantPlugins
4
4
  module HostManager
@@ -1,4 +1,4 @@
1
- require 'vagrant-hostmanager/action/update_hosts_file'
1
+ require 'vagrant-hostmanager-lite/action/update_hosts_file'
2
2
 
3
3
  module VagrantPlugins
4
4
  module HostManager
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module HostManager
3
- VERSION = '0.4.1'
3
+ VERSION = '0.4.2'
4
4
  end
5
5
  end
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'vagrant-hostmanager/version'
4
+ require 'vagrant-hostmanager-lite/version'
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = 'vagrant-hostmanager-lite'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-hostmanager-lite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shawn Dahlen
@@ -24,16 +24,16 @@ files:
24
24
  - LICENSE.txt
25
25
  - README.md
26
26
  - Rakefile
27
- - lib/vagrant-hostmanager.rb
28
- - lib/vagrant-hostmanager/action/update_hosts_file.rb
29
- - lib/vagrant-hostmanager/command.rb
30
- - lib/vagrant-hostmanager/config.rb
31
- - lib/vagrant-hostmanager/errors.rb
32
- - lib/vagrant-hostmanager/hosts_file.rb
33
- - lib/vagrant-hostmanager/plugin.rb
34
- - lib/vagrant-hostmanager/provisioner.rb
35
- - lib/vagrant-hostmanager/util.rb
36
- - lib/vagrant-hostmanager/version.rb
27
+ - lib/vagrant-hostmanager-lite.rb
28
+ - lib/vagrant-hostmanager-lite/action/update_hosts_file.rb
29
+ - lib/vagrant-hostmanager-lite/command.rb
30
+ - lib/vagrant-hostmanager-lite/config.rb
31
+ - lib/vagrant-hostmanager-lite/errors.rb
32
+ - lib/vagrant-hostmanager-lite/hosts_file.rb
33
+ - lib/vagrant-hostmanager-lite/plugin.rb
34
+ - lib/vagrant-hostmanager-lite/provisioner.rb
35
+ - lib/vagrant-hostmanager-lite/util.rb
36
+ - lib/vagrant-hostmanager-lite/version.rb
37
37
  - locales/en.yml
38
38
  - test/Vagrantfile
39
39
  - test/functions.sh