elastic-beanstalk 1.1.8 → 1.1.9

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6114495eb435a05271c8a09e3d87e1cb2536929a
4
- data.tar.gz: b8e14351242af8b0b7aa1f53f5ac288c3c2ac2d8
3
+ metadata.gz: 65b951f26bf47fe930a5f9bb7e508aa28fbab753
4
+ data.tar.gz: f2ffe766f1112a06f14ff1472ba9eb745f0a0564
5
5
  SHA512:
6
- metadata.gz: 1f1e02e3b49cc521882b05fb828ce4432a949a5f360a8dc89a57046b070f369bcbe2cf89a879a3711a2324c7648b4e16cea6fb4e8670f3abcfa0236c0ec715df
7
- data.tar.gz: 7a0e6a30be0cd603bb78937076e8688daf2188a5d2adfb4181031bf60332dde0486faea69d878481d8663198e8a89d7ee1283249298902b50e8b1e2523aa8114
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
  ```
@@ -38,5 +38,5 @@ Gem::Specification.new do |s|
38
38
  s.add_runtime_dependency 'rubyzip'
39
39
  s.add_runtime_dependency 'table_print'
40
40
  s.add_runtime_dependency 'nokogiri'
41
- s.add_runtime_dependency 'dry-config'
41
+ s.add_runtime_dependency 'dry-config', '>=1.1.4'
42
42
  end
@@ -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 = {
@@ -1,5 +1,5 @@
1
1
  module Elastic
2
2
  module Beanstalk
3
- VERSION = '1.1.8'
3
+ VERSION = '1.1.9'
4
4
  end
5
5
  end
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.8
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-01 00:00:00.000000000 Z
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: '0'
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: '0'
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
- - ".rvmrc"
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.5
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