vagrant-hosts 2.1.2 → 2.1.3

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 ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YWRlZTQ2N2I5ZWEyYWJiNmYzMjc0YjNiY2QxYWIzNDRlNzA4ZjA2Yw==
5
+ data.tar.gz: !binary |-
6
+ YWFjNjg3NjFjMTY4M2ZjZjViMWEzYzJlMTkzODdmOGQzMTNiMTc5NQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ NTBhM2RlMTI5YjY1ZTNkYWYzNjJhN2Y0ODRjNWE0OWYzN2RlYWEzYTlmNjdk
10
+ NjVhNWJkNjIzNzg0YTc3ZjYyNWIxNTU4ZmUyNTlmYmQ0NmFlYmY0YjliNWM4
11
+ ZGM0NzJjODMyYjMxOTFmNzcyN2U5ZTI5YjY5NGQ4MjY1OWYwYWM=
12
+ data.tar.gz: !binary |-
13
+ ZjBiZGUyNDI2YzU4OWM1MmViYzljNDMxZmFiZTc4NDQzOWI4MzZmZWYwZmQ1
14
+ OTE0OTJlMGY0MjgzYzQzYzVlMmM2ZDdhOGNjMDhkNjZiNGFhN2I0MWExNTVm
15
+ NzZlYTYzY2MxNjA1ODljYzFiNDExZDNiMGMzM2Q2M2IyYWE0MTU=
data/CHANGELOG CHANGED
@@ -1,6 +1,15 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 2.1.3
5
+ -----
6
+
7
+ This is a backwards compatible maintenance release.
8
+
9
+ * (GH-27) Add support for Vagrant 1.5
10
+
11
+ Thanks to Reid Vandewiele for his work on this release.
12
+
4
13
  2.1.2
5
14
  -----
6
15
 
data/README.markdown CHANGED
@@ -61,7 +61,7 @@ Use autodetection with manual entries
61
61
  node.vm.network :private_network, :ip => '10.20.1.2'
62
62
  node.vm.provision :hosts do |provisioner|
63
63
  provisioner.autoconfigure = true
64
- provisioner.add_host 172.16.3.10, ['yum.mirror.local']
64
+ provisioner.add_host '172.16.3.10', ['yum.mirror.local']
65
65
  end
66
66
 
67
67
  end
@@ -71,7 +71,7 @@ Use autodetection with manual entries
71
71
  node.vm.network :private_network, :ip => '10.20.1.3'
72
72
  node.vm.provision :hosts do |provisioner|
73
73
  provisioner.autoconfigure = true
74
- provisioner.add_host 172.16.3.11, ['apt.mirror.local']
74
+ provisioner.add_host '172.16.3.11', ['apt.mirror.local']
75
75
  end
76
76
  end
77
77
  end
@@ -28,7 +28,7 @@ class VagrantHosts::Cap::SyncHosts::Base
28
28
  case Vagrant::VERSION
29
29
  when /^1\.1/
30
30
  @machine.guest.change_host_name(name)
31
- when /^1\.[234]/
31
+ when /^1\.[2-5]/
32
32
  @machine.guest.capability(:change_host_name, name)
33
33
  else
34
34
  raise VagrantHosts::Cap::SyncHosts::UnknownVersion, :vagrant_version => Vagrant::VERSION
@@ -1,3 +1,3 @@
1
1
  module VagrantHosts
2
- VERSION = '2.1.2'
2
+ VERSION = '2.1.3'
3
3
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-hosts
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2
5
- prerelease:
4
+ version: 2.1.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - Adrien Thebo
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-12-18 00:00:00.000000000 Z
11
+ date: 2014-03-28 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description: ! ' Manage static DNS entries and configuration for Vagrant guests.
15
14
 
@@ -42,27 +41,26 @@ files:
42
41
  homepage: https://github.com/adrienthebo/vagrant-hosts
43
42
  licenses:
44
43
  - Apache 2.0
44
+ metadata: {}
45
45
  post_install_message:
46
46
  rdoc_options: []
47
47
  require_paths:
48
48
  - lib
49
49
  required_ruby_version: !ruby/object:Gem::Requirement
50
- none: false
51
50
  requirements:
52
51
  - - ! '>='
53
52
  - !ruby/object:Gem::Version
54
53
  version: '0'
55
54
  required_rubygems_version: !ruby/object:Gem::Requirement
56
- none: false
57
55
  requirements:
58
56
  - - ! '>='
59
57
  - !ruby/object:Gem::Version
60
58
  version: '0'
61
59
  requirements: []
62
60
  rubyforge_project:
63
- rubygems_version: 1.8.23
61
+ rubygems_version: 2.2.1
64
62
  signing_key:
65
- specification_version: 3
63
+ specification_version: 4
66
64
  summary: Manage static DNS on vagrant guests
67
65
  test_files: []
68
66
  has_rdoc: true