fixed-vagrant 0.7.4.dev
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +15 -0
- data/.yardopts +1 -0
- data/CHANGELOG.md +272 -0
- data/Gemfile +21 -0
- data/LICENSE +21 -0
- data/README.md +75 -0
- data/Rakefile +22 -0
- data/bin/vagrant +22 -0
- data/config/default.rb +39 -0
- data/contrib/README.md +12 -0
- data/contrib/emacs/vagrant.el +8 -0
- data/contrib/vim/vagrantfile.vim +9 -0
- data/keys/README.md +17 -0
- data/keys/vagrant +27 -0
- data/keys/vagrant.ppk +26 -0
- data/keys/vagrant.pub +1 -0
- data/lib/vagrant.rb +42 -0
- data/lib/vagrant/action.rb +134 -0
- data/lib/vagrant/action/box.rb +11 -0
- data/lib/vagrant/action/box/destroy.rb +21 -0
- data/lib/vagrant/action/box/download.rb +72 -0
- data/lib/vagrant/action/box/package.rb +19 -0
- data/lib/vagrant/action/box/unpackage.rb +55 -0
- data/lib/vagrant/action/box/verify.rb +23 -0
- data/lib/vagrant/action/builder.rb +124 -0
- data/lib/vagrant/action/builtin.rb +104 -0
- data/lib/vagrant/action/env.rb +7 -0
- data/lib/vagrant/action/env/set.rb +18 -0
- data/lib/vagrant/action/environment.rb +50 -0
- data/lib/vagrant/action/general.rb +8 -0
- data/lib/vagrant/action/general/package.rb +109 -0
- data/lib/vagrant/action/general/validate.rb +19 -0
- data/lib/vagrant/action/vm.rb +31 -0
- data/lib/vagrant/action/vm/boot.rb +48 -0
- data/lib/vagrant/action/vm/check_box.rb +28 -0
- data/lib/vagrant/action/vm/check_guest_additions.rb +30 -0
- data/lib/vagrant/action/vm/clean_machine_folder.rb +43 -0
- data/lib/vagrant/action/vm/clear_forwarded_ports.rb +39 -0
- data/lib/vagrant/action/vm/clear_nfs_exports.rb +20 -0
- data/lib/vagrant/action/vm/clear_shared_folders.rb +32 -0
- data/lib/vagrant/action/vm/customize.rb +21 -0
- data/lib/vagrant/action/vm/destroy.rb +19 -0
- data/lib/vagrant/action/vm/destroy_unused_network_interfaces.rb +30 -0
- data/lib/vagrant/action/vm/discard_state.rb +22 -0
- data/lib/vagrant/action/vm/export.rb +52 -0
- data/lib/vagrant/action/vm/forward_ports.rb +134 -0
- data/lib/vagrant/action/vm/forward_ports_helpers.rb +28 -0
- data/lib/vagrant/action/vm/halt.rb +29 -0
- data/lib/vagrant/action/vm/host_name.rb +21 -0
- data/lib/vagrant/action/vm/import.rb +35 -0
- data/lib/vagrant/action/vm/match_mac_address.rb +21 -0
- data/lib/vagrant/action/vm/network.rb +139 -0
- data/lib/vagrant/action/vm/nfs.rb +159 -0
- data/lib/vagrant/action/vm/nfs_helpers.rb +11 -0
- data/lib/vagrant/action/vm/package.rb +23 -0
- data/lib/vagrant/action/vm/package_vagrantfile.rb +33 -0
- data/lib/vagrant/action/vm/provision.rb +41 -0
- data/lib/vagrant/action/vm/resume.rb +20 -0
- data/lib/vagrant/action/vm/share_folders.rb +70 -0
- data/lib/vagrant/action/vm/suspend.rb +20 -0
- data/lib/vagrant/action/warden.rb +79 -0
- data/lib/vagrant/box.rb +90 -0
- data/lib/vagrant/box_collection.rb +53 -0
- data/lib/vagrant/cli.rb +55 -0
- data/lib/vagrant/command.rb +25 -0
- data/lib/vagrant/command/base.rb +106 -0
- data/lib/vagrant/command/box.rb +33 -0
- data/lib/vagrant/command/destroy.rb +17 -0
- data/lib/vagrant/command/group_base.rb +107 -0
- data/lib/vagrant/command/halt.rb +18 -0
- data/lib/vagrant/command/helpers.rb +33 -0
- data/lib/vagrant/command/init.rb +14 -0
- data/lib/vagrant/command/named_base.rb +14 -0
- data/lib/vagrant/command/package.rb +41 -0
- data/lib/vagrant/command/provision.rb +17 -0
- data/lib/vagrant/command/reload.rb +17 -0
- data/lib/vagrant/command/resume.rb +17 -0
- data/lib/vagrant/command/ssh.rb +42 -0
- data/lib/vagrant/command/ssh_config.rb +26 -0
- data/lib/vagrant/command/status.rb +22 -0
- data/lib/vagrant/command/suspend.rb +17 -0
- data/lib/vagrant/command/up.rb +19 -0
- data/lib/vagrant/command/upgrade_to_060.rb +45 -0
- data/lib/vagrant/command/version.rb +13 -0
- data/lib/vagrant/config.rb +123 -0
- data/lib/vagrant/config/base.rb +85 -0
- data/lib/vagrant/config/error_recorder.rb +19 -0
- data/lib/vagrant/config/nfs.rb +10 -0
- data/lib/vagrant/config/package.rb +9 -0
- data/lib/vagrant/config/ssh.rb +33 -0
- data/lib/vagrant/config/top.rb +61 -0
- data/lib/vagrant/config/vagrant.rb +16 -0
- data/lib/vagrant/config/vm.rb +137 -0
- data/lib/vagrant/config/vm/provisioner.rb +56 -0
- data/lib/vagrant/config/vm/sub_vm.rb +17 -0
- data/lib/vagrant/data_store.rb +70 -0
- data/lib/vagrant/downloaders.rb +7 -0
- data/lib/vagrant/downloaders/base.rb +23 -0
- data/lib/vagrant/downloaders/file.rb +22 -0
- data/lib/vagrant/downloaders/http.rb +64 -0
- data/lib/vagrant/environment.rb +392 -0
- data/lib/vagrant/errors.rb +332 -0
- data/lib/vagrant/hosts.rb +8 -0
- data/lib/vagrant/hosts/arch.rb +27 -0
- data/lib/vagrant/hosts/base.rb +78 -0
- data/lib/vagrant/hosts/bsd.rb +52 -0
- data/lib/vagrant/hosts/linux.rb +47 -0
- data/lib/vagrant/plugin.rb +57 -0
- data/lib/vagrant/provisioners.rb +9 -0
- data/lib/vagrant/provisioners/base.rb +63 -0
- data/lib/vagrant/provisioners/chef.rb +130 -0
- data/lib/vagrant/provisioners/chef_server.rb +103 -0
- data/lib/vagrant/provisioners/chef_solo.rb +142 -0
- data/lib/vagrant/provisioners/puppet.rb +137 -0
- data/lib/vagrant/provisioners/puppet_server.rb +55 -0
- data/lib/vagrant/provisioners/shell.rb +52 -0
- data/lib/vagrant/ssh.rb +173 -0
- data/lib/vagrant/ssh/session.rb +125 -0
- data/lib/vagrant/systems.rb +11 -0
- data/lib/vagrant/systems/base.rb +87 -0
- data/lib/vagrant/systems/debian.rb +36 -0
- data/lib/vagrant/systems/freebsd.rb +84 -0
- data/lib/vagrant/systems/gentoo.rb +27 -0
- data/lib/vagrant/systems/linux.rb +83 -0
- data/lib/vagrant/systems/linux/config.rb +21 -0
- data/lib/vagrant/systems/linux/error.rb +9 -0
- data/lib/vagrant/systems/redhat.rb +39 -0
- data/lib/vagrant/systems/solaris.rb +62 -0
- data/lib/vagrant/systems/ubuntu.rb +17 -0
- data/lib/vagrant/test_helpers.rb +128 -0
- data/lib/vagrant/ui.rb +69 -0
- data/lib/vagrant/util.rb +13 -0
- data/lib/vagrant/util/busy.rb +59 -0
- data/lib/vagrant/util/hash_with_indifferent_access.rb +63 -0
- data/lib/vagrant/util/plain_logger.rb +25 -0
- data/lib/vagrant/util/platform.rb +65 -0
- data/lib/vagrant/util/resource_logger.rb +63 -0
- data/lib/vagrant/util/retryable.rb +25 -0
- data/lib/vagrant/util/stacked_proc_runner.rb +35 -0
- data/lib/vagrant/util/template_renderer.rb +83 -0
- data/lib/vagrant/version.rb +6 -0
- data/lib/vagrant/vm.rb +177 -0
- data/templates/chef_server_client.erb +18 -0
- data/templates/chef_solo_solo.erb +19 -0
- data/templates/commands/init/Vagrantfile.erb +82 -0
- data/templates/config/validation_failed.erb +7 -0
- data/templates/locales/en.yml +535 -0
- data/templates/network_entry_debian.erb +8 -0
- data/templates/network_entry_gentoo.erb +5 -0
- data/templates/network_entry_redhat.erb +8 -0
- data/templates/nfs/exports.erb +5 -0
- data/templates/nfs/exports_linux.erb +5 -0
- data/templates/package_Vagrantfile.erb +11 -0
- data/templates/ssh_config.erb +9 -0
- data/test/locales/en.yml +8 -0
- data/test/test_helper.rb +26 -0
- data/test/vagrant/action/box/destroy_test.rb +18 -0
- data/test/vagrant/action/box/download_test.rb +125 -0
- data/test/vagrant/action/box/package_test.rb +25 -0
- data/test/vagrant/action/box/unpackage_test.rb +84 -0
- data/test/vagrant/action/box/verify_test.rb +30 -0
- data/test/vagrant/action/builder_test.rb +203 -0
- data/test/vagrant/action/env/set_test.rb +24 -0
- data/test/vagrant/action/environment_test.rb +27 -0
- data/test/vagrant/action/general/package_test.rb +268 -0
- data/test/vagrant/action/general/validate_test.rb +31 -0
- data/test/vagrant/action/vm/boot_test.rb +66 -0
- data/test/vagrant/action/vm/check_box_test.rb +56 -0
- data/test/vagrant/action/vm/check_guest_additions_test.rb +9 -0
- data/test/vagrant/action/vm/clean_machine_folder_test.rb +84 -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 +30 -0
- data/test/vagrant/action/vm/destroy_test.rb +25 -0
- data/test/vagrant/action/vm/destroy_unused_network_interfaces_test.rb +49 -0
- data/test/vagrant/action/vm/discard_state_test.rb +45 -0
- data/test/vagrant/action/vm/export_test.rb +107 -0
- data/test/vagrant/action/vm/forward_ports_helpers_test.rb +70 -0
- data/test/vagrant/action/vm/forward_ports_test.rb +194 -0
- data/test/vagrant/action/vm/halt_test.rb +79 -0
- data/test/vagrant/action/vm/host_name_test.rb +36 -0
- data/test/vagrant/action/vm/import_test.rb +66 -0
- data/test/vagrant/action/vm/match_mac_address_test.rb +36 -0
- data/test/vagrant/action/vm/network_test.rb +286 -0
- data/test/vagrant/action/vm/nfs_helpers_test.rb +26 -0
- data/test/vagrant/action/vm/nfs_test.rb +260 -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/provision_test.rb +90 -0
- data/test/vagrant/action/vm/resume_test.rb +35 -0
- data/test/vagrant/action/vm/share_folders_test.rb +139 -0
- data/test/vagrant/action/vm/suspend_test.rb +35 -0
- data/test/vagrant/action/warden_test.rb +119 -0
- data/test/vagrant/action_test.rb +89 -0
- data/test/vagrant/box_collection_test.rb +45 -0
- data/test/vagrant/box_test.rb +74 -0
- data/test/vagrant/cli_test.rb +35 -0
- data/test/vagrant/command/base_test.rb +23 -0
- data/test/vagrant/command/group_base_test.rb +15 -0
- data/test/vagrant/command/helpers_test.rb +88 -0
- data/test/vagrant/command/package_test.rb +27 -0
- data/test/vagrant/config/base_test.rb +52 -0
- data/test/vagrant/config/error_recorder_test.rb +18 -0
- data/test/vagrant/config/ssh_test.rb +12 -0
- data/test/vagrant/config/vagrant_test.rb +35 -0
- data/test/vagrant/config/vm/provisioner_test.rb +92 -0
- data/test/vagrant/config/vm_test.rb +86 -0
- data/test/vagrant/config_test.rb +162 -0
- data/test/vagrant/data_store_test.rb +77 -0
- data/test/vagrant/downloaders/base_test.rb +28 -0
- data/test/vagrant/downloaders/file_test.rb +48 -0
- data/test/vagrant/downloaders/http_test.rb +80 -0
- data/test/vagrant/environment_test.rb +508 -0
- data/test/vagrant/errors_test.rb +42 -0
- data/test/vagrant/hosts/base_test.rb +46 -0
- data/test/vagrant/hosts/bsd_test.rb +53 -0
- data/test/vagrant/hosts/linux_test.rb +54 -0
- data/test/vagrant/plugin_test.rb +9 -0
- data/test/vagrant/provisioners/base_test.rb +63 -0
- data/test/vagrant/provisioners/chef_server_test.rb +188 -0
- data/test/vagrant/provisioners/chef_solo_test.rb +219 -0
- data/test/vagrant/provisioners/chef_test.rb +179 -0
- data/test/vagrant/provisioners/puppet_server_test.rb +68 -0
- data/test/vagrant/provisioners/puppet_test.rb +182 -0
- data/test/vagrant/provisioners/shell_test.rb +68 -0
- data/test/vagrant/ssh/session_test.rb +40 -0
- data/test/vagrant/ssh_test.rb +342 -0
- data/test/vagrant/systems/base_test.rb +18 -0
- data/test/vagrant/systems/linux_test.rb +114 -0
- data/test/vagrant/ui_test.rb +29 -0
- data/test/vagrant/util/busy_test.rb +106 -0
- data/test/vagrant/util/hash_with_indifferent_access_test.rb +39 -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 +78 -0
- data/test/vagrant/util/retryable_test.rb +50 -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/vm_test.rb +291 -0
- data/vagrant.gemspec +36 -0
- metadata +514 -0
data/vagrant.gemspec
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
$:.unshift File.expand_path("../lib", __FILE__)
|
2
|
+
require "vagrant/version"
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "fixed-vagrant"
|
6
|
+
s.version = Vagrant::VERSION
|
7
|
+
s.platform = Gem::Platform::RUBY
|
8
|
+
s.authors = ["Mitchell Hashimoto", "John Bender"]
|
9
|
+
s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]
|
10
|
+
s.homepage = "http://vagrantup.com"
|
11
|
+
s.summary = "Build and distribute virtualized development environments."
|
12
|
+
s.description = "Vagrant is a tool for building and distributing virtualized development environments."
|
13
|
+
|
14
|
+
s.required_rubygems_version = ">= 1.3.6"
|
15
|
+
s.rubyforge_project = "fixed-vagrant"
|
16
|
+
|
17
|
+
s.add_dependency "archive-tar-minitar", "= 0.5.2"
|
18
|
+
s.add_dependency "erubis", "~> 2.6.6"
|
19
|
+
s.add_dependency "json", "~> 1.5.1"
|
20
|
+
s.add_dependency "mario", "~> 0.0.6"
|
21
|
+
s.add_dependency "net-ssh", "~> 2.1.0"
|
22
|
+
s.add_dependency "net-scp", "~> 1.0.4"
|
23
|
+
s.add_dependency "i18n", "~> 0.5.0"
|
24
|
+
s.add_dependency "thor", "~> 0.14.6"
|
25
|
+
s.add_dependency "virtualbox", "~> 0.8.3"
|
26
|
+
|
27
|
+
s.add_development_dependency "rake"
|
28
|
+
s.add_development_dependency "contest", ">= 0.1.2"
|
29
|
+
s.add_development_dependency "mocha"
|
30
|
+
s.add_development_dependency "ruby-debug"
|
31
|
+
|
32
|
+
s.files = `git ls-files`.split("\n")
|
33
|
+
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
34
|
+
s.require_path = 'lib'
|
35
|
+
end
|
36
|
+
|
metadata
ADDED
@@ -0,0 +1,514 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fixed-vagrant
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 858800276
|
5
|
+
prerelease: 6
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 7
|
9
|
+
- 4
|
10
|
+
- dev
|
11
|
+
version: 0.7.4.dev
|
12
|
+
platform: ruby
|
13
|
+
authors:
|
14
|
+
- Mitchell Hashimoto
|
15
|
+
- John Bender
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2011-05-06 00:00:00 -07:00
|
21
|
+
default_executable:
|
22
|
+
dependencies:
|
23
|
+
- !ruby/object:Gem::Dependency
|
24
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - "="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 15
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 5
|
33
|
+
- 2
|
34
|
+
version: 0.5.2
|
35
|
+
type: :runtime
|
36
|
+
requirement: *id001
|
37
|
+
name: archive-tar-minitar
|
38
|
+
prerelease: false
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 27
|
46
|
+
segments:
|
47
|
+
- 2
|
48
|
+
- 6
|
49
|
+
- 6
|
50
|
+
version: 2.6.6
|
51
|
+
type: :runtime
|
52
|
+
requirement: *id002
|
53
|
+
name: erubis
|
54
|
+
prerelease: false
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 1
|
62
|
+
segments:
|
63
|
+
- 1
|
64
|
+
- 5
|
65
|
+
- 1
|
66
|
+
version: 1.5.1
|
67
|
+
type: :runtime
|
68
|
+
requirement: *id003
|
69
|
+
name: json
|
70
|
+
prerelease: false
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 19
|
78
|
+
segments:
|
79
|
+
- 0
|
80
|
+
- 0
|
81
|
+
- 6
|
82
|
+
version: 0.0.6
|
83
|
+
type: :runtime
|
84
|
+
requirement: *id004
|
85
|
+
name: mario
|
86
|
+
prerelease: false
|
87
|
+
- !ruby/object:Gem::Dependency
|
88
|
+
version_requirements: &id005 !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ~>
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
hash: 11
|
94
|
+
segments:
|
95
|
+
- 2
|
96
|
+
- 1
|
97
|
+
- 0
|
98
|
+
version: 2.1.0
|
99
|
+
type: :runtime
|
100
|
+
requirement: *id005
|
101
|
+
name: net-ssh
|
102
|
+
prerelease: false
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
version_requirements: &id006 !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ~>
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
hash: 31
|
110
|
+
segments:
|
111
|
+
- 1
|
112
|
+
- 0
|
113
|
+
- 4
|
114
|
+
version: 1.0.4
|
115
|
+
type: :runtime
|
116
|
+
requirement: *id006
|
117
|
+
name: net-scp
|
118
|
+
prerelease: false
|
119
|
+
- !ruby/object:Gem::Dependency
|
120
|
+
version_requirements: &id007 !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ~>
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
hash: 11
|
126
|
+
segments:
|
127
|
+
- 0
|
128
|
+
- 5
|
129
|
+
- 0
|
130
|
+
version: 0.5.0
|
131
|
+
type: :runtime
|
132
|
+
requirement: *id007
|
133
|
+
name: i18n
|
134
|
+
prerelease: false
|
135
|
+
- !ruby/object:Gem::Dependency
|
136
|
+
version_requirements: &id008 !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ~>
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
hash: 43
|
142
|
+
segments:
|
143
|
+
- 0
|
144
|
+
- 14
|
145
|
+
- 6
|
146
|
+
version: 0.14.6
|
147
|
+
type: :runtime
|
148
|
+
requirement: *id008
|
149
|
+
name: thor
|
150
|
+
prerelease: false
|
151
|
+
- !ruby/object:Gem::Dependency
|
152
|
+
version_requirements: &id009 !ruby/object:Gem::Requirement
|
153
|
+
none: false
|
154
|
+
requirements:
|
155
|
+
- - ~>
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
hash: 57
|
158
|
+
segments:
|
159
|
+
- 0
|
160
|
+
- 8
|
161
|
+
- 3
|
162
|
+
version: 0.8.3
|
163
|
+
type: :runtime
|
164
|
+
requirement: *id009
|
165
|
+
name: virtualbox
|
166
|
+
prerelease: false
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
version_requirements: &id010 !ruby/object:Gem::Requirement
|
169
|
+
none: false
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
hash: 3
|
174
|
+
segments:
|
175
|
+
- 0
|
176
|
+
version: "0"
|
177
|
+
type: :development
|
178
|
+
requirement: *id010
|
179
|
+
name: rake
|
180
|
+
prerelease: false
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
version_requirements: &id011 !ruby/object:Gem::Requirement
|
183
|
+
none: false
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
hash: 31
|
188
|
+
segments:
|
189
|
+
- 0
|
190
|
+
- 1
|
191
|
+
- 2
|
192
|
+
version: 0.1.2
|
193
|
+
type: :development
|
194
|
+
requirement: *id011
|
195
|
+
name: contest
|
196
|
+
prerelease: false
|
197
|
+
- !ruby/object:Gem::Dependency
|
198
|
+
version_requirements: &id012 !ruby/object:Gem::Requirement
|
199
|
+
none: false
|
200
|
+
requirements:
|
201
|
+
- - ">="
|
202
|
+
- !ruby/object:Gem::Version
|
203
|
+
hash: 3
|
204
|
+
segments:
|
205
|
+
- 0
|
206
|
+
version: "0"
|
207
|
+
type: :development
|
208
|
+
requirement: *id012
|
209
|
+
name: mocha
|
210
|
+
prerelease: false
|
211
|
+
- !ruby/object:Gem::Dependency
|
212
|
+
version_requirements: &id013 !ruby/object:Gem::Requirement
|
213
|
+
none: false
|
214
|
+
requirements:
|
215
|
+
- - ">="
|
216
|
+
- !ruby/object:Gem::Version
|
217
|
+
hash: 3
|
218
|
+
segments:
|
219
|
+
- 0
|
220
|
+
version: "0"
|
221
|
+
type: :development
|
222
|
+
requirement: *id013
|
223
|
+
name: ruby-debug
|
224
|
+
prerelease: false
|
225
|
+
description: Vagrant is a tool for building and distributing virtualized development environments.
|
226
|
+
email:
|
227
|
+
- mitchell.hashimoto@gmail.com
|
228
|
+
- john.m.bender@gmail.com
|
229
|
+
executables:
|
230
|
+
- vagrant
|
231
|
+
extensions: []
|
232
|
+
|
233
|
+
extra_rdoc_files: []
|
234
|
+
|
235
|
+
files:
|
236
|
+
- .gitignore
|
237
|
+
- .yardopts
|
238
|
+
- CHANGELOG.md
|
239
|
+
- Gemfile
|
240
|
+
- LICENSE
|
241
|
+
- README.md
|
242
|
+
- Rakefile
|
243
|
+
- bin/vagrant
|
244
|
+
- config/default.rb
|
245
|
+
- contrib/README.md
|
246
|
+
- contrib/emacs/vagrant.el
|
247
|
+
- contrib/vim/vagrantfile.vim
|
248
|
+
- keys/README.md
|
249
|
+
- keys/vagrant
|
250
|
+
- keys/vagrant.ppk
|
251
|
+
- keys/vagrant.pub
|
252
|
+
- lib/vagrant.rb
|
253
|
+
- lib/vagrant/action.rb
|
254
|
+
- lib/vagrant/action/box.rb
|
255
|
+
- lib/vagrant/action/box/destroy.rb
|
256
|
+
- lib/vagrant/action/box/download.rb
|
257
|
+
- lib/vagrant/action/box/package.rb
|
258
|
+
- lib/vagrant/action/box/unpackage.rb
|
259
|
+
- lib/vagrant/action/box/verify.rb
|
260
|
+
- lib/vagrant/action/builder.rb
|
261
|
+
- lib/vagrant/action/builtin.rb
|
262
|
+
- lib/vagrant/action/env.rb
|
263
|
+
- lib/vagrant/action/env/set.rb
|
264
|
+
- lib/vagrant/action/environment.rb
|
265
|
+
- lib/vagrant/action/general.rb
|
266
|
+
- lib/vagrant/action/general/package.rb
|
267
|
+
- lib/vagrant/action/general/validate.rb
|
268
|
+
- lib/vagrant/action/vm.rb
|
269
|
+
- lib/vagrant/action/vm/boot.rb
|
270
|
+
- lib/vagrant/action/vm/check_box.rb
|
271
|
+
- lib/vagrant/action/vm/check_guest_additions.rb
|
272
|
+
- lib/vagrant/action/vm/clean_machine_folder.rb
|
273
|
+
- lib/vagrant/action/vm/clear_forwarded_ports.rb
|
274
|
+
- lib/vagrant/action/vm/clear_nfs_exports.rb
|
275
|
+
- lib/vagrant/action/vm/clear_shared_folders.rb
|
276
|
+
- lib/vagrant/action/vm/customize.rb
|
277
|
+
- lib/vagrant/action/vm/destroy.rb
|
278
|
+
- lib/vagrant/action/vm/destroy_unused_network_interfaces.rb
|
279
|
+
- lib/vagrant/action/vm/discard_state.rb
|
280
|
+
- lib/vagrant/action/vm/export.rb
|
281
|
+
- lib/vagrant/action/vm/forward_ports.rb
|
282
|
+
- lib/vagrant/action/vm/forward_ports_helpers.rb
|
283
|
+
- lib/vagrant/action/vm/halt.rb
|
284
|
+
- lib/vagrant/action/vm/host_name.rb
|
285
|
+
- lib/vagrant/action/vm/import.rb
|
286
|
+
- lib/vagrant/action/vm/match_mac_address.rb
|
287
|
+
- lib/vagrant/action/vm/network.rb
|
288
|
+
- lib/vagrant/action/vm/nfs.rb
|
289
|
+
- lib/vagrant/action/vm/nfs_helpers.rb
|
290
|
+
- lib/vagrant/action/vm/package.rb
|
291
|
+
- lib/vagrant/action/vm/package_vagrantfile.rb
|
292
|
+
- lib/vagrant/action/vm/provision.rb
|
293
|
+
- lib/vagrant/action/vm/resume.rb
|
294
|
+
- lib/vagrant/action/vm/share_folders.rb
|
295
|
+
- lib/vagrant/action/vm/suspend.rb
|
296
|
+
- lib/vagrant/action/warden.rb
|
297
|
+
- lib/vagrant/box.rb
|
298
|
+
- lib/vagrant/box_collection.rb
|
299
|
+
- lib/vagrant/cli.rb
|
300
|
+
- lib/vagrant/command.rb
|
301
|
+
- lib/vagrant/command/base.rb
|
302
|
+
- lib/vagrant/command/box.rb
|
303
|
+
- lib/vagrant/command/destroy.rb
|
304
|
+
- lib/vagrant/command/group_base.rb
|
305
|
+
- lib/vagrant/command/halt.rb
|
306
|
+
- lib/vagrant/command/helpers.rb
|
307
|
+
- lib/vagrant/command/init.rb
|
308
|
+
- lib/vagrant/command/named_base.rb
|
309
|
+
- lib/vagrant/command/package.rb
|
310
|
+
- lib/vagrant/command/provision.rb
|
311
|
+
- lib/vagrant/command/reload.rb
|
312
|
+
- lib/vagrant/command/resume.rb
|
313
|
+
- lib/vagrant/command/ssh.rb
|
314
|
+
- lib/vagrant/command/ssh_config.rb
|
315
|
+
- lib/vagrant/command/status.rb
|
316
|
+
- lib/vagrant/command/suspend.rb
|
317
|
+
- lib/vagrant/command/up.rb
|
318
|
+
- lib/vagrant/command/upgrade_to_060.rb
|
319
|
+
- lib/vagrant/command/version.rb
|
320
|
+
- lib/vagrant/config.rb
|
321
|
+
- lib/vagrant/config/base.rb
|
322
|
+
- lib/vagrant/config/error_recorder.rb
|
323
|
+
- lib/vagrant/config/nfs.rb
|
324
|
+
- lib/vagrant/config/package.rb
|
325
|
+
- lib/vagrant/config/ssh.rb
|
326
|
+
- lib/vagrant/config/top.rb
|
327
|
+
- lib/vagrant/config/vagrant.rb
|
328
|
+
- lib/vagrant/config/vm.rb
|
329
|
+
- lib/vagrant/config/vm/provisioner.rb
|
330
|
+
- lib/vagrant/config/vm/sub_vm.rb
|
331
|
+
- lib/vagrant/data_store.rb
|
332
|
+
- lib/vagrant/downloaders.rb
|
333
|
+
- lib/vagrant/downloaders/base.rb
|
334
|
+
- lib/vagrant/downloaders/file.rb
|
335
|
+
- lib/vagrant/downloaders/http.rb
|
336
|
+
- lib/vagrant/environment.rb
|
337
|
+
- lib/vagrant/errors.rb
|
338
|
+
- lib/vagrant/hosts.rb
|
339
|
+
- lib/vagrant/hosts/arch.rb
|
340
|
+
- lib/vagrant/hosts/base.rb
|
341
|
+
- lib/vagrant/hosts/bsd.rb
|
342
|
+
- lib/vagrant/hosts/linux.rb
|
343
|
+
- lib/vagrant/plugin.rb
|
344
|
+
- lib/vagrant/provisioners.rb
|
345
|
+
- lib/vagrant/provisioners/base.rb
|
346
|
+
- lib/vagrant/provisioners/chef.rb
|
347
|
+
- lib/vagrant/provisioners/chef_server.rb
|
348
|
+
- lib/vagrant/provisioners/chef_solo.rb
|
349
|
+
- lib/vagrant/provisioners/puppet.rb
|
350
|
+
- lib/vagrant/provisioners/puppet_server.rb
|
351
|
+
- lib/vagrant/provisioners/shell.rb
|
352
|
+
- lib/vagrant/ssh.rb
|
353
|
+
- lib/vagrant/ssh/session.rb
|
354
|
+
- lib/vagrant/systems.rb
|
355
|
+
- lib/vagrant/systems/base.rb
|
356
|
+
- lib/vagrant/systems/debian.rb
|
357
|
+
- lib/vagrant/systems/freebsd.rb
|
358
|
+
- lib/vagrant/systems/gentoo.rb
|
359
|
+
- lib/vagrant/systems/linux.rb
|
360
|
+
- lib/vagrant/systems/linux/config.rb
|
361
|
+
- lib/vagrant/systems/linux/error.rb
|
362
|
+
- lib/vagrant/systems/redhat.rb
|
363
|
+
- lib/vagrant/systems/solaris.rb
|
364
|
+
- lib/vagrant/systems/ubuntu.rb
|
365
|
+
- lib/vagrant/test_helpers.rb
|
366
|
+
- lib/vagrant/ui.rb
|
367
|
+
- lib/vagrant/util.rb
|
368
|
+
- lib/vagrant/util/busy.rb
|
369
|
+
- lib/vagrant/util/hash_with_indifferent_access.rb
|
370
|
+
- lib/vagrant/util/plain_logger.rb
|
371
|
+
- lib/vagrant/util/platform.rb
|
372
|
+
- lib/vagrant/util/resource_logger.rb
|
373
|
+
- lib/vagrant/util/retryable.rb
|
374
|
+
- lib/vagrant/util/stacked_proc_runner.rb
|
375
|
+
- lib/vagrant/util/template_renderer.rb
|
376
|
+
- lib/vagrant/version.rb
|
377
|
+
- lib/vagrant/vm.rb
|
378
|
+
- templates/chef_server_client.erb
|
379
|
+
- templates/chef_solo_solo.erb
|
380
|
+
- templates/commands/init/Vagrantfile.erb
|
381
|
+
- templates/config/validation_failed.erb
|
382
|
+
- templates/locales/en.yml
|
383
|
+
- templates/network_entry_debian.erb
|
384
|
+
- templates/network_entry_gentoo.erb
|
385
|
+
- templates/network_entry_redhat.erb
|
386
|
+
- templates/nfs/exports.erb
|
387
|
+
- templates/nfs/exports_linux.erb
|
388
|
+
- templates/package_Vagrantfile.erb
|
389
|
+
- templates/ssh_config.erb
|
390
|
+
- test/locales/en.yml
|
391
|
+
- test/test_helper.rb
|
392
|
+
- test/vagrant/action/box/destroy_test.rb
|
393
|
+
- test/vagrant/action/box/download_test.rb
|
394
|
+
- test/vagrant/action/box/package_test.rb
|
395
|
+
- test/vagrant/action/box/unpackage_test.rb
|
396
|
+
- test/vagrant/action/box/verify_test.rb
|
397
|
+
- test/vagrant/action/builder_test.rb
|
398
|
+
- test/vagrant/action/env/set_test.rb
|
399
|
+
- test/vagrant/action/environment_test.rb
|
400
|
+
- test/vagrant/action/general/package_test.rb
|
401
|
+
- test/vagrant/action/general/validate_test.rb
|
402
|
+
- test/vagrant/action/vm/boot_test.rb
|
403
|
+
- test/vagrant/action/vm/check_box_test.rb
|
404
|
+
- test/vagrant/action/vm/check_guest_additions_test.rb
|
405
|
+
- test/vagrant/action/vm/clean_machine_folder_test.rb
|
406
|
+
- test/vagrant/action/vm/clear_forwarded_ports_test.rb
|
407
|
+
- test/vagrant/action/vm/clear_nfs_exports_test.rb
|
408
|
+
- test/vagrant/action/vm/clear_shared_folders_test.rb
|
409
|
+
- test/vagrant/action/vm/customize_test.rb
|
410
|
+
- test/vagrant/action/vm/destroy_test.rb
|
411
|
+
- test/vagrant/action/vm/destroy_unused_network_interfaces_test.rb
|
412
|
+
- test/vagrant/action/vm/discard_state_test.rb
|
413
|
+
- test/vagrant/action/vm/export_test.rb
|
414
|
+
- test/vagrant/action/vm/forward_ports_helpers_test.rb
|
415
|
+
- test/vagrant/action/vm/forward_ports_test.rb
|
416
|
+
- test/vagrant/action/vm/halt_test.rb
|
417
|
+
- test/vagrant/action/vm/host_name_test.rb
|
418
|
+
- test/vagrant/action/vm/import_test.rb
|
419
|
+
- test/vagrant/action/vm/match_mac_address_test.rb
|
420
|
+
- test/vagrant/action/vm/network_test.rb
|
421
|
+
- test/vagrant/action/vm/nfs_helpers_test.rb
|
422
|
+
- test/vagrant/action/vm/nfs_test.rb
|
423
|
+
- test/vagrant/action/vm/package_test.rb
|
424
|
+
- test/vagrant/action/vm/package_vagrantfile_test.rb
|
425
|
+
- test/vagrant/action/vm/provision_test.rb
|
426
|
+
- test/vagrant/action/vm/resume_test.rb
|
427
|
+
- test/vagrant/action/vm/share_folders_test.rb
|
428
|
+
- test/vagrant/action/vm/suspend_test.rb
|
429
|
+
- test/vagrant/action/warden_test.rb
|
430
|
+
- test/vagrant/action_test.rb
|
431
|
+
- test/vagrant/box_collection_test.rb
|
432
|
+
- test/vagrant/box_test.rb
|
433
|
+
- test/vagrant/cli_test.rb
|
434
|
+
- test/vagrant/command/base_test.rb
|
435
|
+
- test/vagrant/command/group_base_test.rb
|
436
|
+
- test/vagrant/command/helpers_test.rb
|
437
|
+
- test/vagrant/command/package_test.rb
|
438
|
+
- test/vagrant/config/base_test.rb
|
439
|
+
- test/vagrant/config/error_recorder_test.rb
|
440
|
+
- test/vagrant/config/ssh_test.rb
|
441
|
+
- test/vagrant/config/vagrant_test.rb
|
442
|
+
- test/vagrant/config/vm/provisioner_test.rb
|
443
|
+
- test/vagrant/config/vm_test.rb
|
444
|
+
- test/vagrant/config_test.rb
|
445
|
+
- test/vagrant/data_store_test.rb
|
446
|
+
- test/vagrant/downloaders/base_test.rb
|
447
|
+
- test/vagrant/downloaders/file_test.rb
|
448
|
+
- test/vagrant/downloaders/http_test.rb
|
449
|
+
- test/vagrant/environment_test.rb
|
450
|
+
- test/vagrant/errors_test.rb
|
451
|
+
- test/vagrant/hosts/base_test.rb
|
452
|
+
- test/vagrant/hosts/bsd_test.rb
|
453
|
+
- test/vagrant/hosts/linux_test.rb
|
454
|
+
- test/vagrant/plugin_test.rb
|
455
|
+
- test/vagrant/provisioners/base_test.rb
|
456
|
+
- test/vagrant/provisioners/chef_server_test.rb
|
457
|
+
- test/vagrant/provisioners/chef_solo_test.rb
|
458
|
+
- test/vagrant/provisioners/chef_test.rb
|
459
|
+
- test/vagrant/provisioners/puppet_server_test.rb
|
460
|
+
- test/vagrant/provisioners/puppet_test.rb
|
461
|
+
- test/vagrant/provisioners/shell_test.rb
|
462
|
+
- test/vagrant/ssh/session_test.rb
|
463
|
+
- test/vagrant/ssh_test.rb
|
464
|
+
- test/vagrant/systems/base_test.rb
|
465
|
+
- test/vagrant/systems/linux_test.rb
|
466
|
+
- test/vagrant/ui_test.rb
|
467
|
+
- test/vagrant/util/busy_test.rb
|
468
|
+
- test/vagrant/util/hash_with_indifferent_access_test.rb
|
469
|
+
- test/vagrant/util/plain_logger_test.rb
|
470
|
+
- test/vagrant/util/platform_test.rb
|
471
|
+
- test/vagrant/util/resource_logger_test.rb
|
472
|
+
- test/vagrant/util/retryable_test.rb
|
473
|
+
- test/vagrant/util/stacked_proc_runner_test.rb
|
474
|
+
- test/vagrant/util/template_renderer_test.rb
|
475
|
+
- test/vagrant/vm_test.rb
|
476
|
+
- vagrant.gemspec
|
477
|
+
has_rdoc: true
|
478
|
+
homepage: http://vagrantup.com
|
479
|
+
licenses: []
|
480
|
+
|
481
|
+
post_install_message:
|
482
|
+
rdoc_options: []
|
483
|
+
|
484
|
+
require_paths:
|
485
|
+
- lib
|
486
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
487
|
+
none: false
|
488
|
+
requirements:
|
489
|
+
- - ">="
|
490
|
+
- !ruby/object:Gem::Version
|
491
|
+
hash: 3
|
492
|
+
segments:
|
493
|
+
- 0
|
494
|
+
version: "0"
|
495
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
496
|
+
none: false
|
497
|
+
requirements:
|
498
|
+
- - ">="
|
499
|
+
- !ruby/object:Gem::Version
|
500
|
+
hash: 23
|
501
|
+
segments:
|
502
|
+
- 1
|
503
|
+
- 3
|
504
|
+
- 6
|
505
|
+
version: 1.3.6
|
506
|
+
requirements: []
|
507
|
+
|
508
|
+
rubyforge_project: fixed-vagrant
|
509
|
+
rubygems_version: 1.4.2
|
510
|
+
signing_key:
|
511
|
+
specification_version: 3
|
512
|
+
summary: Build and distribute virtualized development environments.
|
513
|
+
test_files: []
|
514
|
+
|