vbox 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (131) hide show
  1. data/.gitignore +14 -0
  2. data/Gemfile +5 -0
  3. data/Gemfile.lock +68 -0
  4. data/README.md +5 -0
  5. data/Rakefile +91 -0
  6. data/bin/vbox +73 -0
  7. data/lib/java/README.txt +5 -0
  8. data/lib/java/dir2floppy.jar +0 -0
  9. data/lib/java/dir2floppy.java +134 -0
  10. data/lib/vagrant_init.rb +6 -0
  11. data/lib/vbox.rb +2 -0
  12. data/lib/vbox/command.rb +82 -0
  13. data/lib/vbox/config.rb +5 -0
  14. data/lib/vbox/export.rb +65 -0
  15. data/lib/vbox/scancode.rb +208 -0
  16. data/lib/vbox/session.rb +893 -0
  17. data/lib/vbox/shell.rb +54 -0
  18. data/lib/vbox/ssh.rb +193 -0
  19. data/lib/vbox/transaction.rb +122 -0
  20. data/lib/vbox/utils.rb +26 -0
  21. data/lib/vbox/version.rb +3 -0
  22. data/lib/vbox/web.rb +48 -0
  23. data/templates/CentOS-5.7-i386-netboot/definition.rb +16 -0
  24. data/templates/CentOS-5.7-i386-netboot/ks.cfg +45 -0
  25. data/templates/CentOS-5.7-i386-netboot/postinstall.sh +53 -0
  26. data/templates/CentOS-5.7-x86_64-netboot/definition.rb +16 -0
  27. data/templates/CentOS-5.7-x86_64-netboot/ks.cfg +45 -0
  28. data/templates/CentOS-5.7-x86_64-netboot/postinstall.sh +60 -0
  29. data/templates/CentOS-6.0-i386-netboot/definition.rb +16 -0
  30. data/templates/CentOS-6.0-i386-netboot/ks.cfg +52 -0
  31. data/templates/CentOS-6.0-i386-netboot/postinstall.sh +30 -0
  32. data/templates/CentOS-6.0-i386/definition.rb +17 -0
  33. data/templates/CentOS-6.0-i386/ks.cfg +47 -0
  34. data/templates/CentOS-6.0-i386/postinstall.sh +48 -0
  35. data/templates/CentOS-6.0-x86_64-netboot/definition.rb +16 -0
  36. data/templates/CentOS-6.0-x86_64-netboot/ks.cfg +52 -0
  37. data/templates/CentOS-6.0-x86_64-netboot/postinstall.sh +30 -0
  38. data/templates/CentOS-6.0-x86_64/definition.rb +17 -0
  39. data/templates/CentOS-6.0-x86_64/ks.cfg +47 -0
  40. data/templates/CentOS-6.0-x86_64/postinstall.sh +48 -0
  41. data/templates/Debian-6.0.3-amd64-netboot/definition.rb +42 -0
  42. data/templates/Debian-6.0.3-amd64-netboot/postinstall.sh +80 -0
  43. data/templates/Debian-6.0.3-amd64-netboot/preseed.cfg +42 -0
  44. data/templates/Debian-6.0.3-i386-netboot/definition.rb +44 -0
  45. data/templates/Debian-6.0.3-i386-netboot/postinstall.sh +80 -0
  46. data/templates/Debian-6.0.3-i386-netboot/preseed.cfg +42 -0
  47. data/templates/Fedora-15-i386-netboot/definition.rb +17 -0
  48. data/templates/Fedora-15-i386-netboot/ks.cfg +82 -0
  49. data/templates/Fedora-15-i386-netboot/postinstall.sh +18 -0
  50. data/templates/Fedora-15-i386/definition.rb +17 -0
  51. data/templates/Fedora-15-i386/ks.cfg +64 -0
  52. data/templates/Fedora-15-i386/postinstall.sh +33 -0
  53. data/templates/Fedora-15-x86_64-netboot/definition.rb +29 -0
  54. data/templates/Fedora-15-x86_64-netboot/ks.cfg +64 -0
  55. data/templates/Fedora-15-x86_64-netboot/postinstall.sh +33 -0
  56. data/templates/Fedora-15-x86_64/definition.rb +17 -0
  57. data/templates/Fedora-15-x86_64/ks.cfg +64 -0
  58. data/templates/Fedora-15-x86_64/postinstall.sh +33 -0
  59. data/templates/Sysrescuecd-2.0.0-experimental/autorun0 +3 -0
  60. data/templates/Sysrescuecd-2.0.0-experimental/definition.rb +20 -0
  61. data/templates/archlinux-i386-netboot/aif.cfg +34 -0
  62. data/templates/archlinux-i386-netboot/definition.rb +29 -0
  63. data/templates/archlinux-i386-netboot/postinstall.sh +87 -0
  64. data/templates/archlinux-i386-netboot/postinstall2.sh +28 -0
  65. data/templates/archlinux-i386/aif.cfg +33 -0
  66. data/templates/archlinux-i386/definition.rb +29 -0
  67. data/templates/archlinux-i386/postinstall.sh +106 -0
  68. data/templates/archlinux-x86_64-netboot/aif.cfg +34 -0
  69. data/templates/archlinux-x86_64-netboot/definition.rb +29 -0
  70. data/templates/archlinux-x86_64-netboot/postinstall.sh +90 -0
  71. data/templates/archlinux-x86_64-netboot/postinstall2.sh +28 -0
  72. data/templates/archlinux-x86_64/aif.cfg +33 -0
  73. data/templates/archlinux-x86_64/definition.rb +29 -0
  74. data/templates/archlinux-x86_64/postinstall.sh +90 -0
  75. data/templates/archlinux-x86_64/postinstall2.sh +38 -0
  76. data/templates/freebsd-8.2-experimental/definition.rb +19 -0
  77. data/templates/freebsd-8.2-experimental/postinstall.sh +191 -0
  78. data/templates/freebsd-8.2-pcbsd-i386-netboot/definition.rb +35 -0
  79. data/templates/freebsd-8.2-pcbsd-i386-netboot/pcinstall.fbg.cfg +58 -0
  80. data/templates/freebsd-8.2-pcbsd-i386-netboot/postinstall.sh +93 -0
  81. data/templates/freebsd-8.2-pcbsd-i386/definition.rb +31 -0
  82. data/templates/freebsd-8.2-pcbsd-i386/pcinstall.fbg.cfg +57 -0
  83. data/templates/freebsd-8.2-pcbsd-i386/postinstall.sh +93 -0
  84. data/templates/gentoo-latest-i386-experimental/definition.rb +29 -0
  85. data/templates/gentoo-latest-i386-experimental/postinstall.sh +184 -0
  86. data/templates/openSUSE-11.4-DVD-i586/autoinst_de.xml +1284 -0
  87. data/templates/openSUSE-11.4-DVD-i586/autoinst_en.xml +1284 -0
  88. data/templates/openSUSE-11.4-DVD-i586/definition.rb +28 -0
  89. data/templates/openSUSE-11.4-DVD-i586/postinstall.sh +43 -0
  90. data/templates/openSUSE-11.4-DVD-x86_64/autoinst_de.xml +1459 -0
  91. data/templates/openSUSE-11.4-DVD-x86_64/autoinst_en.xml +1459 -0
  92. data/templates/openSUSE-11.4-DVD-x86_64/definition.rb +28 -0
  93. data/templates/openSUSE-11.4-DVD-x86_64/postinstall.sh +43 -0
  94. data/templates/openSUSE-11.4-NET-i586/autoinst_de.xml +1278 -0
  95. data/templates/openSUSE-11.4-NET-i586/autoinst_en.xml +1278 -0
  96. data/templates/openSUSE-11.4-NET-i586/definition.rb +28 -0
  97. data/templates/openSUSE-11.4-NET-i586/postinstall.sh +43 -0
  98. data/templates/openSUSE-11.4-NET-x86_64/autoinst_de.xml +1453 -0
  99. data/templates/openSUSE-11.4-NET-x86_64/autoinst_en.xml +1453 -0
  100. data/templates/openSUSE-11.4-NET-x86_64/definition.rb +28 -0
  101. data/templates/openSUSE-11.4-NET-x86_64/postinstall.sh +43 -0
  102. data/templates/solaris-11-express-i386/auto_install/ai.dtd +58 -0
  103. data/templates/solaris-11-express-i386/auto_install/ai_manifest.xml +241 -0
  104. data/templates/solaris-11-express-i386/auto_install/configuration.dtd +44 -0
  105. data/templates/solaris-11-express-i386/auto_install/default.xml +124 -0
  106. data/templates/solaris-11-express-i386/auto_install/default.xml.orig +124 -0
  107. data/templates/solaris-11-express-i386/auto_install/sc_profiles/static_network.xml +105 -0
  108. data/templates/solaris-11-express-i386/auto_install/software.dtd +105 -0
  109. data/templates/solaris-11-express-i386/auto_install/target.dtd +196 -0
  110. data/templates/solaris-11-express-i386/default.xml +121 -0
  111. data/templates/solaris-11-express-i386/definition.rb +65 -0
  112. data/templates/solaris-11-express-i386/postinstall.sh +98 -0
  113. data/templates/ubuntu-10.04.3-server-amd64/definition.rb +54 -0
  114. data/templates/ubuntu-10.04.3-server-amd64/postinstall.sh +90 -0
  115. data/templates/ubuntu-10.04.3-server-amd64/preseed.cfg +87 -0
  116. data/templates/ubuntu-10.04.3-server-i386/definition.rb +24 -0
  117. data/templates/ubuntu-10.04.3-server-i386/postinstall.sh +91 -0
  118. data/templates/ubuntu-10.04.3-server-i386/preseed.cfg +87 -0
  119. data/templates/ubuntu-11.10-server-amd64/definition.rb +35 -0
  120. data/templates/ubuntu-11.10-server-amd64/postinstall.sh +90 -0
  121. data/templates/ubuntu-11.10-server-amd64/preseed.cfg +87 -0
  122. data/templates/ubuntu-11.10-server-i386/definition.rb +35 -0
  123. data/templates/ubuntu-11.10-server-i386/postinstall.sh +90 -0
  124. data/templates/ubuntu-11.10-server-i386/preseed.cfg +87 -0
  125. data/validation/features/steps/ssh_steps.rb +169 -0
  126. data/validation/support/env.rb +1 -0
  127. data/validation/vagrant-private.key +27 -0
  128. data/validation/vagrant.feature +52 -0
  129. data/validation/vagrant.pub +1 -0
  130. data/vbox.gemspec +32 -0
  131. metadata +338 -0
metadata ADDED
@@ -0,0 +1,338 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vbox
3
+ version: !ruby/object:Gem::Version
4
+ hash: 23
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 4
10
+ version: 0.0.4
11
+ platform: ruby
12
+ authors:
13
+ - Georg Ryter
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-11-28 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: vagrant
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 59
29
+ segments:
30
+ - 0
31
+ - 8
32
+ - 2
33
+ version: 0.8.2
34
+ type: :runtime
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: net-ssh
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ hash: 11
45
+ segments:
46
+ - 2
47
+ - 1
48
+ - 0
49
+ version: 2.1.0
50
+ type: :runtime
51
+ version_requirements: *id002
52
+ - !ruby/object:Gem::Dependency
53
+ name: popen4
54
+ prerelease: false
55
+ requirement: &id003 !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ~>
59
+ - !ruby/object:Gem::Version
60
+ hash: 31
61
+ segments:
62
+ - 0
63
+ - 1
64
+ - 2
65
+ version: 0.1.2
66
+ type: :runtime
67
+ version_requirements: *id003
68
+ - !ruby/object:Gem::Dependency
69
+ name: thor
70
+ prerelease: false
71
+ requirement: &id004 !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ hash: 43
77
+ segments:
78
+ - 0
79
+ - 14
80
+ - 6
81
+ version: 0.14.6
82
+ type: :runtime
83
+ version_requirements: *id004
84
+ - !ruby/object:Gem::Dependency
85
+ name: highline
86
+ prerelease: false
87
+ requirement: &id005 !ruby/object:Gem::Requirement
88
+ none: false
89
+ requirements:
90
+ - - ~>
91
+ - !ruby/object:Gem::Version
92
+ hash: 13
93
+ segments:
94
+ - 1
95
+ - 6
96
+ - 1
97
+ version: 1.6.1
98
+ type: :runtime
99
+ version_requirements: *id005
100
+ - !ruby/object:Gem::Dependency
101
+ name: progressbar
102
+ prerelease: false
103
+ requirement: &id006 !ruby/object:Gem::Requirement
104
+ none: false
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ hash: 3
109
+ segments:
110
+ - 0
111
+ version: "0"
112
+ type: :runtime
113
+ version_requirements: *id006
114
+ - !ruby/object:Gem::Dependency
115
+ name: cucumber
116
+ prerelease: false
117
+ requirement: &id007 !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ~>
121
+ - !ruby/object:Gem::Version
122
+ hash: 19
123
+ segments:
124
+ - 1
125
+ - 0
126
+ - 2
127
+ version: 1.0.2
128
+ type: :runtime
129
+ version_requirements: *id007
130
+ - !ruby/object:Gem::Dependency
131
+ name: rspec
132
+ prerelease: false
133
+ requirement: &id008 !ruby/object:Gem::Requirement
134
+ none: false
135
+ requirements:
136
+ - - ~>
137
+ - !ruby/object:Gem::Version
138
+ hash: 27
139
+ segments:
140
+ - 2
141
+ - 5
142
+ - 0
143
+ version: 2.5.0
144
+ type: :runtime
145
+ version_requirements: *id008
146
+ - !ruby/object:Gem::Dependency
147
+ name: bundler
148
+ prerelease: false
149
+ requirement: &id009 !ruby/object:Gem::Requirement
150
+ none: false
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ hash: 23
155
+ segments:
156
+ - 1
157
+ - 0
158
+ - 0
159
+ version: 1.0.0
160
+ type: :development
161
+ version_requirements: *id009
162
+ description: Expand the 'vagrant box' command to support the creation of base boxes from scratch
163
+ email:
164
+ - georg.ryter@online.de
165
+ executables:
166
+ - vbox
167
+ extensions: []
168
+
169
+ extra_rdoc_files: []
170
+
171
+ files:
172
+ - .gitignore
173
+ - Gemfile
174
+ - Gemfile.lock
175
+ - README.md
176
+ - Rakefile
177
+ - bin/vbox
178
+ - lib/java/README.txt
179
+ - lib/java/dir2floppy.jar
180
+ - lib/java/dir2floppy.java
181
+ - lib/vagrant_init.rb
182
+ - lib/vbox.rb
183
+ - lib/vbox/command.rb
184
+ - lib/vbox/config.rb
185
+ - lib/vbox/export.rb
186
+ - lib/vbox/scancode.rb
187
+ - lib/vbox/session.rb
188
+ - lib/vbox/shell.rb
189
+ - lib/vbox/ssh.rb
190
+ - lib/vbox/transaction.rb
191
+ - lib/vbox/utils.rb
192
+ - lib/vbox/version.rb
193
+ - lib/vbox/web.rb
194
+ - templates/CentOS-5.7-i386-netboot/definition.rb
195
+ - templates/CentOS-5.7-i386-netboot/ks.cfg
196
+ - templates/CentOS-5.7-i386-netboot/postinstall.sh
197
+ - templates/CentOS-5.7-x86_64-netboot/definition.rb
198
+ - templates/CentOS-5.7-x86_64-netboot/ks.cfg
199
+ - templates/CentOS-5.7-x86_64-netboot/postinstall.sh
200
+ - templates/CentOS-6.0-i386-netboot/definition.rb
201
+ - templates/CentOS-6.0-i386-netboot/ks.cfg
202
+ - templates/CentOS-6.0-i386-netboot/postinstall.sh
203
+ - templates/CentOS-6.0-i386/definition.rb
204
+ - templates/CentOS-6.0-i386/ks.cfg
205
+ - templates/CentOS-6.0-i386/postinstall.sh
206
+ - templates/CentOS-6.0-x86_64-netboot/definition.rb
207
+ - templates/CentOS-6.0-x86_64-netboot/ks.cfg
208
+ - templates/CentOS-6.0-x86_64-netboot/postinstall.sh
209
+ - templates/CentOS-6.0-x86_64/definition.rb
210
+ - templates/CentOS-6.0-x86_64/ks.cfg
211
+ - templates/CentOS-6.0-x86_64/postinstall.sh
212
+ - templates/Debian-6.0.3-amd64-netboot/definition.rb
213
+ - templates/Debian-6.0.3-amd64-netboot/postinstall.sh
214
+ - templates/Debian-6.0.3-amd64-netboot/preseed.cfg
215
+ - templates/Debian-6.0.3-i386-netboot/definition.rb
216
+ - templates/Debian-6.0.3-i386-netboot/postinstall.sh
217
+ - templates/Debian-6.0.3-i386-netboot/preseed.cfg
218
+ - templates/Fedora-15-i386-netboot/definition.rb
219
+ - templates/Fedora-15-i386-netboot/ks.cfg
220
+ - templates/Fedora-15-i386-netboot/postinstall.sh
221
+ - templates/Fedora-15-i386/definition.rb
222
+ - templates/Fedora-15-i386/ks.cfg
223
+ - templates/Fedora-15-i386/postinstall.sh
224
+ - templates/Fedora-15-x86_64-netboot/definition.rb
225
+ - templates/Fedora-15-x86_64-netboot/ks.cfg
226
+ - templates/Fedora-15-x86_64-netboot/postinstall.sh
227
+ - templates/Fedora-15-x86_64/definition.rb
228
+ - templates/Fedora-15-x86_64/ks.cfg
229
+ - templates/Fedora-15-x86_64/postinstall.sh
230
+ - templates/Sysrescuecd-2.0.0-experimental/autorun0
231
+ - templates/Sysrescuecd-2.0.0-experimental/definition.rb
232
+ - templates/archlinux-i386-netboot/aif.cfg
233
+ - templates/archlinux-i386-netboot/definition.rb
234
+ - templates/archlinux-i386-netboot/postinstall.sh
235
+ - templates/archlinux-i386-netboot/postinstall2.sh
236
+ - templates/archlinux-i386/aif.cfg
237
+ - templates/archlinux-i386/definition.rb
238
+ - templates/archlinux-i386/postinstall.sh
239
+ - templates/archlinux-x86_64-netboot/aif.cfg
240
+ - templates/archlinux-x86_64-netboot/definition.rb
241
+ - templates/archlinux-x86_64-netboot/postinstall.sh
242
+ - templates/archlinux-x86_64-netboot/postinstall2.sh
243
+ - templates/archlinux-x86_64/aif.cfg
244
+ - templates/archlinux-x86_64/definition.rb
245
+ - templates/archlinux-x86_64/postinstall.sh
246
+ - templates/archlinux-x86_64/postinstall2.sh
247
+ - templates/freebsd-8.2-experimental/definition.rb
248
+ - templates/freebsd-8.2-experimental/postinstall.sh
249
+ - templates/freebsd-8.2-pcbsd-i386-netboot/definition.rb
250
+ - templates/freebsd-8.2-pcbsd-i386-netboot/pcinstall.fbg.cfg
251
+ - templates/freebsd-8.2-pcbsd-i386-netboot/postinstall.sh
252
+ - templates/freebsd-8.2-pcbsd-i386/definition.rb
253
+ - templates/freebsd-8.2-pcbsd-i386/pcinstall.fbg.cfg
254
+ - templates/freebsd-8.2-pcbsd-i386/postinstall.sh
255
+ - templates/gentoo-latest-i386-experimental/definition.rb
256
+ - templates/gentoo-latest-i386-experimental/postinstall.sh
257
+ - templates/openSUSE-11.4-DVD-i586/autoinst_de.xml
258
+ - templates/openSUSE-11.4-DVD-i586/autoinst_en.xml
259
+ - templates/openSUSE-11.4-DVD-i586/definition.rb
260
+ - templates/openSUSE-11.4-DVD-i586/postinstall.sh
261
+ - templates/openSUSE-11.4-DVD-x86_64/autoinst_de.xml
262
+ - templates/openSUSE-11.4-DVD-x86_64/autoinst_en.xml
263
+ - templates/openSUSE-11.4-DVD-x86_64/definition.rb
264
+ - templates/openSUSE-11.4-DVD-x86_64/postinstall.sh
265
+ - templates/openSUSE-11.4-NET-i586/autoinst_de.xml
266
+ - templates/openSUSE-11.4-NET-i586/autoinst_en.xml
267
+ - templates/openSUSE-11.4-NET-i586/definition.rb
268
+ - templates/openSUSE-11.4-NET-i586/postinstall.sh
269
+ - templates/openSUSE-11.4-NET-x86_64/autoinst_de.xml
270
+ - templates/openSUSE-11.4-NET-x86_64/autoinst_en.xml
271
+ - templates/openSUSE-11.4-NET-x86_64/definition.rb
272
+ - templates/openSUSE-11.4-NET-x86_64/postinstall.sh
273
+ - templates/solaris-11-express-i386/auto_install/ai.dtd
274
+ - templates/solaris-11-express-i386/auto_install/ai_manifest.xml
275
+ - templates/solaris-11-express-i386/auto_install/configuration.dtd
276
+ - templates/solaris-11-express-i386/auto_install/default.xml
277
+ - templates/solaris-11-express-i386/auto_install/default.xml.orig
278
+ - templates/solaris-11-express-i386/auto_install/sc_profiles/static_network.xml
279
+ - templates/solaris-11-express-i386/auto_install/software.dtd
280
+ - templates/solaris-11-express-i386/auto_install/target.dtd
281
+ - templates/solaris-11-express-i386/default.xml
282
+ - templates/solaris-11-express-i386/definition.rb
283
+ - templates/solaris-11-express-i386/postinstall.sh
284
+ - templates/ubuntu-10.04.3-server-amd64/definition.rb
285
+ - templates/ubuntu-10.04.3-server-amd64/postinstall.sh
286
+ - templates/ubuntu-10.04.3-server-amd64/preseed.cfg
287
+ - templates/ubuntu-10.04.3-server-i386/definition.rb
288
+ - templates/ubuntu-10.04.3-server-i386/postinstall.sh
289
+ - templates/ubuntu-10.04.3-server-i386/preseed.cfg
290
+ - templates/ubuntu-11.10-server-amd64/definition.rb
291
+ - templates/ubuntu-11.10-server-amd64/postinstall.sh
292
+ - templates/ubuntu-11.10-server-amd64/preseed.cfg
293
+ - templates/ubuntu-11.10-server-i386/definition.rb
294
+ - templates/ubuntu-11.10-server-i386/postinstall.sh
295
+ - templates/ubuntu-11.10-server-i386/preseed.cfg
296
+ - validation/features/steps/ssh_steps.rb
297
+ - validation/support/env.rb
298
+ - validation/vagrant-private.key
299
+ - validation/vagrant.feature
300
+ - validation/vagrant.pub
301
+ - vbox.gemspec
302
+ homepage: http://github.com/minihub/vbox/
303
+ licenses: []
304
+
305
+ post_install_message:
306
+ rdoc_options: []
307
+
308
+ require_paths:
309
+ - lib
310
+ required_ruby_version: !ruby/object:Gem::Requirement
311
+ none: false
312
+ requirements:
313
+ - - ">="
314
+ - !ruby/object:Gem::Version
315
+ hash: 3
316
+ segments:
317
+ - 0
318
+ version: "0"
319
+ required_rubygems_version: !ruby/object:Gem::Requirement
320
+ none: false
321
+ requirements:
322
+ - - ">="
323
+ - !ruby/object:Gem::Version
324
+ hash: 23
325
+ segments:
326
+ - 1
327
+ - 3
328
+ - 6
329
+ version: 1.3.6
330
+ requirements: []
331
+
332
+ rubyforge_project: vbox
333
+ rubygems_version: 1.8.11
334
+ signing_key:
335
+ specification_version: 3
336
+ summary: Vagrant vbox creation
337
+ test_files: []
338
+