vagrant-dns-server 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 +8 -8
- data/Gemfile.lock +1 -1
- data/lib/vagrant-dns-server.rb +29 -0
- data/lib/vagrant_dns/configuration.rb +1 -1
- data/lib/version.rb +1 -1
- metadata +2 -2
- data/lib/vagrant_dns_server.rb +0 -23
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjU4MTNmNmY3YWYwNWI3Yzk1NTFhMTM5NzY0YzExM2NlMzFkZjc1YQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
N2Y1Yzk0NzgyODRjN2MyNTE3N2Y0MTA0NGU0NDYyYzRkYTM3ZDJhNw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NmM5ODQzMDQ1YWYyYWRmYTVjMjI1ZjQ5MWU2OGIxZjZhOTVmMWFmZWZiYzk5
|
10
|
+
MTY4MGU3MTJlYmMyYTczNjc2YzZjZjdhZTUzZjE5YWM5ZTg5YzI2YWQzNzI3
|
11
|
+
OTg3NjE4OGM1M2U2NDU4ODU0N2RlYjE5NDhhMTJkYjQ3ZmU3MTE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NGRlYTljOTM3MDAyYTllMzQ5YmNiY2JiMTViZjk2YzI2NThjYjY1YWRmYTBi
|
14
|
+
ZTQwMWE2MDg2YTA2NGI3MzIyZTczNzBkZDBjZmM1MmJjOGU0ZjEyYTExMGI0
|
15
|
+
Yjk2ZTcwNTlhYmFmOTAxYmQ2NzZjNGU2NmMwYzY4YmE2MDMyNjk=
|
data/Gemfile.lock
CHANGED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'vagrant'
|
2
|
+
require 'zmq'
|
3
|
+
# client
|
4
|
+
require 'moneta'
|
5
|
+
require 'vagrant_dns/consts'
|
6
|
+
require 'vagrant_dns/configuration'
|
7
|
+
require 'vagrant_dns/port'
|
8
|
+
require 'vagrant_dns/middleware/update'
|
9
|
+
require 'vagrant_dns/middleware/remove'
|
10
|
+
require 'vagrant_dns/middleware/network_binder'
|
11
|
+
|
12
|
+
#see http://tinyurl.com/bfuawuj
|
13
|
+
module VagrantDnsServer
|
14
|
+
class Plugin < Vagrant.plugin("2")
|
15
|
+
name 'vagrant-dns-server'
|
16
|
+
description <<-DESC
|
17
|
+
VagrantDnsServer
|
18
|
+
DESC
|
19
|
+
|
20
|
+
|
21
|
+
action_hook(:vagrant_dns_plugin) do |hook|
|
22
|
+
hook.after(::Vagrant::Action::Builtin::Provision, VagrantDns::Middleware::Update)
|
23
|
+
hook.after(VagrantPlugins::ProviderVirtualBox::Action::Boot, VagrantDns::Middleware::Update)
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-dns-server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ronen Narkis
|
@@ -198,6 +198,7 @@ files:
|
|
198
198
|
- Vagrantfile
|
199
199
|
- bin/vagrant_dns
|
200
200
|
- lib/std_server.rb
|
201
|
+
- lib/vagrant-dns-server.rb
|
201
202
|
- lib/vagrant_dns/configuration.rb
|
202
203
|
- lib/vagrant_dns/consts.rb
|
203
204
|
- lib/vagrant_dns/dns.rb
|
@@ -207,7 +208,6 @@ files:
|
|
207
208
|
- lib/vagrant_dns/port.rb
|
208
209
|
- lib/vagrant_dns/resolver.rb
|
209
210
|
- lib/vagrant_dns/server.rb
|
210
|
-
- lib/vagrant_dns_server.rb
|
211
211
|
- lib/version.rb
|
212
212
|
- templates/vagrant_dns.yaml
|
213
213
|
- test/resolver_test.rb
|
data/lib/vagrant_dns_server.rb
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
require 'vagrant'
|
2
|
-
require 'zmq'
|
3
|
-
# client
|
4
|
-
require 'moneta'
|
5
|
-
require 'vagrant_dns/consts'
|
6
|
-
require 'vagrant_dns/configuration'
|
7
|
-
require 'vagrant_dns/port'
|
8
|
-
require 'vagrant_dns/middleware/update'
|
9
|
-
require 'vagrant_dns/middleware/remove'
|
10
|
-
require 'vagrant_dns/middleware/network_binder'
|
11
|
-
|
12
|
-
#see http://tinyurl.com/bfuawuj
|
13
|
-
class Plugin < Vagrant.plugin("2")
|
14
|
-
name 'Vagrant DNS plugin'
|
15
|
-
|
16
|
-
action_hook(:vagrant_dns_plugin) do |hook|
|
17
|
-
hook.after(::Vagrant::Action::Builtin::Provision, VagrantDns::Middleware::Update)
|
18
|
-
hook.after(VagrantPlugins::ProviderVirtualBox::Action::Boot, VagrantDns::Middleware::Update)
|
19
|
-
end
|
20
|
-
|
21
|
-
end
|
22
|
-
|
23
|
-
|