kumogata 0.3.3 → 0.3.4
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/README.md +2 -2
- data/lib/kumogata/utils.rb +2 -2
- data/lib/kumogata/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8397ce5ba88d4176308efe41d403a0ff42df2dd
|
4
|
+
data.tar.gz: c1250a2e9c5e40620136ae46ce09bdaa2058578d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7746ac2ff2e1fa7e1b69d436e89550e84e22efb3ee62aaf875e4b29f730b7abcef5b6d5fb97af3872d3556db383d5ce5fea46aabad94fab362a92920e58971b
|
7
|
+
data.tar.gz: c413ed695774054393d168f62cd53a4f6cfdd3ac1a6115ee2a979b8089e98af74c8f6227cfbfde386413a2c2e0523493e2eb3bbfa0eeaf2e0c7f0c4b422edcdc
|
data/README.md
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
|
6
6
|
Kumogata is a tool for [AWS CloudFormation](https://aws.amazon.com/cloudformation/).
|
7
7
|
|
8
|
-
[](http://badge.fury.io/rb/kumogata)
|
9
|
+
[](https://drone.io/github.com/winebarrel/kumogata/latest)
|
10
10
|
|
11
11
|
It can define a template in Ruby DSL, such as:
|
12
12
|
|
data/lib/kumogata/utils.rb
CHANGED
@@ -14,8 +14,8 @@ class Kumogata::Utils
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def random_param_name(n)
|
17
|
-
|
18
|
-
|
17
|
+
a_zA_Z0_9 = (('a'..'z').to_a + ('A'..'Z').to_a + ('0'..'9').to_a)
|
18
|
+
a_zA_Z0_9.sample(n).join
|
19
19
|
end
|
20
20
|
end # of class methods
|
21
21
|
end
|
data/lib/kumogata/version.rb
CHANGED