vagrant-dsl 0.0.6 → 0.1.0
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/README.md +1 -1
- data/lib/vagrant/dsl/version.rb +1 -1
- data/vagrant-dsl.gemspec +2 -2
- metadata +6 -5
data/README.md
CHANGED
|
@@ -105,7 +105,7 @@ pre-generated content, it also accepts a string.
|
|
|
105
105
|
|
|
106
106
|
`vagrant_prison` will return a `Vagrant::Prison` object, which you can manipulate
|
|
107
107
|
further. See the docs for
|
|
108
|
-
[Vagrant::Prison](http://rubydoc.info/gems/vagrant-prison
|
|
108
|
+
[Vagrant::Prison](http://rubydoc.info/gems/vagrant-prison) for
|
|
109
109
|
more information.
|
|
110
110
|
|
|
111
111
|
If you wish to use Vagrant::DSL in your own classes/modules, just include it.
|
data/lib/vagrant/dsl/version.rb
CHANGED
data/vagrant-dsl.gemspec
CHANGED
|
@@ -10,12 +10,12 @@ Gem::Specification.new do |gem|
|
|
|
10
10
|
gem.email = ["erik+github@hollensbe.org"]
|
|
11
11
|
gem.description = %q{Tools for programmatically driving vagrant in rake and in ruby scripts}
|
|
12
12
|
gem.summary = %q{Tools for programmatically driving vagrant in rake and in ruby scripts}
|
|
13
|
-
gem.homepage = ""
|
|
13
|
+
gem.homepage = "https://github.com/chef-workflow/vagrant-dsl"
|
|
14
14
|
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
gem.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
gem.add_dependency 'vagrant-prison', "~> 0.0
|
|
20
|
+
gem.add_dependency 'vagrant-prison', "~> 0.1.0"
|
|
21
21
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-dsl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-12-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: vagrant-prison
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - ~>
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.0
|
|
21
|
+
version: 0.1.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ~>
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.0
|
|
29
|
+
version: 0.1.0
|
|
30
30
|
description: Tools for programmatically driving vagrant in rake and in ruby scripts
|
|
31
31
|
email:
|
|
32
32
|
- erik+github@hollensbe.org
|
|
@@ -42,7 +42,7 @@ files:
|
|
|
42
42
|
- lib/vagrant/dsl.rb
|
|
43
43
|
- lib/vagrant/dsl/version.rb
|
|
44
44
|
- vagrant-dsl.gemspec
|
|
45
|
-
homepage:
|
|
45
|
+
homepage: https://github.com/chef-workflow/vagrant-dsl
|
|
46
46
|
licenses: []
|
|
47
47
|
post_install_message:
|
|
48
48
|
rdoc_options: []
|
|
@@ -67,3 +67,4 @@ signing_key:
|
|
|
67
67
|
specification_version: 3
|
|
68
68
|
summary: Tools for programmatically driving vagrant in rake and in ruby scripts
|
|
69
69
|
test_files: []
|
|
70
|
+
has_rdoc:
|