aws-ec2 0.8.2 → 0.8.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +2 -2
- data/lib/aws_ec2/script/upload.rb +1 -1
- data/lib/aws_ec2/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4780c822aef006f9c4720bb069a2d81accea2f56b3a97e7e3598500cab748436
|
4
|
+
data.tar.gz: bd5aa36b830c6e89a88d60bccecaf411bc5c24dbba6ccb46a8a5e2ad172dd616
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc28865e6b2e57e535b5634d00b2314443b07716920b774901111b65018c3df41d6f54fc135c29b8f82a43857745923b7933bdeed8f62c2b64772d2d6b32f06f
|
7
|
+
data.tar.gz: f913d913014d2c8382901958fc98a139aa092c60d0cce84a8d51e867f68cd740171e9c76e5fd79c7e7055477fd2a67f284f0fb6d5c654e09390a3cc83e445100
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
5
5
|
|
6
|
+
## [0.8.3]
|
7
|
+
- change compile_keep to compile_clean option instead
|
8
|
+
|
6
9
|
## [0.8.2]
|
7
10
|
- add compile_keep option
|
8
11
|
|
data/README.md
CHANGED
@@ -81,8 +81,8 @@ db_subnet_group_name: default
|
|
81
81
|
security_group_ids:
|
82
82
|
- sg-123
|
83
83
|
scripts_s3_bucket: mybucket # enables s3 uploading of generated app/scripts
|
84
|
-
|
85
|
-
|
84
|
+
# compile_clean: true # uncomment if you want to automatically clean the
|
85
|
+
# compiled scripts in tmp that aws-ec2 creates
|
86
86
|
```
|
87
87
|
|
88
88
|
The variables are accessible via the `config` helper method. Example (only showing the part of the profile), `profiles/default.yml`:
|
data/lib/aws_ec2/version.rb
CHANGED