vagrant 0.1.0 → 0.1.1

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.
Files changed (5) hide show
  1. data/LICENSE +21 -0
  2. data/VERSION +1 -1
  3. data/bin/vagrant +1 -1
  4. data/vagrant.gemspec +179 -0
  5. metadata +5 -2
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2010 Mitchell Hashimoto and John Bender
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -9,7 +9,7 @@ end
9
9
  require 'git-style-binary/command'
10
10
 
11
11
  GitStyleBinary.primary do
12
- version "Somewhere between 0 and 0.1"
12
+ version "0.1.0"
13
13
 
14
14
  run { educate }
15
15
  end
@@ -0,0 +1,179 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{vagrant}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Mitchell Hashimoto", "John Bender"]
12
+ s.date = %q{2010-03-07}
13
+ s.description = %q{Vagrant is a tool for building and distributing virtualized development environments.}
14
+ s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]
15
+ s.executables = ["vagrant", "vagrant-box", "vagrant-down", "vagrant-halt", "vagrant-init", "vagrant-package", "vagrant-reload", "vagrant-resume", "vagrant-ssh", "vagrant-suspend", "vagrant-up"]
16
+ s.extra_rdoc_files = [
17
+ "LICENSE",
18
+ "README.md"
19
+ ]
20
+ s.files = [
21
+ ".gitignore",
22
+ "Gemfile",
23
+ "LICENSE",
24
+ "README.md",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "bin/.gitignore",
28
+ "bin/vagrant",
29
+ "bin/vagrant-box",
30
+ "bin/vagrant-down",
31
+ "bin/vagrant-halt",
32
+ "bin/vagrant-init",
33
+ "bin/vagrant-package",
34
+ "bin/vagrant-reload",
35
+ "bin/vagrant-resume",
36
+ "bin/vagrant-ssh",
37
+ "bin/vagrant-suspend",
38
+ "bin/vagrant-up",
39
+ "config/default.rb",
40
+ "lib/vagrant.rb",
41
+ "lib/vagrant/actions/base.rb",
42
+ "lib/vagrant/actions/box/add.rb",
43
+ "lib/vagrant/actions/box/destroy.rb",
44
+ "lib/vagrant/actions/box/download.rb",
45
+ "lib/vagrant/actions/box/unpackage.rb",
46
+ "lib/vagrant/actions/runner.rb",
47
+ "lib/vagrant/actions/vm/destroy.rb",
48
+ "lib/vagrant/actions/vm/down.rb",
49
+ "lib/vagrant/actions/vm/export.rb",
50
+ "lib/vagrant/actions/vm/forward_ports.rb",
51
+ "lib/vagrant/actions/vm/halt.rb",
52
+ "lib/vagrant/actions/vm/import.rb",
53
+ "lib/vagrant/actions/vm/move_hard_drive.rb",
54
+ "lib/vagrant/actions/vm/package.rb",
55
+ "lib/vagrant/actions/vm/provision.rb",
56
+ "lib/vagrant/actions/vm/reload.rb",
57
+ "lib/vagrant/actions/vm/resume.rb",
58
+ "lib/vagrant/actions/vm/shared_folders.rb",
59
+ "lib/vagrant/actions/vm/start.rb",
60
+ "lib/vagrant/actions/vm/suspend.rb",
61
+ "lib/vagrant/actions/vm/up.rb",
62
+ "lib/vagrant/box.rb",
63
+ "lib/vagrant/busy.rb",
64
+ "lib/vagrant/commands.rb",
65
+ "lib/vagrant/config.rb",
66
+ "lib/vagrant/downloaders/base.rb",
67
+ "lib/vagrant/downloaders/file.rb",
68
+ "lib/vagrant/downloaders/http.rb",
69
+ "lib/vagrant/env.rb",
70
+ "lib/vagrant/ssh.rb",
71
+ "lib/vagrant/util.rb",
72
+ "lib/vagrant/vm.rb",
73
+ "script/vagrant-ssh-expect.sh",
74
+ "templates/Vagrantfile",
75
+ "test/test_helper.rb",
76
+ "test/vagrant/actions/base_test.rb",
77
+ "test/vagrant/actions/box/add_test.rb",
78
+ "test/vagrant/actions/box/destroy_test.rb",
79
+ "test/vagrant/actions/box/download_test.rb",
80
+ "test/vagrant/actions/box/unpackage_test.rb",
81
+ "test/vagrant/actions/runner_test.rb",
82
+ "test/vagrant/actions/vm/destroy_test.rb",
83
+ "test/vagrant/actions/vm/down_test.rb",
84
+ "test/vagrant/actions/vm/export_test.rb",
85
+ "test/vagrant/actions/vm/forward_ports_test.rb",
86
+ "test/vagrant/actions/vm/halt_test.rb",
87
+ "test/vagrant/actions/vm/import_test.rb",
88
+ "test/vagrant/actions/vm/move_hard_drive_test.rb",
89
+ "test/vagrant/actions/vm/package_test.rb",
90
+ "test/vagrant/actions/vm/provision_test.rb",
91
+ "test/vagrant/actions/vm/reload_test.rb",
92
+ "test/vagrant/actions/vm/resume_test.rb",
93
+ "test/vagrant/actions/vm/shared_folders_test.rb",
94
+ "test/vagrant/actions/vm/start_test.rb",
95
+ "test/vagrant/actions/vm/suspend_test.rb",
96
+ "test/vagrant/actions/vm/up_test.rb",
97
+ "test/vagrant/box_test.rb",
98
+ "test/vagrant/busy_test.rb",
99
+ "test/vagrant/commands_test.rb",
100
+ "test/vagrant/config_test.rb",
101
+ "test/vagrant/downloaders/base_test.rb",
102
+ "test/vagrant/downloaders/file_test.rb",
103
+ "test/vagrant/downloaders/http_test.rb",
104
+ "test/vagrant/env_test.rb",
105
+ "test/vagrant/ssh_test.rb",
106
+ "test/vagrant/util_test.rb",
107
+ "test/vagrant/vm_test.rb",
108
+ "vagrant.gemspec"
109
+ ]
110
+ s.homepage = %q{http://github.com/mitchellh/vagrant}
111
+ s.rdoc_options = ["--charset=UTF-8"]
112
+ s.require_paths = ["lib"]
113
+ s.rubygems_version = %q{1.3.6}
114
+ s.summary = %q{Vagrant is a tool for building and distributing virtualized development environments.}
115
+ s.test_files = [
116
+ "test/test_helper.rb",
117
+ "test/vagrant/actions/base_test.rb",
118
+ "test/vagrant/actions/box/add_test.rb",
119
+ "test/vagrant/actions/box/destroy_test.rb",
120
+ "test/vagrant/actions/box/download_test.rb",
121
+ "test/vagrant/actions/box/unpackage_test.rb",
122
+ "test/vagrant/actions/runner_test.rb",
123
+ "test/vagrant/actions/vm/destroy_test.rb",
124
+ "test/vagrant/actions/vm/down_test.rb",
125
+ "test/vagrant/actions/vm/export_test.rb",
126
+ "test/vagrant/actions/vm/forward_ports_test.rb",
127
+ "test/vagrant/actions/vm/halt_test.rb",
128
+ "test/vagrant/actions/vm/import_test.rb",
129
+ "test/vagrant/actions/vm/move_hard_drive_test.rb",
130
+ "test/vagrant/actions/vm/package_test.rb",
131
+ "test/vagrant/actions/vm/provision_test.rb",
132
+ "test/vagrant/actions/vm/reload_test.rb",
133
+ "test/vagrant/actions/vm/resume_test.rb",
134
+ "test/vagrant/actions/vm/shared_folders_test.rb",
135
+ "test/vagrant/actions/vm/start_test.rb",
136
+ "test/vagrant/actions/vm/suspend_test.rb",
137
+ "test/vagrant/actions/vm/up_test.rb",
138
+ "test/vagrant/box_test.rb",
139
+ "test/vagrant/busy_test.rb",
140
+ "test/vagrant/commands_test.rb",
141
+ "test/vagrant/config_test.rb",
142
+ "test/vagrant/downloaders/base_test.rb",
143
+ "test/vagrant/downloaders/file_test.rb",
144
+ "test/vagrant/downloaders/http_test.rb",
145
+ "test/vagrant/env_test.rb",
146
+ "test/vagrant/ssh_test.rb",
147
+ "test/vagrant/util_test.rb",
148
+ "test/vagrant/vm_test.rb"
149
+ ]
150
+
151
+ if s.respond_to? :specification_version then
152
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
153
+ s.specification_version = 3
154
+
155
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
156
+ s.add_runtime_dependency(%q<virtualbox>, [">= 0.5.0"])
157
+ s.add_runtime_dependency(%q<net-ssh>, [">= 2.0.19"])
158
+ s.add_runtime_dependency(%q<net-scp>, [">= 1.0.2"])
159
+ s.add_runtime_dependency(%q<json>, [">= 1.2.0"])
160
+ s.add_runtime_dependency(%q<git-style-binaries>, [">= 0.1.10"])
161
+ s.add_runtime_dependency(%q<tarruby>, [">= 0.1.5"])
162
+ else
163
+ s.add_dependency(%q<virtualbox>, [">= 0.5.0"])
164
+ s.add_dependency(%q<net-ssh>, [">= 2.0.19"])
165
+ s.add_dependency(%q<net-scp>, [">= 1.0.2"])
166
+ s.add_dependency(%q<json>, [">= 1.2.0"])
167
+ s.add_dependency(%q<git-style-binaries>, [">= 0.1.10"])
168
+ s.add_dependency(%q<tarruby>, [">= 0.1.5"])
169
+ end
170
+ else
171
+ s.add_dependency(%q<virtualbox>, [">= 0.5.0"])
172
+ s.add_dependency(%q<net-ssh>, [">= 2.0.19"])
173
+ s.add_dependency(%q<net-scp>, [">= 1.0.2"])
174
+ s.add_dependency(%q<json>, [">= 1.2.0"])
175
+ s.add_dependency(%q<git-style-binaries>, [">= 0.1.10"])
176
+ s.add_dependency(%q<tarruby>, [">= 0.1.5"])
177
+ end
178
+ end
179
+
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Mitchell Hashimoto
@@ -121,10 +121,12 @@ executables:
121
121
  extensions: []
122
122
 
123
123
  extra_rdoc_files:
124
+ - LICENSE
124
125
  - README.md
125
126
  files:
126
127
  - .gitignore
127
128
  - Gemfile
129
+ - LICENSE
128
130
  - README.md
129
131
  - Rakefile
130
132
  - VERSION
@@ -209,6 +211,7 @@ files:
209
211
  - test/vagrant/ssh_test.rb
210
212
  - test/vagrant/util_test.rb
211
213
  - test/vagrant/vm_test.rb
214
+ - vagrant.gemspec
212
215
  has_rdoc: true
213
216
  homepage: http://github.com/mitchellh/vagrant
214
217
  licenses: []