vagrant-aws 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -0
- data/Gemfile +4 -0
- data/README.md +65 -0
- data/Rakefile +10 -0
- data/lib/vagrant-aws.rb +14 -0
- data/lib/vagrant-aws/action/create.rb +56 -0
- data/lib/vagrant-aws/action/create_image.rb +106 -0
- data/lib/vagrant-aws/action/create_sshkey.rb +39 -0
- data/lib/vagrant-aws/action/deregister_image.rb +27 -0
- data/lib/vagrant-aws/action/populate_ssh.rb +41 -0
- data/lib/vagrant-aws/action/prepare_provisioners.rb +127 -0
- data/lib/vagrant-aws/action/resume.rb +20 -0
- data/lib/vagrant-aws/action/suspend.rb +20 -0
- data/lib/vagrant-aws/action/terminate.rb +21 -0
- data/lib/vagrant-aws/box.rb +20 -0
- data/lib/vagrant-aws/box_collection.rb +15 -0
- data/lib/vagrant-aws/command.rb +186 -0
- data/lib/vagrant-aws/config.rb +38 -0
- data/lib/vagrant-aws/environment.rb +79 -0
- data/lib/vagrant-aws/errors.rb +29 -0
- data/lib/vagrant-aws/middleware.rb +53 -0
- data/lib/vagrant-aws/system.rb +24 -0
- data/lib/vagrant-aws/version.rb +3 -0
- data/lib/vagrant-aws/vm.rb +94 -0
- data/lib/vagrant_init.rb +4 -0
- data/locales/en.yml +64 -0
- data/test/test_helper.rb +24 -0
- data/test/vagrant-aws/action/create_image_test.rb +63 -0
- data/test/vagrant-aws/action/create_ssh_key_test.rb +43 -0
- data/test/vagrant-aws/action/create_test.rb +65 -0
- data/test/vagrant-aws/action/terminate_test.rb +20 -0
- data/test/vagrant-aws/command_test.rb +21 -0
- data/test/vagrant-aws/config_test.rb +14 -0
- data/vagrant-aws.gemspec +29 -0
- metadata +165 -0
data/vagrant-aws.gemspec
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "vagrant-aws/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "vagrant-aws"
|
7
|
+
s.version = VagrantAWS::VERSION
|
8
|
+
s.authors = ["Michael Linderman"]
|
9
|
+
s.email = ["michael.d.linderman@gmail.com"]
|
10
|
+
s.homepage = ""
|
11
|
+
s.summary = %q{A vagrant plugin for working with AWS}
|
12
|
+
s.description = %q{A vagrant plugin for working with AWS}
|
13
|
+
|
14
|
+
s.rubyforge_project = "vagrant-aws"
|
15
|
+
|
16
|
+
s.add_dependency "vagrant", ">= 0.6.0"
|
17
|
+
s.add_dependency "fog", ">= 0.9.0"
|
18
|
+
s.add_dependency "archive-tar-minitar", ">= 0.5.2"
|
19
|
+
s.add_dependency "macaddr", "~> 1.0.0"
|
20
|
+
|
21
|
+
s.add_development_dependency "bundler", ">= 1.0.0"
|
22
|
+
s.add_development_dependency "contest", "~> 0.1.3"
|
23
|
+
s.add_development_dependency "mocha", "~> 0.9.8"
|
24
|
+
|
25
|
+
s.files = `git ls-files`.split("\n")
|
26
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
27
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
28
|
+
s.require_path = "lib"
|
29
|
+
end
|
metadata
ADDED
@@ -0,0 +1,165 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vagrant-aws
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Michael Linderman
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2011-07-15 00:00:00.000000000 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: vagrant
|
17
|
+
requirement: &2164900000 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.6.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *2164900000
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: fog
|
28
|
+
requirement: &2164899460 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.9.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *2164899460
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: archive-tar-minitar
|
39
|
+
requirement: &2164898900 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: 0.5.2
|
45
|
+
type: :runtime
|
46
|
+
prerelease: false
|
47
|
+
version_requirements: *2164898900
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: macaddr
|
50
|
+
requirement: &2164898440 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ~>
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 1.0.0
|
56
|
+
type: :runtime
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *2164898440
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: bundler
|
61
|
+
requirement: &2164897940 !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 1.0.0
|
67
|
+
type: :development
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: *2164897940
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: contest
|
72
|
+
requirement: &2164897460 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 0.1.3
|
78
|
+
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: *2164897460
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: mocha
|
83
|
+
requirement: &2164896980 !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ~>
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 0.9.8
|
89
|
+
type: :development
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: *2164896980
|
92
|
+
description: A vagrant plugin for working with AWS
|
93
|
+
email:
|
94
|
+
- michael.d.linderman@gmail.com
|
95
|
+
executables: []
|
96
|
+
extensions: []
|
97
|
+
extra_rdoc_files: []
|
98
|
+
files:
|
99
|
+
- .gitignore
|
100
|
+
- Gemfile
|
101
|
+
- README.md
|
102
|
+
- Rakefile
|
103
|
+
- lib/vagrant-aws.rb
|
104
|
+
- lib/vagrant-aws/action/create.rb
|
105
|
+
- lib/vagrant-aws/action/create_image.rb
|
106
|
+
- lib/vagrant-aws/action/create_sshkey.rb
|
107
|
+
- lib/vagrant-aws/action/deregister_image.rb
|
108
|
+
- lib/vagrant-aws/action/populate_ssh.rb
|
109
|
+
- lib/vagrant-aws/action/prepare_provisioners.rb
|
110
|
+
- lib/vagrant-aws/action/resume.rb
|
111
|
+
- lib/vagrant-aws/action/suspend.rb
|
112
|
+
- lib/vagrant-aws/action/terminate.rb
|
113
|
+
- lib/vagrant-aws/box.rb
|
114
|
+
- lib/vagrant-aws/box_collection.rb
|
115
|
+
- lib/vagrant-aws/command.rb
|
116
|
+
- lib/vagrant-aws/config.rb
|
117
|
+
- lib/vagrant-aws/environment.rb
|
118
|
+
- lib/vagrant-aws/errors.rb
|
119
|
+
- lib/vagrant-aws/middleware.rb
|
120
|
+
- lib/vagrant-aws/system.rb
|
121
|
+
- lib/vagrant-aws/version.rb
|
122
|
+
- lib/vagrant-aws/vm.rb
|
123
|
+
- lib/vagrant_init.rb
|
124
|
+
- locales/en.yml
|
125
|
+
- test/test_helper.rb
|
126
|
+
- test/vagrant-aws/action/create_image_test.rb
|
127
|
+
- test/vagrant-aws/action/create_ssh_key_test.rb
|
128
|
+
- test/vagrant-aws/action/create_test.rb
|
129
|
+
- test/vagrant-aws/action/terminate_test.rb
|
130
|
+
- test/vagrant-aws/command_test.rb
|
131
|
+
- test/vagrant-aws/config_test.rb
|
132
|
+
- vagrant-aws.gemspec
|
133
|
+
has_rdoc: true
|
134
|
+
homepage: ''
|
135
|
+
licenses: []
|
136
|
+
post_install_message:
|
137
|
+
rdoc_options: []
|
138
|
+
require_paths:
|
139
|
+
- lib
|
140
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
141
|
+
none: false
|
142
|
+
requirements:
|
143
|
+
- - ! '>='
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
|
+
none: false
|
148
|
+
requirements:
|
149
|
+
- - ! '>='
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0'
|
152
|
+
requirements: []
|
153
|
+
rubyforge_project: vagrant-aws
|
154
|
+
rubygems_version: 1.6.2
|
155
|
+
signing_key:
|
156
|
+
specification_version: 3
|
157
|
+
summary: A vagrant plugin for working with AWS
|
158
|
+
test_files:
|
159
|
+
- test/test_helper.rb
|
160
|
+
- test/vagrant-aws/action/create_image_test.rb
|
161
|
+
- test/vagrant-aws/action/create_ssh_key_test.rb
|
162
|
+
- test/vagrant-aws/action/create_test.rb
|
163
|
+
- test/vagrant-aws/action/terminate_test.rb
|
164
|
+
- test/vagrant-aws/command_test.rb
|
165
|
+
- test/vagrant-aws/config_test.rb
|