ami 1.0.0 → 1.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 +8 -8
- data/ami/precise-basic.rb +1 -1
- data/lib/ami/commands/create_ami.rb +1 -1
- data/lib/ami/definition.rb +1 -1
- data/lib/ami/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -5,7 +5,7 @@ A gem for automating the creation of EC2 AMIs
|
|
5
5
|
## Installation
|
6
6
|
|
7
7
|
```
|
8
|
-
gem install
|
8
|
+
gem install ami
|
9
9
|
```
|
10
10
|
|
11
11
|
or add to your Gemfile
|
@@ -13,26 +13,26 @@ or add to your Gemfile
|
|
13
13
|
```ruby
|
14
14
|
source "https://rubygems.org"
|
15
15
|
|
16
|
-
gem "
|
16
|
+
gem "ami", "~> 1.0.0"
|
17
17
|
```
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
`
|
21
|
+
`ami-create <AMI class name>`
|
22
22
|
|
23
23
|
Creates an AMI using the specified AMI template e.g.
|
24
24
|
|
25
|
-
`
|
25
|
+
`ami-create PreciseBasic`
|
26
26
|
|
27
|
-
AMIs are expected to be found in ./
|
27
|
+
AMIs are expected to be found in ./ami/
|
28
28
|
|
29
|
-
For an exmaple of what an AMI template looks like see: [PreciseBasic template](
|
29
|
+
For an exmaple of what an AMI template looks like see: [PreciseBasic template](ami/precise-basic.rb)
|
30
30
|
|
31
31
|
You will also require a config file to provide all the credentials and other
|
32
32
|
information necessary to create your AMI, this can be located in either
|
33
|
-
`~/.
|
33
|
+
`~/.ami/config.json` or `./ami/config.json`
|
34
34
|
|
35
|
-
For an example of the values see: [example config.json](
|
35
|
+
For an example of the values see: [example config.json](ami/config.json)
|
36
36
|
|
37
37
|
## LICENSE
|
38
38
|
|
data/ami/precise-basic.rb
CHANGED
data/lib/ami/definition.rb
CHANGED
data/lib/ami/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ami
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.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: 2013-06-
|
12
|
+
date: 2013-06-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: gofer
|