vagrant 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.
- data/Gemfile +3 -2
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/vagrant/config.rb +2 -2
- data/lib/vagrant/provisioners/chef.rb +2 -2
- data/vagrant.gemspec +44 -44
- metadata +43 -43
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", "
|
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 "
|
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('
|
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.
|
1
|
+
0.3.3
|
data/lib/vagrant/config.rb
CHANGED
@@ -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
|
|
data/vagrant.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{vagrant}
|
8
|
-
s.version = "0.3.
|
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-
|
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/
|
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/
|
191
|
+
"test/vagrant/actions/box/add_test.rb",
|
180
192
|
"test/vagrant/actions/box/unpackage_test.rb",
|
181
|
-
"test/vagrant/actions/box/
|
193
|
+
"test/vagrant/actions/box/download_test.rb",
|
182
194
|
"test/vagrant/actions/collection_test.rb",
|
183
|
-
"test/vagrant/actions/
|
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/
|
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/
|
189
|
-
"test/vagrant/actions/vm/
|
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/
|
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/
|
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/
|
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/
|
236
|
-
"test/vagrant/
|
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<
|
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<
|
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<
|
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
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
8
|
+
- 3
|
9
|
+
version: 0.3.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Mitchell Hashimoto
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-05-13 00:00:00 -07:00
|
19
19
|
default_executable: vagrant
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -61,7 +61,7 @@ dependencies:
|
|
61
61
|
type: :runtime
|
62
62
|
version_requirements: *id003
|
63
63
|
- !ruby/object:Gem::Dependency
|
64
|
-
name:
|
64
|
+
name: json
|
65
65
|
prerelease: false
|
66
66
|
requirement: &id004 !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
@@ -292,64 +292,64 @@ specification_version: 3
|
|
292
292
|
summary: Vagrant is a tool for building and distributing virtualized development environments.
|
293
293
|
test_files:
|
294
294
|
- test/test_helper.rb
|
295
|
+
- test/vagrant/vm_test.rb
|
296
|
+
- test/vagrant/command_test.rb
|
297
|
+
- test/vagrant/environment_test.rb
|
298
|
+
- test/vagrant/util_test.rb
|
299
|
+
- test/vagrant/box_test.rb
|
300
|
+
- test/vagrant/busy_test.rb
|
301
|
+
- test/vagrant/provisioners/base_test.rb
|
302
|
+
- test/vagrant/provisioners/chef_test.rb
|
303
|
+
- test/vagrant/provisioners/chef_server_test.rb
|
304
|
+
- test/vagrant/provisioners/chef_solo_test.rb
|
305
|
+
- test/vagrant/config_test.rb
|
295
306
|
- test/vagrant/actions/base_test.rb
|
296
|
-
- test/vagrant/actions/
|
307
|
+
- test/vagrant/actions/runner_test.rb
|
308
|
+
- test/vagrant/actions/box/verify_test.rb
|
297
309
|
- test/vagrant/actions/box/destroy_test.rb
|
298
|
-
- test/vagrant/actions/box/
|
310
|
+
- test/vagrant/actions/box/add_test.rb
|
299
311
|
- test/vagrant/actions/box/unpackage_test.rb
|
300
|
-
- test/vagrant/actions/box/
|
312
|
+
- test/vagrant/actions/box/download_test.rb
|
301
313
|
- test/vagrant/actions/collection_test.rb
|
302
|
-
- test/vagrant/actions/
|
314
|
+
- test/vagrant/actions/vm/reload_test.rb
|
315
|
+
- test/vagrant/actions/vm/suspend_test.rb
|
303
316
|
- test/vagrant/actions/vm/boot_test.rb
|
304
|
-
- test/vagrant/actions/vm/
|
305
|
-
- test/vagrant/actions/vm/destroy_test.rb
|
317
|
+
- test/vagrant/actions/vm/package_test.rb
|
306
318
|
- test/vagrant/actions/vm/down_test.rb
|
307
|
-
- test/vagrant/actions/vm/
|
308
|
-
- test/vagrant/actions/vm/
|
319
|
+
- test/vagrant/actions/vm/shared_folders_test.rb
|
320
|
+
- test/vagrant/actions/vm/destroy_test.rb
|
309
321
|
- test/vagrant/actions/vm/halt_test.rb
|
310
322
|
- test/vagrant/actions/vm/import_test.rb
|
323
|
+
- test/vagrant/actions/vm/customize_test.rb
|
324
|
+
- test/vagrant/actions/vm/start_test.rb
|
311
325
|
- test/vagrant/actions/vm/move_hard_drive_test.rb
|
312
|
-
- test/vagrant/actions/vm/
|
326
|
+
- test/vagrant/actions/vm/up_test.rb
|
327
|
+
- test/vagrant/actions/vm/export_test.rb
|
313
328
|
- test/vagrant/actions/vm/provision_test.rb
|
314
|
-
- test/vagrant/actions/vm/reload_test.rb
|
315
329
|
- test/vagrant/actions/vm/resume_test.rb
|
316
|
-
- test/vagrant/actions/vm/
|
317
|
-
- test/vagrant/actions/vm/start_test.rb
|
318
|
-
- test/vagrant/actions/vm/suspend_test.rb
|
319
|
-
- test/vagrant/actions/vm/up_test.rb
|
330
|
+
- test/vagrant/actions/vm/forward_ports_test.rb
|
320
331
|
- test/vagrant/active_list_test.rb
|
321
|
-
- test/vagrant/box_test.rb
|
322
|
-
- test/vagrant/busy_test.rb
|
323
|
-
- test/vagrant/command_test.rb
|
324
332
|
- test/vagrant/commands/base_test.rb
|
325
|
-
- test/vagrant/commands/box/add_test.rb
|
326
|
-
- test/vagrant/commands/box/list_test.rb
|
327
|
-
- test/vagrant/commands/box/remove_test.rb
|
328
|
-
- test/vagrant/commands/destroy_test.rb
|
329
|
-
- test/vagrant/commands/down_test.rb
|
330
|
-
- test/vagrant/commands/halt_test.rb
|
331
|
-
- test/vagrant/commands/init_test.rb
|
332
|
-
- test/vagrant/commands/package_test.rb
|
333
333
|
- test/vagrant/commands/reload_test.rb
|
334
|
-
- test/vagrant/commands/resume_test.rb
|
335
334
|
- test/vagrant/commands/ssh_config_test.rb
|
336
|
-
- test/vagrant/commands/ssh_test.rb
|
337
|
-
- test/vagrant/commands/status_test.rb
|
338
335
|
- test/vagrant/commands/suspend_test.rb
|
336
|
+
- test/vagrant/commands/package_test.rb
|
337
|
+
- test/vagrant/commands/status_test.rb
|
338
|
+
- test/vagrant/commands/down_test.rb
|
339
|
+
- test/vagrant/commands/init_test.rb
|
340
|
+
- test/vagrant/commands/destroy_test.rb
|
341
|
+
- test/vagrant/commands/halt_test.rb
|
342
|
+
- test/vagrant/commands/box/remove_test.rb
|
343
|
+
- test/vagrant/commands/box/add_test.rb
|
344
|
+
- test/vagrant/commands/box/list_test.rb
|
339
345
|
- test/vagrant/commands/up_test.rb
|
340
|
-
- test/vagrant/
|
346
|
+
- test/vagrant/commands/resume_test.rb
|
347
|
+
- test/vagrant/commands/ssh_test.rb
|
341
348
|
- test/vagrant/downloaders/base_test.rb
|
342
349
|
- test/vagrant/downloaders/file_test.rb
|
343
350
|
- test/vagrant/downloaders/http_test.rb
|
344
|
-
- test/vagrant/environment_test.rb
|
345
|
-
- test/vagrant/provisioners/base_test.rb
|
346
|
-
- test/vagrant/provisioners/chef_server_test.rb
|
347
|
-
- test/vagrant/provisioners/chef_solo_test.rb
|
348
|
-
- test/vagrant/provisioners/chef_test.rb
|
349
|
-
- test/vagrant/ssh_test.rb
|
350
|
-
- test/vagrant/util/errors_test.rb
|
351
|
-
- test/vagrant/util/progress_meter_test.rb
|
352
351
|
- test/vagrant/util/stacked_proc_runner_test.rb
|
352
|
+
- test/vagrant/util/progress_meter_test.rb
|
353
353
|
- test/vagrant/util/template_renderer_test.rb
|
354
|
-
- test/vagrant/
|
355
|
-
- test/vagrant/
|
354
|
+
- test/vagrant/util/errors_test.rb
|
355
|
+
- test/vagrant/ssh_test.rb
|