vagrant 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +10 -0
- data/CHANGELOG.md +48 -0
- data/Gemfile +16 -0
- data/Gemfile.lock +49 -0
- data/README.md +2 -2
- data/Rakefile +22 -0
- data/bin/.gitignore +0 -0
- data/lib/vagrant/provisioners/chef_solo.rb +1 -1
- data/lib/vagrant/util/template_renderer.rb +2 -2
- data/lib/vagrant/version.rb +1 -1
- data/templates/Vagrantfile.erb +1 -1
- data/templates/nfs/exports.erb +4 -2
- data/test/test_helper.rb +128 -0
- data/test/vagrant/action/box/destroy_test.rb +30 -0
- data/test/vagrant/action/box/download_test.rb +141 -0
- data/test/vagrant/action/box/package_test.rb +25 -0
- data/test/vagrant/action/box/unpackage_test.rb +103 -0
- data/test/vagrant/action/box/verify_test.rb +39 -0
- data/test/vagrant/action/builder_test.rb +218 -0
- data/test/vagrant/action/env/error_halt_test.rb +21 -0
- data/test/vagrant/action/env/set_test.rb +24 -0
- data/test/vagrant/action/environment_test.rb +45 -0
- data/test/vagrant/action/exception_catcher_test.rb +30 -0
- data/test/vagrant/action/general/package_test.rb +254 -0
- data/test/vagrant/action/vm/boot_test.rb +83 -0
- data/test/vagrant/action/vm/check_box_test.rb +48 -0
- data/test/vagrant/action/vm/check_guest_additions_test.rb +9 -0
- data/test/vagrant/action/vm/clean_machine_folder_test.rb +82 -0
- data/test/vagrant/action/vm/clear_forwarded_ports_test.rb +72 -0
- data/test/vagrant/action/vm/clear_nfs_exports_test.rb +22 -0
- data/test/vagrant/action/vm/clear_shared_folders_test.rb +49 -0
- data/test/vagrant/action/vm/customize_test.rb +29 -0
- data/test/vagrant/action/vm/destroy_test.rb +26 -0
- data/test/vagrant/action/vm/destroy_unused_network_interfaces_test.rb +46 -0
- data/test/vagrant/action/vm/disable_networks_test.rb +39 -0
- data/test/vagrant/action/vm/discard_state_test.rb +36 -0
- data/test/vagrant/action/vm/export_test.rb +135 -0
- data/test/vagrant/action/vm/forward_ports_helpers_test.rb +70 -0
- data/test/vagrant/action/vm/forward_ports_test.rb +191 -0
- data/test/vagrant/action/vm/halt_test.rb +69 -0
- data/test/vagrant/action/vm/import_test.rb +50 -0
- data/test/vagrant/action/vm/match_mac_address_test.rb +28 -0
- data/test/vagrant/action/vm/network_test.rb +246 -0
- data/test/vagrant/action/vm/nfs_helpers_test.rb +23 -0
- data/test/vagrant/action/vm/nfs_test.rb +269 -0
- data/test/vagrant/action/vm/package_test.rb +25 -0
- data/test/vagrant/action/vm/package_vagrantfile_test.rb +46 -0
- data/test/vagrant/action/vm/persist_test.rb +50 -0
- data/test/vagrant/action/vm/provision_test.rb +134 -0
- data/test/vagrant/action/vm/resume_test.rb +35 -0
- data/test/vagrant/action/vm/share_folders_test.rb +215 -0
- data/test/vagrant/action/vm/suspend_test.rb +35 -0
- data/test/vagrant/action_test.rb +111 -0
- data/test/vagrant/active_list_test.rb +173 -0
- data/test/vagrant/box_test.rb +166 -0
- data/test/vagrant/command_test.rb +53 -0
- data/test/vagrant/commands/base_test.rb +139 -0
- data/test/vagrant/commands/box/add_test.rb +34 -0
- data/test/vagrant/commands/box/list_test.rb +32 -0
- data/test/vagrant/commands/box/remove_test.rb +41 -0
- data/test/vagrant/commands/box/repackage_test.rb +52 -0
- data/test/vagrant/commands/destroy_test.rb +44 -0
- data/test/vagrant/commands/halt_test.rb +50 -0
- data/test/vagrant/commands/init_test.rb +71 -0
- data/test/vagrant/commands/package_test.rb +97 -0
- data/test/vagrant/commands/provision_test.rb +60 -0
- data/test/vagrant/commands/reload_test.rb +47 -0
- data/test/vagrant/commands/resume_test.rb +44 -0
- data/test/vagrant/commands/ssh_config_test.rb +77 -0
- data/test/vagrant/commands/ssh_test.rb +129 -0
- data/test/vagrant/commands/status_test.rb +40 -0
- data/test/vagrant/commands/suspend_test.rb +44 -0
- data/test/vagrant/commands/up_test.rb +49 -0
- data/test/vagrant/config_test.rb +307 -0
- data/test/vagrant/downloaders/base_test.rb +28 -0
- data/test/vagrant/downloaders/file_test.rb +33 -0
- data/test/vagrant/downloaders/http_test.rb +70 -0
- data/test/vagrant/environment_test.rb +770 -0
- data/test/vagrant/hosts/base_test.rb +46 -0
- data/test/vagrant/hosts/bsd_test.rb +56 -0
- data/test/vagrant/hosts/linux_test.rb +56 -0
- data/test/vagrant/provisioners/base_test.rb +36 -0
- data/test/vagrant/provisioners/chef_server_test.rb +182 -0
- data/test/vagrant/provisioners/chef_solo_test.rb +197 -0
- data/test/vagrant/provisioners/chef_test.rb +178 -0
- data/test/vagrant/ssh_session_test.rb +46 -0
- data/test/vagrant/ssh_test.rb +317 -0
- data/test/vagrant/systems/linux_test.rb +179 -0
- data/test/vagrant/util/busy_test.rb +106 -0
- data/test/vagrant/util/plain_logger_test.rb +17 -0
- data/test/vagrant/util/platform_test.rb +18 -0
- data/test/vagrant/util/resource_logger_test.rb +145 -0
- data/test/vagrant/util/stacked_proc_runner_test.rb +43 -0
- data/test/vagrant/util/template_renderer_test.rb +145 -0
- data/test/vagrant/util/translator_test.rb +61 -0
- data/test/vagrant/util_test.rb +27 -0
- data/test/vagrant/vm_test.rb +228 -0
- data/vagrant.gemspec +34 -0
- metadata +158 -43
data/vagrant.gemspec
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
require File.expand_path("../lib/vagrant/version", __FILE__)
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = "vagrant"
|
5
|
+
s.version = Vagrant::VERSION
|
6
|
+
s.platform = Gem::Platform::RUBY
|
7
|
+
s.authors = ["Mitchell Hashimoto", "John Bender"]
|
8
|
+
s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]
|
9
|
+
s.homepage = "http://vagrantup.com"
|
10
|
+
s.summary = "Build and distribute virtualized development environments."
|
11
|
+
s.description = "Vagrant is a tool for building and distributing virtualized development environments."
|
12
|
+
|
13
|
+
s.required_rubygems_version = ">= 1.3.6"
|
14
|
+
s.rubyforge_project = "vagrant"
|
15
|
+
|
16
|
+
s.add_dependency("virtualbox", "~> 0.7.3")
|
17
|
+
s.add_dependency("net-ssh", ">= 2.0.19")
|
18
|
+
s.add_dependency("net-scp", ">= 1.0.2")
|
19
|
+
s.add_dependency("json", ">= 1.4.3")
|
20
|
+
s.add_dependency("archive-tar-minitar", "= 0.5.2")
|
21
|
+
s.add_dependency("mario", "~> 0.0.6")
|
22
|
+
s.add_dependency("erubis", ">= 2.6.6")
|
23
|
+
|
24
|
+
s.add_development_dependency("rake")
|
25
|
+
s.add_development_dependency("contest", ">= 0.1.2")
|
26
|
+
s.add_development_dependency("mocha")
|
27
|
+
s.add_development_dependency("ruby-debug")
|
28
|
+
s.add_development_dependency("bundler", ">= 1.0.0.rc.5")
|
29
|
+
|
30
|
+
s.files = `git ls-files`.split("\n")
|
31
|
+
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
32
|
+
s.require_path = 'lib'
|
33
|
+
end
|
34
|
+
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 15
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 0
|
8
7
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
8
|
+
- 3
|
9
|
+
version: 0.5.3
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Mitchell Hashimoto
|
@@ -16,180 +15,213 @@ autorequire:
|
|
16
15
|
bindir: bin
|
17
16
|
cert_chain: []
|
18
17
|
|
19
|
-
date: 2010-08-
|
18
|
+
date: 2010-08-23 00:00:00 -07:00
|
20
19
|
default_executable:
|
21
20
|
dependencies:
|
22
21
|
- !ruby/object:Gem::Dependency
|
23
22
|
name: virtualbox
|
24
|
-
prerelease: false
|
25
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
26
24
|
none: false
|
27
25
|
requirements:
|
28
26
|
- - ~>
|
29
27
|
- !ruby/object:Gem::Version
|
30
|
-
hash: 5
|
31
28
|
segments:
|
32
29
|
- 0
|
33
30
|
- 7
|
34
31
|
- 3
|
35
32
|
version: 0.7.3
|
36
33
|
type: :runtime
|
34
|
+
prerelease: false
|
37
35
|
version_requirements: *id001
|
38
36
|
- !ruby/object:Gem::Dependency
|
39
37
|
name: net-ssh
|
40
|
-
prerelease: false
|
41
38
|
requirement: &id002 !ruby/object:Gem::Requirement
|
42
39
|
none: false
|
43
40
|
requirements:
|
44
41
|
- - ">="
|
45
42
|
- !ruby/object:Gem::Version
|
46
|
-
hash: 41
|
47
43
|
segments:
|
48
44
|
- 2
|
49
45
|
- 0
|
50
46
|
- 19
|
51
47
|
version: 2.0.19
|
52
48
|
type: :runtime
|
49
|
+
prerelease: false
|
53
50
|
version_requirements: *id002
|
54
51
|
- !ruby/object:Gem::Dependency
|
55
52
|
name: net-scp
|
56
|
-
prerelease: false
|
57
53
|
requirement: &id003 !ruby/object:Gem::Requirement
|
58
54
|
none: false
|
59
55
|
requirements:
|
60
56
|
- - ">="
|
61
57
|
- !ruby/object:Gem::Version
|
62
|
-
hash: 19
|
63
58
|
segments:
|
64
59
|
- 1
|
65
60
|
- 0
|
66
61
|
- 2
|
67
62
|
version: 1.0.2
|
68
63
|
type: :runtime
|
64
|
+
prerelease: false
|
69
65
|
version_requirements: *id003
|
70
66
|
- !ruby/object:Gem::Dependency
|
71
67
|
name: json
|
72
|
-
prerelease: false
|
73
68
|
requirement: &id004 !ruby/object:Gem::Requirement
|
74
69
|
none: false
|
75
70
|
requirements:
|
76
71
|
- - ">="
|
77
72
|
- !ruby/object:Gem::Version
|
78
|
-
hash: 1
|
79
73
|
segments:
|
80
74
|
- 1
|
81
75
|
- 4
|
82
76
|
- 3
|
83
77
|
version: 1.4.3
|
84
78
|
type: :runtime
|
79
|
+
prerelease: false
|
85
80
|
version_requirements: *id004
|
86
81
|
- !ruby/object:Gem::Dependency
|
87
82
|
name: archive-tar-minitar
|
88
|
-
prerelease: false
|
89
83
|
requirement: &id005 !ruby/object:Gem::Requirement
|
90
84
|
none: false
|
91
85
|
requirements:
|
92
86
|
- - "="
|
93
87
|
- !ruby/object:Gem::Version
|
94
|
-
hash: 15
|
95
88
|
segments:
|
96
89
|
- 0
|
97
90
|
- 5
|
98
91
|
- 2
|
99
92
|
version: 0.5.2
|
100
93
|
type: :runtime
|
94
|
+
prerelease: false
|
101
95
|
version_requirements: *id005
|
102
96
|
- !ruby/object:Gem::Dependency
|
103
97
|
name: mario
|
104
|
-
prerelease: false
|
105
98
|
requirement: &id006 !ruby/object:Gem::Requirement
|
106
99
|
none: false
|
107
100
|
requirements:
|
108
101
|
- - ~>
|
109
102
|
- !ruby/object:Gem::Version
|
110
|
-
hash: 19
|
111
103
|
segments:
|
112
104
|
- 0
|
113
105
|
- 0
|
114
106
|
- 6
|
115
107
|
version: 0.0.6
|
116
108
|
type: :runtime
|
109
|
+
prerelease: false
|
117
110
|
version_requirements: *id006
|
118
111
|
- !ruby/object:Gem::Dependency
|
119
|
-
name:
|
120
|
-
prerelease: false
|
112
|
+
name: erubis
|
121
113
|
requirement: &id007 !ruby/object:Gem::Requirement
|
122
114
|
none: false
|
123
115
|
requirements:
|
124
116
|
- - ">="
|
125
117
|
- !ruby/object:Gem::Version
|
126
|
-
|
118
|
+
segments:
|
119
|
+
- 2
|
120
|
+
- 6
|
121
|
+
- 6
|
122
|
+
version: 2.6.6
|
123
|
+
type: :runtime
|
124
|
+
prerelease: false
|
125
|
+
version_requirements: *id007
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: rake
|
128
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ">="
|
132
|
+
- !ruby/object:Gem::Version
|
127
133
|
segments:
|
128
134
|
- 0
|
129
135
|
version: "0"
|
130
136
|
type: :development
|
131
|
-
|
137
|
+
prerelease: false
|
138
|
+
version_requirements: *id008
|
132
139
|
- !ruby/object:Gem::Dependency
|
133
140
|
name: contest
|
134
|
-
|
135
|
-
requirement: &id008 !ruby/object:Gem::Requirement
|
141
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
136
142
|
none: false
|
137
143
|
requirements:
|
138
144
|
- - ">="
|
139
145
|
- !ruby/object:Gem::Version
|
140
|
-
hash: 31
|
141
146
|
segments:
|
142
147
|
- 0
|
143
148
|
- 1
|
144
149
|
- 2
|
145
150
|
version: 0.1.2
|
146
151
|
type: :development
|
147
|
-
|
152
|
+
prerelease: false
|
153
|
+
version_requirements: *id009
|
148
154
|
- !ruby/object:Gem::Dependency
|
149
155
|
name: mocha
|
150
|
-
|
151
|
-
requirement: &id009 !ruby/object:Gem::Requirement
|
156
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
152
157
|
none: false
|
153
158
|
requirements:
|
154
159
|
- - ">="
|
155
160
|
- !ruby/object:Gem::Version
|
156
|
-
hash: 3
|
157
161
|
segments:
|
158
162
|
- 0
|
159
163
|
version: "0"
|
160
164
|
type: :development
|
161
|
-
|
165
|
+
prerelease: false
|
166
|
+
version_requirements: *id010
|
162
167
|
- !ruby/object:Gem::Dependency
|
163
168
|
name: ruby-debug
|
164
|
-
|
165
|
-
requirement: &id010 !ruby/object:Gem::Requirement
|
169
|
+
requirement: &id011 !ruby/object:Gem::Requirement
|
166
170
|
none: false
|
167
171
|
requirements:
|
168
172
|
- - ">="
|
169
173
|
- !ruby/object:Gem::Version
|
170
|
-
hash: 3
|
171
174
|
segments:
|
172
175
|
- 0
|
173
176
|
version: "0"
|
174
177
|
type: :development
|
175
|
-
|
178
|
+
prerelease: false
|
179
|
+
version_requirements: *id011
|
180
|
+
- !ruby/object:Gem::Dependency
|
181
|
+
name: bundler
|
182
|
+
requirement: &id012 !ruby/object:Gem::Requirement
|
183
|
+
none: false
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
segments:
|
188
|
+
- 1
|
189
|
+
- 0
|
190
|
+
- 0
|
191
|
+
- rc
|
192
|
+
- 5
|
193
|
+
version: 1.0.0.rc.5
|
194
|
+
type: :development
|
195
|
+
prerelease: false
|
196
|
+
version_requirements: *id012
|
176
197
|
description: Vagrant is a tool for building and distributing virtualized development environments.
|
177
198
|
email:
|
178
199
|
- mitchell.hashimoto@gmail.com
|
179
200
|
- john.m.bender@gmail.com
|
180
201
|
executables:
|
202
|
+
- .gitignore
|
181
203
|
- vagrant
|
182
204
|
extensions: []
|
183
205
|
|
184
206
|
extra_rdoc_files: []
|
185
207
|
|
186
208
|
files:
|
209
|
+
- .gitignore
|
210
|
+
- CHANGELOG.md
|
211
|
+
- Gemfile
|
212
|
+
- Gemfile.lock
|
213
|
+
- LICENSE
|
214
|
+
- README.md
|
215
|
+
- Rakefile
|
216
|
+
- bin/.gitignore
|
187
217
|
- bin/vagrant
|
188
218
|
- config/default.rb
|
189
219
|
- keys/README.md
|
190
220
|
- keys/vagrant
|
191
221
|
- keys/vagrant.ppk
|
192
222
|
- keys/vagrant.pub
|
223
|
+
- lib/vagrant.rb
|
224
|
+
- lib/vagrant/action.rb
|
193
225
|
- lib/vagrant/action/action_exception.rb
|
194
226
|
- lib/vagrant/action/box/destroy.rb
|
195
227
|
- lib/vagrant/action/box/download.rb
|
@@ -231,16 +263,15 @@ files:
|
|
231
263
|
- lib/vagrant/action/vm/resume.rb
|
232
264
|
- lib/vagrant/action/vm/share_folders.rb
|
233
265
|
- lib/vagrant/action/vm/suspend.rb
|
234
|
-
- lib/vagrant/action.rb
|
235
266
|
- lib/vagrant/active_list.rb
|
236
267
|
- lib/vagrant/box.rb
|
237
268
|
- lib/vagrant/command.rb
|
238
269
|
- lib/vagrant/commands/base.rb
|
270
|
+
- lib/vagrant/commands/box.rb
|
239
271
|
- lib/vagrant/commands/box/add.rb
|
240
272
|
- lib/vagrant/commands/box/list.rb
|
241
273
|
- lib/vagrant/commands/box/remove.rb
|
242
274
|
- lib/vagrant/commands/box/repackage.rb
|
243
|
-
- lib/vagrant/commands/box.rb
|
244
275
|
- lib/vagrant/commands/destroy.rb
|
245
276
|
- lib/vagrant/commands/halt.rb
|
246
277
|
- lib/vagrant/commands/init.rb
|
@@ -269,6 +300,7 @@ files:
|
|
269
300
|
- lib/vagrant/ssh.rb
|
270
301
|
- lib/vagrant/systems/base.rb
|
271
302
|
- lib/vagrant/systems/linux.rb
|
303
|
+
- lib/vagrant/util.rb
|
272
304
|
- lib/vagrant/util/busy.rb
|
273
305
|
- lib/vagrant/util/glob_loader.rb
|
274
306
|
- lib/vagrant/util/plain_logger.rb
|
@@ -277,10 +309,9 @@ files:
|
|
277
309
|
- lib/vagrant/util/stacked_proc_runner.rb
|
278
310
|
- lib/vagrant/util/template_renderer.rb
|
279
311
|
- lib/vagrant/util/translator.rb
|
280
|
-
- lib/vagrant/util.rb
|
281
312
|
- lib/vagrant/version.rb
|
282
313
|
- lib/vagrant/vm.rb
|
283
|
-
-
|
314
|
+
- templates/Vagrantfile.erb
|
284
315
|
- templates/chef_server_client.erb
|
285
316
|
- templates/chef_solo_solo.erb
|
286
317
|
- templates/network_entry.erb
|
@@ -291,9 +322,92 @@ files:
|
|
291
322
|
- templates/strings.yml
|
292
323
|
- templates/unison/crontab_entry.erb
|
293
324
|
- templates/unison/script.erb
|
294
|
-
-
|
295
|
-
-
|
296
|
-
-
|
325
|
+
- test/test_helper.rb
|
326
|
+
- test/vagrant/action/box/destroy_test.rb
|
327
|
+
- test/vagrant/action/box/download_test.rb
|
328
|
+
- test/vagrant/action/box/package_test.rb
|
329
|
+
- test/vagrant/action/box/unpackage_test.rb
|
330
|
+
- test/vagrant/action/box/verify_test.rb
|
331
|
+
- test/vagrant/action/builder_test.rb
|
332
|
+
- test/vagrant/action/env/error_halt_test.rb
|
333
|
+
- test/vagrant/action/env/set_test.rb
|
334
|
+
- test/vagrant/action/environment_test.rb
|
335
|
+
- test/vagrant/action/exception_catcher_test.rb
|
336
|
+
- test/vagrant/action/general/package_test.rb
|
337
|
+
- test/vagrant/action/vm/boot_test.rb
|
338
|
+
- test/vagrant/action/vm/check_box_test.rb
|
339
|
+
- test/vagrant/action/vm/check_guest_additions_test.rb
|
340
|
+
- test/vagrant/action/vm/clean_machine_folder_test.rb
|
341
|
+
- test/vagrant/action/vm/clear_forwarded_ports_test.rb
|
342
|
+
- test/vagrant/action/vm/clear_nfs_exports_test.rb
|
343
|
+
- test/vagrant/action/vm/clear_shared_folders_test.rb
|
344
|
+
- test/vagrant/action/vm/customize_test.rb
|
345
|
+
- test/vagrant/action/vm/destroy_test.rb
|
346
|
+
- test/vagrant/action/vm/destroy_unused_network_interfaces_test.rb
|
347
|
+
- test/vagrant/action/vm/disable_networks_test.rb
|
348
|
+
- test/vagrant/action/vm/discard_state_test.rb
|
349
|
+
- test/vagrant/action/vm/export_test.rb
|
350
|
+
- test/vagrant/action/vm/forward_ports_helpers_test.rb
|
351
|
+
- test/vagrant/action/vm/forward_ports_test.rb
|
352
|
+
- test/vagrant/action/vm/halt_test.rb
|
353
|
+
- test/vagrant/action/vm/import_test.rb
|
354
|
+
- test/vagrant/action/vm/match_mac_address_test.rb
|
355
|
+
- test/vagrant/action/vm/network_test.rb
|
356
|
+
- test/vagrant/action/vm/nfs_helpers_test.rb
|
357
|
+
- test/vagrant/action/vm/nfs_test.rb
|
358
|
+
- test/vagrant/action/vm/package_test.rb
|
359
|
+
- test/vagrant/action/vm/package_vagrantfile_test.rb
|
360
|
+
- test/vagrant/action/vm/persist_test.rb
|
361
|
+
- test/vagrant/action/vm/provision_test.rb
|
362
|
+
- test/vagrant/action/vm/resume_test.rb
|
363
|
+
- test/vagrant/action/vm/share_folders_test.rb
|
364
|
+
- test/vagrant/action/vm/suspend_test.rb
|
365
|
+
- test/vagrant/action_test.rb
|
366
|
+
- test/vagrant/active_list_test.rb
|
367
|
+
- test/vagrant/box_test.rb
|
368
|
+
- test/vagrant/command_test.rb
|
369
|
+
- test/vagrant/commands/base_test.rb
|
370
|
+
- test/vagrant/commands/box/add_test.rb
|
371
|
+
- test/vagrant/commands/box/list_test.rb
|
372
|
+
- test/vagrant/commands/box/remove_test.rb
|
373
|
+
- test/vagrant/commands/box/repackage_test.rb
|
374
|
+
- test/vagrant/commands/destroy_test.rb
|
375
|
+
- test/vagrant/commands/halt_test.rb
|
376
|
+
- test/vagrant/commands/init_test.rb
|
377
|
+
- test/vagrant/commands/package_test.rb
|
378
|
+
- test/vagrant/commands/provision_test.rb
|
379
|
+
- test/vagrant/commands/reload_test.rb
|
380
|
+
- test/vagrant/commands/resume_test.rb
|
381
|
+
- test/vagrant/commands/ssh_config_test.rb
|
382
|
+
- test/vagrant/commands/ssh_test.rb
|
383
|
+
- test/vagrant/commands/status_test.rb
|
384
|
+
- test/vagrant/commands/suspend_test.rb
|
385
|
+
- test/vagrant/commands/up_test.rb
|
386
|
+
- test/vagrant/config_test.rb
|
387
|
+
- test/vagrant/downloaders/base_test.rb
|
388
|
+
- test/vagrant/downloaders/file_test.rb
|
389
|
+
- test/vagrant/downloaders/http_test.rb
|
390
|
+
- test/vagrant/environment_test.rb
|
391
|
+
- test/vagrant/hosts/base_test.rb
|
392
|
+
- test/vagrant/hosts/bsd_test.rb
|
393
|
+
- test/vagrant/hosts/linux_test.rb
|
394
|
+
- test/vagrant/provisioners/base_test.rb
|
395
|
+
- test/vagrant/provisioners/chef_server_test.rb
|
396
|
+
- test/vagrant/provisioners/chef_solo_test.rb
|
397
|
+
- test/vagrant/provisioners/chef_test.rb
|
398
|
+
- test/vagrant/ssh_session_test.rb
|
399
|
+
- test/vagrant/ssh_test.rb
|
400
|
+
- test/vagrant/systems/linux_test.rb
|
401
|
+
- test/vagrant/util/busy_test.rb
|
402
|
+
- test/vagrant/util/plain_logger_test.rb
|
403
|
+
- test/vagrant/util/platform_test.rb
|
404
|
+
- test/vagrant/util/resource_logger_test.rb
|
405
|
+
- test/vagrant/util/stacked_proc_runner_test.rb
|
406
|
+
- test/vagrant/util/template_renderer_test.rb
|
407
|
+
- test/vagrant/util/translator_test.rb
|
408
|
+
- test/vagrant/util_test.rb
|
409
|
+
- test/vagrant/vm_test.rb
|
410
|
+
- vagrant.gemspec
|
297
411
|
has_rdoc: true
|
298
412
|
homepage: http://vagrantup.com
|
299
413
|
licenses: []
|
@@ -308,7 +422,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
308
422
|
requirements:
|
309
423
|
- - ">="
|
310
424
|
- !ruby/object:Gem::Version
|
311
|
-
hash:
|
425
|
+
hash: 3422070577367185266
|
312
426
|
segments:
|
313
427
|
- 0
|
314
428
|
version: "0"
|
@@ -317,10 +431,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
317
431
|
requirements:
|
318
432
|
- - ">="
|
319
433
|
- !ruby/object:Gem::Version
|
320
|
-
hash: 3
|
321
434
|
segments:
|
322
|
-
-
|
323
|
-
|
435
|
+
- 1
|
436
|
+
- 3
|
437
|
+
- 6
|
438
|
+
version: 1.3.6
|
324
439
|
requirements: []
|
325
440
|
|
326
441
|
rubyforge_project: vagrant
|