build-cloud 0.0.17 → 0.0.18
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 +4 -4
- data/CHANGELOG.md +2 -0
- data/build-cloud.gemspec +1 -1
- data/lib/build-cloud/cacheparametergroup.rb +1 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 579be8b6270faf6e5d5c9c425ae4e0a26fa7287a
|
|
4
|
+
data.tar.gz: 06f1c5e9c1aa4a8e9e785abac79d59a2adab88ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f09d5b3317c9814f00809c5d0856a1ec5053bcba93d6025f409630cbbb275a5b0cd20e4b45d7748f5c9c3d52fd9152a01f84ecb2978981acae072fa401c8b035
|
|
7
|
+
data.tar.gz: ae211e4faa641d435d383a23b730c075fe8a008bcf360caea2fb2a3ce93d6dab7d624db8b3bc9b30518fce8faba97438159811b9dfc1de7552e4d938b2678e8d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
2016-06-16 - version 0.0.18 - fix cache parameter group creation for elasticache
|
|
4
|
+
|
|
3
5
|
2016-05-04 - version 0.0.17 - allow metrics to be enabled on an asg when it's created
|
|
4
6
|
|
|
5
7
|
2016-02-02 - version 0.0.16 - fix bug which prevented security groups containing multiple references to other security groups being updated
|
data/build-cloud.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "build-cloud"
|
|
7
|
-
spec.version = "0.0.
|
|
7
|
+
spec.version = "0.0.18"
|
|
8
8
|
spec.authors = ["The Scale Factory"]
|
|
9
9
|
spec.email = ["info@scalefactory.com"]
|
|
10
10
|
spec.summary = %q{Tools for building resources in AWS}
|
|
@@ -29,12 +29,7 @@ class BuildCloud::CacheParameterGroup
|
|
|
29
29
|
|
|
30
30
|
@log.debug( param_group.inspect )
|
|
31
31
|
|
|
32
|
-
params = @elasticache.modify_cache_parameter_group options[:id], options[:params]
|
|
33
|
-
{
|
|
34
|
-
'ParameterName' => c[:param_name],
|
|
35
|
-
'ParameterValue' => c[:param_value],
|
|
36
|
-
}
|
|
37
|
-
}
|
|
32
|
+
params = @elasticache.modify_cache_parameter_group options[:id], options[:params]
|
|
38
33
|
|
|
39
34
|
@log.debug( params.inspect )
|
|
40
35
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: build-cloud
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The Scale Factory
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|