elasticDynamoDb 1.1.0 → 1.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.
- checksums.yaml +8 -8
- data/bin/elasticDynamoDb +10 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NDY0ZDMxZGI2MTgzNjQ4N2MwNTE5MjA2MWQxZjBmZTU0MTdhOGRiMg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZGEyYmU5MThhMWQzNTNiNTViODBiYTIyNDMwZDYzNGJlNjNlOTMwYw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MWVjMTc4N2IwNzZhNDAyZjM2ZTZhYjgwNjhiZTI0NGNmNTE1MzViYjgzNTk2
|
|
10
|
+
ZDhiZTA2YjU1MDI0NTM2ZjNmZGRlY2UxOGJiYjk0YTE2ZjYxNTEzN2M4MzM5
|
|
11
|
+
YTBlMjc4NmY4N2RhYjQyMGQ4MTU0MThkOGY2MzJmN2FkYjk2MjM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MTU0YmQ0MmRlMDc5MmIyYzA3ZDQ2NGNiZWQ1MzY0MTJjM2U4MTYwYmIwY2Yy
|
|
14
|
+
NTJjZmEwZTAyMjlmNjRlZWI4NjRhNDRlMDJlNzliYzI5YThkYWZmOGZmZTFk
|
|
15
|
+
ZmY5OWY4MjI1ODEyNmUxMDVjNzdlZDJmZmIwYmQ1NWIyZWY4NzA=
|
data/bin/elasticDynamoDb
CHANGED
|
@@ -222,6 +222,16 @@ private
|
|
|
222
222
|
}
|
|
223
223
|
log_changes("Update AWS via api call with the following data:\n #{provisioning}\n")
|
|
224
224
|
update_tables(provisioning)
|
|
225
|
+
else
|
|
226
|
+
confirmed = yes?("send the start command #{options[:start_cmd]} ? (yes/no)"
|
|
227
|
+
if confirmed
|
|
228
|
+
begin
|
|
229
|
+
system(options[:start_cmd]) if options[:start_cmd]
|
|
230
|
+
rescue Exception => e
|
|
231
|
+
puts "error trying the start command: #{e}"
|
|
232
|
+
end
|
|
233
|
+
end
|
|
234
|
+
exit
|
|
225
235
|
end
|
|
226
236
|
end
|
|
227
237
|
|