vagrant-proxmox 0.0.2 → 0.0.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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/vagrant-proxmox/version.rb +1 -1
  3. metadata +38 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 57fd9b0a41cefd93d184deb4f2156c278b7ea0f6
4
- data.tar.gz: 6aff0afae6d0cd851a8780060c25b20877d0f599
3
+ metadata.gz: 23fb93ead7521fd41b3728351658699cc8401c52
4
+ data.tar.gz: 565cdfbaad59c6545b3c3068ded72091bcc25702
5
5
  SHA512:
6
- metadata.gz: 460cd1faf092d13e2790d37ef1a7c40d6d7f289e5e15ffd2f6ddd42f44531f89b298e7462232133406f6529b04223a9913ecc1e751e17c8ea2d9fffa1cc89512
7
- data.tar.gz: c63ab8bd9b932b52a06d50fb2181d0076e6251834955c60ccedabb6824459903be6e7a69140fca1faaeb91349f9f2a759603ccb198359af2a7f0663895451ea2
6
+ metadata.gz: e57908d99222f860c2fc63adea89708947a25237bfa6c72a21c9037961d3d4f291a41bac8580bbbb0f6be69199e28bd5c634ae01355c41b4a7f230665912c11a
7
+ data.tar.gz: 0120b509b00a936d85307e0ccefaf116b4fb9ac3d00f05d5360a884558031010a6b0bdb4c48588011001afcad959c980abbc34371ee4ba54d5ac0424f2a79b44
@@ -1,7 +1,7 @@
1
1
  module VagrantPlugins
2
2
  module Proxmox
3
3
 
4
- VERSION = '0.0.2'
4
+ VERSION = '0.0.3'
5
5
 
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-proxmox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dirk Grappendorf
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-12-02 00:00:00.000000000 Z
12
+ date: 2014-02-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rest-client
@@ -132,60 +132,60 @@ extensions: []
132
132
  extra_rdoc_files: []
133
133
  files:
134
134
  - lib/sanity_checks.rb
135
- - lib/vagrant-proxmox/config.rb
136
- - lib/vagrant-proxmox/action/message_not_created.rb
137
- - lib/vagrant-proxmox/action/is_created.rb
138
- - lib/vagrant-proxmox/action/sync_folders.rb
135
+ - lib/vagrant-proxmox.rb
136
+ - lib/vagrant-proxmox/action.rb
137
+ - lib/vagrant-proxmox/action/cleanup_after_destroy.rb
138
+ - lib/vagrant-proxmox/action/connect_proxmox.rb
139
139
  - lib/vagrant-proxmox/action/create_vm.rb
140
+ - lib/vagrant-proxmox/action/destroy_vm.rb
140
141
  - lib/vagrant-proxmox/action/get_node_list.rb
142
+ - lib/vagrant-proxmox/action/is_created.rb
143
+ - lib/vagrant-proxmox/action/is_stopped.rb
144
+ - lib/vagrant-proxmox/action/message_already_running.rb
145
+ - lib/vagrant-proxmox/action/message_already_stopped.rb
146
+ - lib/vagrant-proxmox/action/message_not_created.rb
147
+ - lib/vagrant-proxmox/action/proxmox_action.rb
148
+ - lib/vagrant-proxmox/action/read_ssh_info.rb
141
149
  - lib/vagrant-proxmox/action/read_state.rb
142
150
  - lib/vagrant-proxmox/action/shutdown_vm.rb
143
- - lib/vagrant-proxmox/action/destroy_vm.rb
144
- - lib/vagrant-proxmox/action/cleanup_after_destroy.rb
145
- - lib/vagrant-proxmox/action/stop_vm.rb
146
151
  - lib/vagrant-proxmox/action/start_vm.rb
147
- - lib/vagrant-proxmox/action/proxmox_action.rb
148
- - lib/vagrant-proxmox/action/read_ssh_info.rb
149
- - lib/vagrant-proxmox/action/message_already_stopped.rb
150
- - lib/vagrant-proxmox/action/is_stopped.rb
151
- - lib/vagrant-proxmox/action/connect_proxmox.rb
152
- - lib/vagrant-proxmox/action/message_already_running.rb
152
+ - lib/vagrant-proxmox/action/stop_vm.rb
153
+ - lib/vagrant-proxmox/action/sync_folders.rb
154
+ - lib/vagrant-proxmox/config.rb
155
+ - lib/vagrant-proxmox/errors.rb
153
156
  - lib/vagrant-proxmox/plugin.rb
154
157
  - lib/vagrant-proxmox/provider.rb
155
- - lib/vagrant-proxmox/action.rb
156
- - lib/vagrant-proxmox/errors.rb
157
158
  - lib/vagrant-proxmox/version.rb
158
- - lib/vagrant-proxmox.rb
159
159
  - locales/en.yml
160
- - spec/spec_helper.rb
161
- - spec/actions/sync_folders_action_spec.rb
162
- - spec/actions/shutdown_vm_action_spec.rb
163
- - spec/actions/read_ssh_info_action_spec.rb
160
+ - spec/actions/cleanup_after_destroy_action_spec.rb
161
+ - spec/actions/connect_proxmox_action_spec.rb
164
162
  - spec/actions/create_vm_action_spec.rb
163
+ - spec/actions/destroy_vm_action_spec.rb
164
+ - spec/actions/get_node_list_action_spec.rb
165
+ - spec/actions/is_created_action_spec.rb
165
166
  - spec/actions/is_stopped_action_spec.rb
166
- - spec/actions/connect_proxmox_action_spec.rb
167
- - spec/actions/proxmox_action_shared.rb
168
- - spec/actions/cleanup_after_destroy_action_spec.rb
167
+ - spec/actions/message_already_running_action_spec.rb
169
168
  - spec/actions/message_already_stopped_action_spec.rb
170
- - spec/actions/is_created_action_spec.rb
169
+ - spec/actions/message_not_created_action_spec.rb
170
+ - spec/actions/proxmox_action_shared.rb
171
+ - spec/actions/read_ssh_info_action_spec.rb
171
172
  - spec/actions/read_state_action_spec.rb
173
+ - spec/actions/shutdown_vm_action_spec.rb
172
174
  - spec/actions/start_vm_action_spec.rb
173
- - spec/actions/get_node_list_action_spec.rb
174
- - spec/actions/message_not_created_action_spec.rb
175
175
  - spec/actions/stop_vm_action_spec.rb
176
- - spec/actions/message_already_running_action_spec.rb
177
- - spec/actions/destroy_vm_action_spec.rb
178
- - spec/sanity_checks_spec.rb
179
- - spec/provider_spec.rb
180
- - spec/plugin_spec.rb
181
- - spec/commands/ssh_run_command_spec.rb
176
+ - spec/actions/sync_folders_action_spec.rb
182
177
  - spec/commands/destroy_command_spec.rb
183
- - spec/commands/status_command_spec.rb
184
- - spec/commands/up_command_spec.rb
185
- - spec/commands/ssh_command_spec.rb
186
178
  - spec/commands/halt_command_spec.rb
187
179
  - spec/commands/provision_command_spec.rb
180
+ - spec/commands/ssh_command_spec.rb
181
+ - spec/commands/ssh_run_command_spec.rb
182
+ - spec/commands/status_command_spec.rb
183
+ - spec/commands/up_command_spec.rb
188
184
  - spec/config_spec.rb
185
+ - spec/plugin_spec.rb
186
+ - spec/provider_spec.rb
187
+ - spec/sanity_checks_spec.rb
188
+ - spec/spec_helper.rb
189
189
  homepage: https://github.com/telcat/vagrant-proxmox
190
190
  licenses:
191
191
  - MIT
@@ -206,7 +206,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
206
206
  version: '0'
207
207
  requirements: []
208
208
  rubyforge_project:
209
- rubygems_version: 2.0.5
209
+ rubygems_version: 2.2.0
210
210
  signing_key:
211
211
  specification_version: 4
212
212
  summary: Enables Vagrant to manage virtual machines on a Proxmox server.