tvd-vagrant 0.0.19 → 0.0.21
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/cookbooks/vagrant/templates/default/Vagrantfile.aws.erb +1 -0
- data/spec/.gitignore +0 -0
- data/tasks/.gitignore +0 -0
- metadata +8 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.21
|
@@ -16,6 +16,7 @@ Vagrant.configure("2") do |config|
|
|
16
16
|
config.vm.provider :aws do |aws|
|
17
17
|
aws.keypair_name = "<%= node[:vagrant][:keypair_name] %>"
|
18
18
|
aws.instance_type = "<%= node[:vagrant][:instance_type] %>"
|
19
|
+
aws.region = ENV['AWS_DEFAULT_REGION'] || 'us-west-1'
|
19
20
|
end
|
20
21
|
end
|
21
22
|
|
data/spec/.gitignore
ADDED
File without changes
|
data/tasks/.gitignore
ADDED
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tvd-vagrant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.21
|
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: 2013-
|
12
|
+
date: 2013-12-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: tvd-tvdinner
|
@@ -43,6 +43,8 @@ files:
|
|
43
43
|
- cookbooks/vagrant/templates/default/Vagrantfile.virtualbox.erb
|
44
44
|
- lib/tvd-vagrant.rb
|
45
45
|
- lib/tvd-vagrant/version.rb
|
46
|
+
- spec/.gitignore
|
47
|
+
- tasks/.gitignore
|
46
48
|
- LICENSE
|
47
49
|
- NOTICE
|
48
50
|
- VERSION
|
@@ -68,8 +70,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
70
|
version: '0'
|
69
71
|
requirements: []
|
70
72
|
rubyforge_project:
|
71
|
-
rubygems_version: 1.8.
|
73
|
+
rubygems_version: 1.8.23
|
72
74
|
signing_key:
|
73
75
|
specification_version: 3
|
74
76
|
summary: vagrant cookbook and utilities
|
75
|
-
test_files:
|
77
|
+
test_files:
|
78
|
+
- spec/.gitignore
|
79
|
+
- tasks/.gitignore
|