skywriter 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +4 -0
- data/lib/skywriter/resource/elastic_load_balancing/load_balancer.rb +2 -0
- data/lib/skywriter/resource_property/elastic_load_balancing/access_logging_policy.rb +12 -0
- data/lib/skywriter/resource_property/elastic_load_balancing/connection_draining_policy.rb +10 -0
- data/lib/skywriter/version.rb +1 -1
- data/spec/skywriter/resource_property_spec.rb +2 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8daa1417887d41edec5df4eba9c136b7fc077e18
|
4
|
+
data.tar.gz: 5b11a5267a385bbbd6b23d5c55d591f2c2a6c2b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e77a9b5a7f5d5f16b376459e59b78be2690c57ed0dca2ca4c94643546557a6ea9225d529be79595f315baa642edb289d9b433dc655d0ed97263b457fda4ace2
|
7
|
+
data.tar.gz: fab1e6ced849b5d0a9e30f382887bce82330f8dd6923ef7128655c57b704d33c64b0985644b793da2ae3cf5b2ac9b7d8acace79fa0a741283cd4de31346cec72
|
data/CHANGES.md
CHANGED
@@ -6,8 +6,10 @@ module Skywriter
|
|
6
6
|
class LoadBalancer
|
7
7
|
include Skywriter::Resource
|
8
8
|
|
9
|
+
property :AccessLoggingProperty
|
9
10
|
property :AppCookieStickinessPolicy
|
10
11
|
property :AvailabilityZones
|
12
|
+
property :ConnectionDrainingPolicy
|
11
13
|
property :CrossZone
|
12
14
|
property :HealthCheck
|
13
15
|
property :Instances
|
data/lib/skywriter/version.rb
CHANGED
@@ -141,7 +141,9 @@ describe "The implementation" do
|
|
141
141
|
Skywriter::ResourceProperty::ElasticBeanstalk::OptionSetting,
|
142
142
|
Skywriter::ResourceProperty::ElasticBeanstalk::SourceBundle,
|
143
143
|
Skywriter::ResourceProperty::ElasticBeanstalk::SourceConfiguration,
|
144
|
+
Skywriter::ResourceProperty::ElasticLoadBalancing::AccessLoggingPolicy,
|
144
145
|
Skywriter::ResourceProperty::ElasticLoadBalancing::AppCookieStickinessPolicy,
|
146
|
+
Skywriter::ResourceProperty::ElasticLoadBalancing::ConnectionDrainingPolicy,
|
145
147
|
Skywriter::ResourceProperty::ElasticLoadBalancing::HealthCheck,
|
146
148
|
Skywriter::ResourceProperty::ElasticLoadBalancing::LBCookieStickinessPolicy,
|
147
149
|
Skywriter::ResourceProperty::ElasticLoadBalancing::Listener,
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: skywriter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Michael
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-07-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: require_all
|
@@ -245,7 +245,9 @@ files:
|
|
245
245
|
- lib/skywriter/resource_property/elastic_beanstalk/option_setting.rb
|
246
246
|
- lib/skywriter/resource_property/elastic_beanstalk/source_bundle.rb
|
247
247
|
- lib/skywriter/resource_property/elastic_beanstalk/source_configuration.rb
|
248
|
+
- lib/skywriter/resource_property/elastic_load_balancing/access_logging_policy.rb
|
248
249
|
- lib/skywriter/resource_property/elastic_load_balancing/app_cookie_stickiness_policy.rb
|
250
|
+
- lib/skywriter/resource_property/elastic_load_balancing/connection_draining_policy.rb
|
249
251
|
- lib/skywriter/resource_property/elastic_load_balancing/health_check.rb
|
250
252
|
- lib/skywriter/resource_property/elastic_load_balancing/lb_cookie_stickiness_policy.rb
|
251
253
|
- lib/skywriter/resource_property/elastic_load_balancing/listener.rb
|