multi_ec2_kiq 0.0.3 → 0.0.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 +6 -3
- data/lib/multi_ec2_kiq/version.rb +1 -1
- data/lib/multi_ec2_kiq.rb +5 -0
- 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: fd81d8f6c468c6f119f2f912456b95f163ea02fd
|
4
|
+
data.tar.gz: d86dd543db73a65065b9161c655dbb7f950f71dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a1a15d922de7e59f24827d2bdb49f604e185ee2fab9052c1374af32b4375b5b1ae85760cc566304d6149e2537d9b439d0a163c55814becee13ab1b62a7d0cb9
|
7
|
+
data.tar.gz: 8d54b40d37ecb310034204158dfba648b780001cc1b42d7438923804209f5b1c2501f3929306943d81dc9ee50199c49bb2d607cde3490834b3efa0802de526be
|
data/README.md
CHANGED
@@ -37,10 +37,13 @@ You have to set aws profile in your ~/.aws/credentials.
|
|
37
37
|
|
38
38
|
Write configuration yml file, use "lib/settings.yml" as a reference.
|
39
39
|
|
40
|
-
To create ec2-status-table on DynamoDB, you have to call
|
40
|
+
To create ec2-status-table on DynamoDB, you have to call create_status_table method from rails console, ruby source, e.t.c.
|
41
41
|
```ruby
|
42
|
-
|
43
|
-
|
42
|
+
require "multi_ec2_kiq"
|
43
|
+
|
44
|
+
include MultiEc2Kiq
|
45
|
+
|
46
|
+
MultiEc2Kiq.create_status_table
|
44
47
|
```
|
45
48
|
|
46
49
|
Then, call methods.
|
data/lib/multi_ec2_kiq.rb
CHANGED