vagrant-nodemaster 0.0.2 → 1.0.0

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.
Files changed (38) hide show
  1. data/README.md +95 -0
  2. data/lib/vagrant-nodemaster.rb +4 -2
  3. data/lib/vagrant-nodemaster/apidesc.rb +105 -1
  4. data/lib/vagrant-nodemaster/node/nodeadd.rb +4 -4
  5. data/lib/vagrant-nodemaster/node/nodedbmanager.rb +49 -33
  6. data/lib/vagrant-nodemaster/node/nodelist.rb +2 -2
  7. data/lib/vagrant-nodemaster/node/nodeoperationcommand.rb +85 -0
  8. data/lib/vagrant-nodemaster/node/nodeoperationlast.rb +47 -0
  9. data/lib/vagrant-nodemaster/node/nodeoperationshow.rb +39 -0
  10. data/lib/vagrant-nodemaster/node/noderemove.rb +3 -3
  11. data/lib/vagrant-nodemaster/node/nodestatus.rb +2 -2
  12. data/lib/vagrant-nodemaster/node/nodeupdate.rb +2 -2
  13. data/lib/vagrant-nodemaster/node/nodeupdatepw.rb +72 -0
  14. data/lib/vagrant-nodemaster/nodecommand.rb +14 -0
  15. data/lib/vagrant-nodemaster/remote/configmanager.rb +16 -0
  16. data/lib/vagrant-nodemaster/remote/remoteboxadd.rb +11 -8
  17. data/lib/vagrant-nodemaster/remote/remoteconfigaddvm.rb +46 -0
  18. data/lib/vagrant-nodemaster/remote/remoteconfigcommand.rb +110 -0
  19. data/lib/vagrant-nodemaster/remote/remoteconfigdeletevm.rb +37 -0
  20. data/lib/vagrant-nodemaster/remote/remoteconfigshow.rb +31 -0
  21. data/lib/vagrant-nodemaster/remote/remoteconfigupload.rb +34 -0
  22. data/lib/vagrant-nodemaster/remote/remotehalt.rb +14 -5
  23. data/lib/vagrant-nodemaster/remote/remoteprovision.rb +31 -23
  24. data/lib/vagrant-nodemaster/remote/remoteresume.rb +16 -9
  25. data/lib/vagrant-nodemaster/remote/remotesnapshotcommand.rb +8 -3
  26. data/lib/vagrant-nodemaster/remote/remotesnapshotdelete.rb +31 -0
  27. data/lib/vagrant-nodemaster/remote/remotesnapshotlist.rb +1 -0
  28. data/lib/vagrant-nodemaster/remote/remotesnapshotrestore.rb +17 -9
  29. data/lib/vagrant-nodemaster/remote/remotesnapshottake.rb +16 -6
  30. data/lib/vagrant-nodemaster/remote/remotesuspend.rb +15 -7
  31. data/lib/vagrant-nodemaster/remote/remoteup.rb +18 -22
  32. data/lib/vagrant-nodemaster/remote/remotevmstatus.rb +1 -1
  33. data/lib/vagrant-nodemaster/remotecommand.rb +18 -5
  34. data/lib/vagrant-nodemaster/requestcontroller.rb +321 -69
  35. data/lib/vagrant-nodemaster/version.rb +1 -1
  36. data/vagrant-nodemaster.gemspec +7 -2
  37. metadata +18 -7
  38. data/Readme.md +0 -0
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module NodeMaster
3
- VERSION = "0.0.2"
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  end
@@ -8,8 +8,13 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Vagrant::NodeMaster::VERSION
9
9
  spec.authors = ["Francisco Javier Lopez de San Pedro"]
10
10
  spec.email = ["fjsanpedro@gmail.com"]
11
- spec.description = "This Vagrant plugin allows you to control centralizely remote virtual environments configured with vagrant-node"
12
- spec.summary = "Escribir summary"
11
+ spec.description = "This Vagrant plugin allows you to control centralizely remote virtual environments configured with vagrant-node."
12
+
13
+ spec.summary = "This plugin allows you to control centralizely remote virtual environments configured with the plugin Vagrant-Node(https://github.com/fjsanpedro/vagrant-nodemaster/tree/master/lib/vagrant-node).
14
+
15
+
16
+ This plugin has been developed in the context of the Catedra SAES of the University of Murcia(Spain)."
17
+
13
18
  spec.homepage = "http://www.catedrasaes.org"
14
19
  spec.license = "GNU"
15
20
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-nodemaster
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
+ - 1
7
8
  - 0
8
9
  - 0
9
- - 2
10
- version: 0.0.2
10
+ version: 1.0.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Francisco Javier Lopez de San Pedro
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2013-06-25 00:00:00 Z
18
+ date: 2014-02-12 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rest-client
@@ -74,7 +74,7 @@ dependencies:
74
74
  version: "0"
75
75
  type: :development
76
76
  version_requirements: *id004
77
- description: This Vagrant plugin allows you to control centralizely remote virtual environments configured with vagrant-node
77
+ description: This Vagrant plugin allows you to control centralizely remote virtual environments configured with vagrant-node.
78
78
  email:
79
79
  - fjsanpedro@gmail.com
80
80
  executables: []
@@ -87,17 +87,22 @@ files:
87
87
  - .gitignore
88
88
  - Gemfile
89
89
  - LICENSE
90
+ - README.md
90
91
  - Rakefile
91
- - Readme.md
92
92
  - lib/vagrant-nodemaster.rb
93
93
  - lib/vagrant-nodemaster/apidesc.rb
94
94
  - lib/vagrant-nodemaster/node/nodeadd.rb
95
95
  - lib/vagrant-nodemaster/node/nodedbmanager.rb
96
96
  - lib/vagrant-nodemaster/node/nodelist.rb
97
+ - lib/vagrant-nodemaster/node/nodeoperationcommand.rb
98
+ - lib/vagrant-nodemaster/node/nodeoperationlast.rb
99
+ - lib/vagrant-nodemaster/node/nodeoperationshow.rb
97
100
  - lib/vagrant-nodemaster/node/noderemove.rb
98
101
  - lib/vagrant-nodemaster/node/nodestatus.rb
99
102
  - lib/vagrant-nodemaster/node/nodeupdate.rb
103
+ - lib/vagrant-nodemaster/node/nodeupdatepw.rb
100
104
  - lib/vagrant-nodemaster/nodecommand.rb
105
+ - lib/vagrant-nodemaster/remote/configmanager.rb
101
106
  - lib/vagrant-nodemaster/remote/remotebackupcommand.rb
102
107
  - lib/vagrant-nodemaster/remote/remotebackuplog.rb
103
108
  - lib/vagrant-nodemaster/remote/remotebackuptake.rb
@@ -105,11 +110,17 @@ files:
105
110
  - lib/vagrant-nodemaster/remote/remoteboxcommand.rb
106
111
  - lib/vagrant-nodemaster/remote/remoteboxdelete.rb
107
112
  - lib/vagrant-nodemaster/remote/remoteboxlist.rb
113
+ - lib/vagrant-nodemaster/remote/remoteconfigaddvm.rb
114
+ - lib/vagrant-nodemaster/remote/remoteconfigcommand.rb
115
+ - lib/vagrant-nodemaster/remote/remoteconfigdeletevm.rb
116
+ - lib/vagrant-nodemaster/remote/remoteconfigshow.rb
117
+ - lib/vagrant-nodemaster/remote/remoteconfigupload.rb
108
118
  - lib/vagrant-nodemaster/remote/remotedestroy.rb
109
119
  - lib/vagrant-nodemaster/remote/remotehalt.rb
110
120
  - lib/vagrant-nodemaster/remote/remoteprovision.rb
111
121
  - lib/vagrant-nodemaster/remote/remoteresume.rb
112
122
  - lib/vagrant-nodemaster/remote/remotesnapshotcommand.rb
123
+ - lib/vagrant-nodemaster/remote/remotesnapshotdelete.rb
113
124
  - lib/vagrant-nodemaster/remote/remotesnapshotlist.rb
114
125
  - lib/vagrant-nodemaster/remote/remotesnapshotrestore.rb
115
126
  - lib/vagrant-nodemaster/remote/remotesnapshottake.rb
@@ -153,7 +164,7 @@ rubyforge_project: vagrant-nodemaster
153
164
  rubygems_version: 1.8.15
154
165
  signing_key:
155
166
  specification_version: 3
156
- summary: Escribir summary
167
+ summary: This plugin allows you to control centralizely remote virtual environments configured with the plugin Vagrant-Node(https://github.com/fjsanpedro/vagrant-nodemaster/tree/master/lib/vagrant-node). This plugin has been developed in the context of the Catedra SAES of the University of Murcia(Spain).
157
168
  test_files: []
158
169
 
159
170
  has_rdoc:
data/Readme.md DELETED
File without changes