CoC-Calc 1.2.3 → 1.2.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/lib/CoC-Calc.rb +5 -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: 6e5e88313b4323f28c97594138871279080b133f
|
|
4
|
+
data.tar.gz: 84abff244dd7bc65c5e0b9b61a4d33d1084489dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48adcb49c2ebd783c64eec01ff51aa0a6bc3e6ed805e539aea499aa0a7dd118231a505da9104840f6f0ca9d879331416bee44ac89a489ec93a0bb4ae7a4fd3f2
|
|
7
|
+
data.tar.gz: ade71848eb04209f0201acd69113a55341b46b20874a8d8647b0760c0e1e216ecf69cf97939c511572b390ccdec3437a066b3f8462ed67eca6bb5e9e128ece5c
|
data/lib/CoC-Calc.rb
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
def stand
|
|
2
|
+
puts "CoC-Calc up and running, Sir! Version: 1.2.4"
|
|
3
|
+
end
|
|
4
|
+
|
|
1
5
|
def init
|
|
2
6
|
if Dir.exists? "/CoC-Calc-Saves"
|
|
3
7
|
else
|
|
@@ -257,5 +261,5 @@ elsif ARGV[0] == 'set_troop_lvl'
|
|
|
257
261
|
elsif ARGV[0]== 'calc'
|
|
258
262
|
calc
|
|
259
263
|
else
|
|
260
|
-
|
|
264
|
+
stand
|
|
261
265
|
end
|