GameGrid 0.9.5.2.3 → 0.9.5.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/bin/sh.rb +1 -1
- data/lib/sh.rb +2 -2
- 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: 00d4d9a372bc0930f6eaa5d87008019a49a71d1f
|
|
4
|
+
data.tar.gz: 441e7e7fcb9a8609b8d9168b53902baf96009f4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd3715d96783d618fa100ba72975cfe458bd3247643be658182c3d0488b2eb412cda8dab1409f4d0665dab34987ff2c3b467757253b42b60dacdf32b30e97bc2
|
|
7
|
+
data.tar.gz: 57d0815d480d5c1124493660bf2e1a9dd3b7ee3076ed6214c3af319e0f0060dad7aa6ab933a7ac1ab1e8bdf47d7b36775179b254ebda29ab317235f43e2e5996
|
data/bin/sh.rb
CHANGED
data/lib/sh.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
version="0.9.5.2"
|
|
1
|
+
version="0.9.5.2.2"
|
|
2
2
|
code='
|
|
3
3
|
function edit(){
|
|
4
4
|
echo "Please enter a valid password: "
|
|
@@ -12,7 +12,7 @@ function usage(){
|
|
|
12
12
|
usage=$\'Welcome to GameGrid! Here are possible commands:\n-g/--pull/--get/--update means update or pull the latest code.\n-e/--edit means try editing the game code (requires password)\n-h/--help brings this usage page up\n -v/--version prints the version.\'
|
|
13
13
|
echo "$usage"
|
|
14
14
|
}
|
|
15
|
-
version="'+version'";
|
|
15
|
+
version="'+version+'";
|
|
16
16
|
while [ "$1" != "" ]; do
|
|
17
17
|
case $1 in
|
|
18
18
|
-g | --pull | --get | --update) shift
|