vagrant-command-dns 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/CODE_OF_CONDUCT.md +13 -0
  4. data/Gemfile +9 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +25 -0
  7. data/Rakefile +14 -0
  8. data/bin/console +14 -0
  9. data/bin/setup +7 -0
  10. data/lib/vagrant-command-dns/action/get_ip.rb +78 -0
  11. data/lib/vagrant-command-dns/action/host/create.rb +49 -0
  12. data/lib/vagrant-command-dns/action/host/destroy.rb +49 -0
  13. data/lib/vagrant-command-dns/action/host.rb +31 -0
  14. data/lib/vagrant-command-dns/action/route53/connect.rb +42 -0
  15. data/lib/vagrant-command-dns/action/route53/create.rb +71 -0
  16. data/lib/vagrant-command-dns/action/route53/destroy.rb +69 -0
  17. data/lib/vagrant-command-dns/action/route53.rb +34 -0
  18. data/lib/vagrant-command-dns/action/show_ip.rb +23 -0
  19. data/lib/vagrant-command-dns/action.rb +26 -0
  20. data/lib/vagrant-command-dns/command/host/create.rb +34 -0
  21. data/lib/vagrant-command-dns/command/host/destroy.rb +46 -0
  22. data/lib/vagrant-command-dns/command/host/root.rb +74 -0
  23. data/lib/vagrant-command-dns/command/ip.rb +34 -0
  24. data/lib/vagrant-command-dns/command/root.rb +77 -0
  25. data/lib/vagrant-command-dns/command/route53/create.rb +34 -0
  26. data/lib/vagrant-command-dns/command/route53/destroy.rb +46 -0
  27. data/lib/vagrant-command-dns/command/route53/root.rb +74 -0
  28. data/lib/vagrant-command-dns/config.rb +90 -0
  29. data/lib/vagrant-command-dns/errors.rb +31 -0
  30. data/lib/vagrant-command-dns/plugin.rb +69 -0
  31. data/lib/vagrant-command-dns/version.rb +5 -0
  32. data/lib/vagrant-command-dns.rb +20 -0
  33. data/locales/en.yml +43 -0
  34. data/vagrant-command-dns.gemspec +25 -0
  35. metadata +119 -0
metadata ADDED
@@ -0,0 +1,119 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vagrant-command-dns
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - cornfeedhobo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-03-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: fog
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.22'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.22'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - cornfeedhobo@fuzzlabs.org
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - CODE_OF_CONDUCT.md
64
+ - Gemfile
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - bin/console
69
+ - bin/setup
70
+ - lib/vagrant-command-dns.rb
71
+ - lib/vagrant-command-dns/action.rb
72
+ - lib/vagrant-command-dns/action/get_ip.rb
73
+ - lib/vagrant-command-dns/action/host.rb
74
+ - lib/vagrant-command-dns/action/host/create.rb
75
+ - lib/vagrant-command-dns/action/host/destroy.rb
76
+ - lib/vagrant-command-dns/action/route53.rb
77
+ - lib/vagrant-command-dns/action/route53/connect.rb
78
+ - lib/vagrant-command-dns/action/route53/create.rb
79
+ - lib/vagrant-command-dns/action/route53/destroy.rb
80
+ - lib/vagrant-command-dns/action/show_ip.rb
81
+ - lib/vagrant-command-dns/command/host/create.rb
82
+ - lib/vagrant-command-dns/command/host/destroy.rb
83
+ - lib/vagrant-command-dns/command/host/root.rb
84
+ - lib/vagrant-command-dns/command/ip.rb
85
+ - lib/vagrant-command-dns/command/root.rb
86
+ - lib/vagrant-command-dns/command/route53/create.rb
87
+ - lib/vagrant-command-dns/command/route53/destroy.rb
88
+ - lib/vagrant-command-dns/command/route53/root.rb
89
+ - lib/vagrant-command-dns/config.rb
90
+ - lib/vagrant-command-dns/errors.rb
91
+ - lib/vagrant-command-dns/plugin.rb
92
+ - lib/vagrant-command-dns/version.rb
93
+ - locales/en.yml
94
+ - vagrant-command-dns.gemspec
95
+ homepage: https://github.com/cornfeedhobo/vagrant-command-dns
96
+ licenses:
97
+ - MIT
98
+ metadata: {}
99
+ post_install_message:
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '2.0'
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubyforge_project:
115
+ rubygems_version: 2.2.2
116
+ signing_key:
117
+ specification_version: 4
118
+ summary: Vagrant Plugin to manage DNS records
119
+ test_files: []