elastic-beanstalk 0.1.0 → 0.1.1

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 CHANGED
@@ -18,6 +18,21 @@ Or install it yourself as:
18
18
 
19
19
  $ gem install elastic-beanstalk
20
20
 
21
+ ## Features
22
+
23
+ ### The elastic-beanstalk gem provides:
24
+ * Rake tasks to simplify all interactions
25
+ * Multi-environment configuration inheritance so your configs can be DRY
26
+ * Full access to the range of configuration options provided by AWS Elastic Beanstalk
27
+ * Keep all configurations including .ebextensions in one file (they are inheritable and can be overridden too)
28
+ * Provide access to helpers such as the SmokeTester to simplify configurations
29
+
30
+ ### Plus
31
+ Since [eb_deployer](https://github.com/ThoughtWorksStudios/eb_deployer) is doing the heavy lifting, by proxy you get access to great continuous delivery features such as:
32
+ * Blue Green deployment strategy
33
+ * In Place deployment strategy
34
+ * Smoke Testing upon deployment before Blue Green DNS switching
35
+
21
36
  ## Usage
22
37
 
23
38
  Given an application named 'acme':
@@ -84,8 +99,6 @@ config/eb.yml
84
99
  smoke_test: |
85
100
  lambda { |host|
86
101
 
87
- require 'eb_smoke_tester'
88
-
89
102
  EbSmokeTester.test_url("http://#{host}/ping", 600, 5, 'All good! Everything is up and checks out.')
90
103
  }
91
104
  #--
@@ -2,6 +2,7 @@ require 'digest'
2
2
  require 'zipruby' # gem 'zipruby'
3
3
  require 'ap' # gem 'awesome_print'
4
4
  require 'eb_deployer'
5
+ require 'time_diff'
5
6
  require 'elastic/beanstalk/config'
6
7
  require 'elastic/beanstalk/extensions'
7
8
 
@@ -1,5 +1,5 @@
1
1
  module Elastic
2
2
  module Beanstalk
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elastic-beanstalk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -185,7 +185,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
185
185
  version: '0'
186
186
  segments:
187
187
  - 0
188
- hash: -3659734422273774522
188
+ hash: -6290034435145869
189
189
  required_rubygems_version: !ruby/object:Gem::Requirement
190
190
  none: false
191
191
  requirements:
@@ -194,7 +194,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
194
194
  version: '0'
195
195
  segments:
196
196
  - 0
197
- hash: -3659734422273774522
197
+ hash: -6290034435145869
198
198
  requirements: []
199
199
  rubyforge_project:
200
200
  rubygems_version: 1.8.25