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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae6578bd7591c95a0fe3032d9c5eed3fba38ef800b5bce483f4be03464c2093e
4
- data.tar.gz: 65fbc6e5efdf6f344c13f74d1f99d189a7ce4949673c91fd50ee00646d6004b7
3
+ metadata.gz: 4780c822aef006f9c4720bb069a2d81accea2f56b3a97e7e3598500cab748436
4
+ data.tar.gz: bd5aa36b830c6e89a88d60bccecaf411bc5c24dbba6ccb46a8a5e2ad172dd616
5
5
  SHA512:
6
- metadata.gz: c83628b20a775431b6059b161f491a5f2cc962381d3793881f161e8ccce3c0f3da28bef3c9e63067c74e738d8e8bbab5c133bc7933f61d81cdb69ded3f0270b1
7
- data.tar.gz: 33dffcdb05cd2d88a9a4fe616b790f6047cb1fe792c3b0f634a74bb3bd313ab082939e8e989774f2a19ab20e892468b996c52b658799db84cc8833034ce45b8f
6
+ metadata.gz: cc28865e6b2e57e535b5634d00b2314443b07716920b774901111b65018c3df41d6f54fc135c29b8f82a43857745923b7933bdeed8f62c2b64772d2d6b32f06f
7
+ data.tar.gz: f913d913014d2c8382901958fc98a139aa092c60d0cce84a8d51e867f68cd740171e9c76e5fd79c7e7055477fd2a67f284f0fb6d5c654e09390a3cc83e445100
@@ -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
- compile_keep: true # false by default. after aws-ec2 create command, the compiled
85
- # scripts in tmp are removed by default.
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`:
@@ -11,7 +11,7 @@ class AwsEc2::Script
11
11
  def upload
12
12
  compiler.compile if @compile
13
13
  sync_scripts_to_s3
14
- compiler.clean if @compile and !AwsEc2.config["compile_keep"]
14
+ compiler.clean if @compile and AwsEc2.config["compile_clean"]
15
15
  end
16
16
 
17
17
  def sync_scripts_to_s3
@@ -1,3 +1,3 @@
1
1
  module AwsEc2
2
- VERSION = "0.8.2"
2
+ VERSION = "0.8.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen