elastic-beanstalk 1.1.8 → 1.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/README.md +4 -1
- data/elastic-beanstalk.gemspec +1 -1
- data/lib/elastic/beanstalk/config.rb +4 -0
- data/lib/elastic/beanstalk/version.rb +1 -1
- metadata +7 -6
- data/.rvmrc +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65b951f26bf47fe930a5f9bb7e508aa28fbab753
|
4
|
+
data.tar.gz: f2ffe766f1112a06f14ff1472ba9eb745f0a0564
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32a3cfeba79fe34e9266244e18aefd429fccb75a33c4aa0c7b5da8b815f91a5ec3a9b61f50c2c36323d694bb75dbb4d394cce2d26432a95aac22182fb8e68a28
|
7
|
+
data.tar.gz: d9c8d20cf436af10dbe759bf191d86b4ae570a7ff245e5e4f118563ceb9935c9e215ed0310b913c076af0be29571f9f723993ef71930f083ce1c54321d0ee23e
|
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
elastic_beanstalk
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.2.2
|
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# ElasticBeanstalk
|
2
|
+
[![Gem Version](https://badge.fury.io/rb/elastic-beanstalk.svg)](https://rubygems.org/gems/elastic-beanstalk)
|
2
3
|
|
3
4
|
Configure and deploy a rails app to Elastic Beanstalk via rake in 60 seconds. Maintain multiple environment DRY configurations and .ebextensions in one easy to use yaml configuration file.
|
4
5
|
|
@@ -51,6 +52,7 @@ app: acme
|
|
51
52
|
region: us-east-1
|
52
53
|
solution_stack_name: 64bit Amazon Linux 2015.03 v2.0.0 running Ruby 2.2 (Passenger Standalone)
|
53
54
|
strategy: inplace-update
|
55
|
+
keep_latest: 10
|
54
56
|
development:
|
55
57
|
options:
|
56
58
|
aws:autoscaling:launchconfiguration:
|
@@ -146,6 +148,7 @@ region: us-east-1
|
|
146
148
|
# Choose a platform from http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html
|
147
149
|
solution_stack_name: 64bit Amazon Linux 2015.03 v2.0.0 running Ruby 2.2 (Passenger Standalone)
|
148
150
|
strategy: inplace-update # default to inplace-update to avoid starting new environments
|
151
|
+
keep_latest: 10
|
149
152
|
package:
|
150
153
|
verbose: true
|
151
154
|
exclude_dirs: [features, spec, target, coverage, vcr, flows] # additional dirs that merge with default excludes
|
@@ -234,7 +237,7 @@ The following are passed if not nil, otherwise eb_deployer assigns an appropriat
|
|
234
237
|
|
235
238
|
```ruby
|
236
239
|
package_bucket:
|
237
|
-
keep_latest:
|
240
|
+
keep_latest: (if unspecified, it will keep all past versions in the S3 bucket)
|
238
241
|
version_prefix:
|
239
242
|
tier:
|
240
243
|
```
|
data/elastic-beanstalk.gemspec
CHANGED
@@ -18,6 +18,10 @@ module Elastic
|
|
18
18
|
# it's a singleton, thus implemented as a self-extended module
|
19
19
|
# extend self
|
20
20
|
|
21
|
+
def initialize(options = {})
|
22
|
+
super({interpolation: false}.merge options)
|
23
|
+
end
|
24
|
+
|
21
25
|
def seed_default_configuration
|
22
26
|
# seed the sensible defaults here
|
23
27
|
@configuration = {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elastic-beanstalk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin Ross
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -170,14 +170,14 @@ dependencies:
|
|
170
170
|
requirements:
|
171
171
|
- - ">="
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version:
|
173
|
+
version: 1.1.4
|
174
174
|
type: :runtime
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
178
|
- - ">="
|
179
179
|
- !ruby/object:Gem::Version
|
180
|
-
version:
|
180
|
+
version: 1.1.4
|
181
181
|
description: |2
|
182
182
|
The simplest way to configure and deploy an Elastic Beanstalk application via rake.
|
183
183
|
email:
|
@@ -189,7 +189,8 @@ extra_rdoc_files: []
|
|
189
189
|
files:
|
190
190
|
- ".gitignore"
|
191
191
|
- ".rspec"
|
192
|
-
- ".
|
192
|
+
- ".ruby-gemset"
|
193
|
+
- ".ruby-version"
|
193
194
|
- Gemfile
|
194
195
|
- LICENSE.txt
|
195
196
|
- README.md
|
@@ -229,7 +230,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
229
230
|
version: '0'
|
230
231
|
requirements: []
|
231
232
|
rubyforge_project:
|
232
|
-
rubygems_version: 2.4.
|
233
|
+
rubygems_version: 2.4.8
|
233
234
|
signing_key:
|
234
235
|
specification_version: 4
|
235
236
|
summary: Configure and deploy a rails app to Elastic Beanstalk via rake in 60 seconds.
|
data/.rvmrc
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
rvm use ruby-2.2.0@elastic_beanstalk --create
|