vagrantup 0.3.2 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 438b4a9c3c9db1258d8d6288c2b187c36b6b8c23
4
- data.tar.gz: 0b7e25e783daae65aa6ccd44ada939dc84abd907
3
+ metadata.gz: c7543eaa50faf7b10a508508ea0a9db0336093ff
4
+ data.tar.gz: 70d9fd2cd3ec58e6c29b961bf95c8e8a539ae16e
5
5
  SHA512:
6
- metadata.gz: 71fa1a3a4f31016586e9bf35827647ff00ec033873bd9de254907e029f3e4f8d7c942bcedb5940add61337df0e355425fb885e0d49bfcc52d70c5ebfb2403cb7
7
- data.tar.gz: 10a34da8f18681041c92020c86ad4676b7d738d3e11392c4e65bcb38cc336302920d0baf3d1d64927dba4efc3576f3306f9eda9439dccd81ac1056f9a6022d01
6
+ metadata.gz: dac803378141fc871fdd79ec3698d606d0aab602bd8041a4a55aab3aa9c916d2de99d63518bb929e42f19fc9c565175f1ebf8750042594ca808c56e6db56c82b
7
+ data.tar.gz: 5bb1bcf752e9ca7c95af627ee5e319920fb1a88a6e2645e03315dbed077288fabe9d4782518a13f5bd8990fb309f2d53cbf203aa0827975b771a9ef45a84e40f
data/Gemfile CHANGED
@@ -1,12 +1,13 @@
1
1
  source :gemcutter
2
2
 
3
3
  # Gems required for the lib to even run
4
- gem "virtualbox", "~> 0.6.1"
4
+ gem "virtualbox", :git => "git://github.com/mitchellh/virtualbox.git"
5
5
  gem "net-ssh", ">= 2.0.19"
6
6
  gem "net-scp", ">= 1.0.2"
7
- gem "json_pure", ">= 1.2.0"
7
+ gem "json", ">= 1.2.4"
8
8
  gem "archive-tar-minitar", "= 0.5.2"
9
9
  gem "mario", "~> 0.0.6"
10
+ gem "jeweler", "~> 1.4.0"
10
11
 
11
12
  # Gems required for testing only. To install run
12
13
  # gem bundle test
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ begin
13
13
  gemspec.add_dependency('virtualbox', '~> 0.6.1')
14
14
  gemspec.add_dependency('net-ssh', '>= 2.0.19')
15
15
  gemspec.add_dependency('net-scp', '>= 1.0.2')
16
- gemspec.add_dependency('json_pure', '>= 1.2.0')
16
+ gemspec.add_dependency('json', '>= 1.2.0')
17
17
  gemspec.add_dependency('archive-tar-minitar', '= 0.5.2')
18
18
  gemspec.add_dependency('mario', '~> 0.0.6')
19
19
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.2
1
+ 0.3.3
@@ -45,8 +45,8 @@ module Vagrant
45
45
  send(key)
46
46
  end
47
47
 
48
- def to_json
49
- instance_variables_hash.to_json
48
+ def to_json(*a)
49
+ instance_variables_hash.to_json(*a)
50
50
  end
51
51
 
52
52
  def instance_variables_hash
@@ -59,12 +59,12 @@ module Vagrant
59
59
  run_list << name
60
60
  end
61
61
 
62
- def to_json
62
+ def to_json(*a)
63
63
  # Overridden so that the 'json' key could be removed, since its just
64
64
  # merged into the config anyways
65
65
  data = instance_variables_hash
66
66
  data.delete(:json)
67
- data.to_json
67
+ data.to_json(*a)
68
68
  end
69
69
  end
70
70
 
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{vagrantup}
8
- s.version = "0.3.2"
8
+ s.version = "0.3.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Mitchell Hashimoto", "John Bender"]
12
- s.date = %q{2010-04-24}
12
+ s.date = %q{2010-05-13}
13
13
  s.default_executable = %q{vagrant}
14
14
  s.description = %q{Vagrant is a tool for building and distributing virtualized development environments.}
15
15
  s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]
@@ -173,67 +173,67 @@ Gem::Specification.new do |s|
173
173
  s.summary = %q{Vagrant is a tool for building and distributing virtualized development environments.}
174
174
  s.test_files = [
175
175
  "test/test_helper.rb",
176
+ "test/vagrant/vm_test.rb",
177
+ "test/vagrant/command_test.rb",
178
+ "test/vagrant/environment_test.rb",
179
+ "test/vagrant/util_test.rb",
180
+ "test/vagrant/box_test.rb",
181
+ "test/vagrant/busy_test.rb",
182
+ "test/vagrant/provisioners/base_test.rb",
183
+ "test/vagrant/provisioners/chef_test.rb",
184
+ "test/vagrant/provisioners/chef_server_test.rb",
185
+ "test/vagrant/provisioners/chef_solo_test.rb",
186
+ "test/vagrant/config_test.rb",
176
187
  "test/vagrant/actions/base_test.rb",
177
- "test/vagrant/actions/box/add_test.rb",
188
+ "test/vagrant/actions/runner_test.rb",
189
+ "test/vagrant/actions/box/verify_test.rb",
178
190
  "test/vagrant/actions/box/destroy_test.rb",
179
- "test/vagrant/actions/box/download_test.rb",
191
+ "test/vagrant/actions/box/add_test.rb",
180
192
  "test/vagrant/actions/box/unpackage_test.rb",
181
- "test/vagrant/actions/box/verify_test.rb",
193
+ "test/vagrant/actions/box/download_test.rb",
182
194
  "test/vagrant/actions/collection_test.rb",
183
- "test/vagrant/actions/runner_test.rb",
195
+ "test/vagrant/actions/vm/reload_test.rb",
196
+ "test/vagrant/actions/vm/suspend_test.rb",
184
197
  "test/vagrant/actions/vm/boot_test.rb",
185
- "test/vagrant/actions/vm/customize_test.rb",
186
- "test/vagrant/actions/vm/destroy_test.rb",
198
+ "test/vagrant/actions/vm/package_test.rb",
187
199
  "test/vagrant/actions/vm/down_test.rb",
188
- "test/vagrant/actions/vm/export_test.rb",
189
- "test/vagrant/actions/vm/forward_ports_test.rb",
200
+ "test/vagrant/actions/vm/shared_folders_test.rb",
201
+ "test/vagrant/actions/vm/destroy_test.rb",
190
202
  "test/vagrant/actions/vm/halt_test.rb",
191
203
  "test/vagrant/actions/vm/import_test.rb",
204
+ "test/vagrant/actions/vm/customize_test.rb",
205
+ "test/vagrant/actions/vm/start_test.rb",
192
206
  "test/vagrant/actions/vm/move_hard_drive_test.rb",
193
- "test/vagrant/actions/vm/package_test.rb",
207
+ "test/vagrant/actions/vm/up_test.rb",
208
+ "test/vagrant/actions/vm/export_test.rb",
194
209
  "test/vagrant/actions/vm/provision_test.rb",
195
- "test/vagrant/actions/vm/reload_test.rb",
196
210
  "test/vagrant/actions/vm/resume_test.rb",
197
- "test/vagrant/actions/vm/shared_folders_test.rb",
198
- "test/vagrant/actions/vm/start_test.rb",
199
- "test/vagrant/actions/vm/suspend_test.rb",
200
- "test/vagrant/actions/vm/up_test.rb",
211
+ "test/vagrant/actions/vm/forward_ports_test.rb",
201
212
  "test/vagrant/active_list_test.rb",
202
- "test/vagrant/box_test.rb",
203
- "test/vagrant/busy_test.rb",
204
- "test/vagrant/command_test.rb",
205
213
  "test/vagrant/commands/base_test.rb",
206
- "test/vagrant/commands/box/add_test.rb",
207
- "test/vagrant/commands/box/list_test.rb",
208
- "test/vagrant/commands/box/remove_test.rb",
209
- "test/vagrant/commands/destroy_test.rb",
210
- "test/vagrant/commands/down_test.rb",
211
- "test/vagrant/commands/halt_test.rb",
212
- "test/vagrant/commands/init_test.rb",
213
- "test/vagrant/commands/package_test.rb",
214
214
  "test/vagrant/commands/reload_test.rb",
215
- "test/vagrant/commands/resume_test.rb",
216
215
  "test/vagrant/commands/ssh_config_test.rb",
217
- "test/vagrant/commands/ssh_test.rb",
218
- "test/vagrant/commands/status_test.rb",
219
216
  "test/vagrant/commands/suspend_test.rb",
217
+ "test/vagrant/commands/package_test.rb",
218
+ "test/vagrant/commands/status_test.rb",
219
+ "test/vagrant/commands/down_test.rb",
220
+ "test/vagrant/commands/init_test.rb",
221
+ "test/vagrant/commands/destroy_test.rb",
222
+ "test/vagrant/commands/halt_test.rb",
223
+ "test/vagrant/commands/box/remove_test.rb",
224
+ "test/vagrant/commands/box/add_test.rb",
225
+ "test/vagrant/commands/box/list_test.rb",
220
226
  "test/vagrant/commands/up_test.rb",
221
- "test/vagrant/config_test.rb",
227
+ "test/vagrant/commands/resume_test.rb",
228
+ "test/vagrant/commands/ssh_test.rb",
222
229
  "test/vagrant/downloaders/base_test.rb",
223
230
  "test/vagrant/downloaders/file_test.rb",
224
231
  "test/vagrant/downloaders/http_test.rb",
225
- "test/vagrant/environment_test.rb",
226
- "test/vagrant/provisioners/base_test.rb",
227
- "test/vagrant/provisioners/chef_server_test.rb",
228
- "test/vagrant/provisioners/chef_solo_test.rb",
229
- "test/vagrant/provisioners/chef_test.rb",
230
- "test/vagrant/ssh_test.rb",
231
- "test/vagrant/util/errors_test.rb",
232
- "test/vagrant/util/progress_meter_test.rb",
233
232
  "test/vagrant/util/stacked_proc_runner_test.rb",
233
+ "test/vagrant/util/progress_meter_test.rb",
234
234
  "test/vagrant/util/template_renderer_test.rb",
235
- "test/vagrant/util_test.rb",
236
- "test/vagrant/vm_test.rb"
235
+ "test/vagrant/util/errors_test.rb",
236
+ "test/vagrant/ssh_test.rb"
237
237
  ]
238
238
 
239
239
  if s.respond_to? :specification_version then
@@ -244,14 +244,14 @@ Gem::Specification.new do |s|
244
244
  s.add_runtime_dependency(%q<virtualbox>, ["~> 0.6.1"])
245
245
  s.add_runtime_dependency(%q<net-ssh>, [">= 2.0.19"])
246
246
  s.add_runtime_dependency(%q<net-scp>, [">= 1.0.2"])
247
- s.add_runtime_dependency(%q<json_pure>, [">= 1.2.0"])
247
+ s.add_runtime_dependency(%q<json>, [">= 1.2.0"])
248
248
  s.add_runtime_dependency(%q<archive-tar-minitar>, ["= 0.5.2"])
249
249
  s.add_runtime_dependency(%q<mario>, ["~> 0.0.6"])
250
250
  else
251
251
  s.add_dependency(%q<virtualbox>, ["~> 0.6.1"])
252
252
  s.add_dependency(%q<net-ssh>, [">= 2.0.19"])
253
253
  s.add_dependency(%q<net-scp>, [">= 1.0.2"])
254
- s.add_dependency(%q<json_pure>, [">= 1.2.0"])
254
+ s.add_dependency(%q<json>, [">= 1.2.0"])
255
255
  s.add_dependency(%q<archive-tar-minitar>, ["= 0.5.2"])
256
256
  s.add_dependency(%q<mario>, ["~> 0.0.6"])
257
257
  end
@@ -259,7 +259,7 @@ Gem::Specification.new do |s|
259
259
  s.add_dependency(%q<virtualbox>, ["~> 0.6.1"])
260
260
  s.add_dependency(%q<net-ssh>, [">= 2.0.19"])
261
261
  s.add_dependency(%q<net-scp>, [">= 1.0.2"])
262
- s.add_dependency(%q<json_pure>, [">= 1.2.0"])
262
+ s.add_dependency(%q<json>, [">= 1.2.0"])
263
263
  s.add_dependency(%q<archive-tar-minitar>, ["= 0.5.2"])
264
264
  s.add_dependency(%q<mario>, ["~> 0.0.6"])
265
265
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrantup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitchell Hashimoto
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2010-04-24 00:00:00.000000000 Z
12
+ date: 2010-05-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: virtualbox
@@ -54,7 +54,7 @@ dependencies:
54
54
  - !ruby/object:Gem::Version
55
55
  version: 1.0.2
56
56
  - !ruby/object:Gem::Dependency
57
- name: json_pure
57
+ name: json
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
60
  - - '>='
@@ -279,65 +279,65 @@ specification_version: 3
279
279
  summary: Vagrant is a tool for building and distributing virtualized development environments.
280
280
  test_files:
281
281
  - test/test_helper.rb
282
+ - test/vagrant/vm_test.rb
283
+ - test/vagrant/command_test.rb
284
+ - test/vagrant/environment_test.rb
285
+ - test/vagrant/util_test.rb
286
+ - test/vagrant/box_test.rb
287
+ - test/vagrant/busy_test.rb
288
+ - test/vagrant/provisioners/base_test.rb
289
+ - test/vagrant/provisioners/chef_test.rb
290
+ - test/vagrant/provisioners/chef_server_test.rb
291
+ - test/vagrant/provisioners/chef_solo_test.rb
292
+ - test/vagrant/config_test.rb
282
293
  - test/vagrant/actions/base_test.rb
283
- - test/vagrant/actions/box/add_test.rb
294
+ - test/vagrant/actions/runner_test.rb
295
+ - test/vagrant/actions/box/verify_test.rb
284
296
  - test/vagrant/actions/box/destroy_test.rb
285
- - test/vagrant/actions/box/download_test.rb
297
+ - test/vagrant/actions/box/add_test.rb
286
298
  - test/vagrant/actions/box/unpackage_test.rb
287
- - test/vagrant/actions/box/verify_test.rb
299
+ - test/vagrant/actions/box/download_test.rb
288
300
  - test/vagrant/actions/collection_test.rb
289
- - test/vagrant/actions/runner_test.rb
301
+ - test/vagrant/actions/vm/reload_test.rb
302
+ - test/vagrant/actions/vm/suspend_test.rb
290
303
  - test/vagrant/actions/vm/boot_test.rb
291
- - test/vagrant/actions/vm/customize_test.rb
292
- - test/vagrant/actions/vm/destroy_test.rb
304
+ - test/vagrant/actions/vm/package_test.rb
293
305
  - test/vagrant/actions/vm/down_test.rb
294
- - test/vagrant/actions/vm/export_test.rb
295
- - test/vagrant/actions/vm/forward_ports_test.rb
306
+ - test/vagrant/actions/vm/shared_folders_test.rb
307
+ - test/vagrant/actions/vm/destroy_test.rb
296
308
  - test/vagrant/actions/vm/halt_test.rb
297
309
  - test/vagrant/actions/vm/import_test.rb
310
+ - test/vagrant/actions/vm/customize_test.rb
311
+ - test/vagrant/actions/vm/start_test.rb
298
312
  - test/vagrant/actions/vm/move_hard_drive_test.rb
299
- - test/vagrant/actions/vm/package_test.rb
313
+ - test/vagrant/actions/vm/up_test.rb
314
+ - test/vagrant/actions/vm/export_test.rb
300
315
  - test/vagrant/actions/vm/provision_test.rb
301
- - test/vagrant/actions/vm/reload_test.rb
302
316
  - test/vagrant/actions/vm/resume_test.rb
303
- - test/vagrant/actions/vm/shared_folders_test.rb
304
- - test/vagrant/actions/vm/start_test.rb
305
- - test/vagrant/actions/vm/suspend_test.rb
306
- - test/vagrant/actions/vm/up_test.rb
317
+ - test/vagrant/actions/vm/forward_ports_test.rb
307
318
  - test/vagrant/active_list_test.rb
308
- - test/vagrant/box_test.rb
309
- - test/vagrant/busy_test.rb
310
- - test/vagrant/command_test.rb
311
319
  - test/vagrant/commands/base_test.rb
312
- - test/vagrant/commands/box/add_test.rb
313
- - test/vagrant/commands/box/list_test.rb
314
- - test/vagrant/commands/box/remove_test.rb
315
- - test/vagrant/commands/destroy_test.rb
316
- - test/vagrant/commands/down_test.rb
317
- - test/vagrant/commands/halt_test.rb
318
- - test/vagrant/commands/init_test.rb
319
- - test/vagrant/commands/package_test.rb
320
320
  - test/vagrant/commands/reload_test.rb
321
- - test/vagrant/commands/resume_test.rb
322
321
  - test/vagrant/commands/ssh_config_test.rb
323
- - test/vagrant/commands/ssh_test.rb
324
- - test/vagrant/commands/status_test.rb
325
322
  - test/vagrant/commands/suspend_test.rb
323
+ - test/vagrant/commands/package_test.rb
324
+ - test/vagrant/commands/status_test.rb
325
+ - test/vagrant/commands/down_test.rb
326
+ - test/vagrant/commands/init_test.rb
327
+ - test/vagrant/commands/destroy_test.rb
328
+ - test/vagrant/commands/halt_test.rb
329
+ - test/vagrant/commands/box/remove_test.rb
330
+ - test/vagrant/commands/box/add_test.rb
331
+ - test/vagrant/commands/box/list_test.rb
326
332
  - test/vagrant/commands/up_test.rb
327
- - test/vagrant/config_test.rb
333
+ - test/vagrant/commands/resume_test.rb
334
+ - test/vagrant/commands/ssh_test.rb
328
335
  - test/vagrant/downloaders/base_test.rb
329
336
  - test/vagrant/downloaders/file_test.rb
330
337
  - test/vagrant/downloaders/http_test.rb
331
- - test/vagrant/environment_test.rb
332
- - test/vagrant/provisioners/base_test.rb
333
- - test/vagrant/provisioners/chef_server_test.rb
334
- - test/vagrant/provisioners/chef_solo_test.rb
335
- - test/vagrant/provisioners/chef_test.rb
336
- - test/vagrant/ssh_test.rb
337
- - test/vagrant/util/errors_test.rb
338
- - test/vagrant/util/progress_meter_test.rb
339
338
  - test/vagrant/util/stacked_proc_runner_test.rb
339
+ - test/vagrant/util/progress_meter_test.rb
340
340
  - test/vagrant/util/template_renderer_test.rb
341
- - test/vagrant/util_test.rb
342
- - test/vagrant/vm_test.rb
341
+ - test/vagrant/util/errors_test.rb
342
+ - test/vagrant/ssh_test.rb
343
343
  has_rdoc: