ogs_katacheck 0.1.1 → 0.1.2
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/CHANGELOG.md +4 -1
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/bin/katacheck +5 -0
- data/lib/ogs_katacheck/version.rb +1 -1
- data/ogs_katacheck.gemspec +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43a71da1e0b8b90515d3f1625243d2c5e644e403478e087feec1295caaf6412d
|
|
4
|
+
data.tar.gz: d465413d06e6463d4c758486fa64994d77504f1c8c8014259eee314e574b70ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e888121707084d8957815dea175e77076590e1cb5a1866f25e6b3b0e187ec250696cccd977b0231a5276643035e350eb782a98a0afe6a7d234ee4e715f708e4
|
|
7
|
+
data.tar.gz: abcdcfdd5aa856fa0048162e32e885d6f5d81bcfcc45e982873b1e68954276bf1c1a3d5b30a9d926e93991749fb43363a56d2807616d08efdb33db973ca666b9
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -18,6 +18,10 @@ After installing OGS KataCheck, you can run it by opening a terminal and typing:
|
|
|
18
18
|
|
|
19
19
|
$ ogs-katacheck
|
|
20
20
|
|
|
21
|
+
or
|
|
22
|
+
|
|
23
|
+
$ katacheck
|
|
24
|
+
|
|
21
25
|
You will be asked to enter a game ID. This can be simply copied and pasted from OGS.
|
|
22
26
|
|
|
23
27
|
You will then be presented with a list of available OGS AI reviews. **Only full reviews** are useable with this tool. If you do not see a full review in the list, open the game in OGS and run a full review. Once the server has completed the review, re-run the tool.
|
data/bin/katacheck
ADDED
data/ogs_katacheck.gemspec
CHANGED
|
@@ -23,6 +23,6 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
24
24
|
end
|
|
25
25
|
spec.bindir = "bin"
|
|
26
|
-
spec.executables =
|
|
26
|
+
spec.executables = ["ogs-katacheck", "katacheck"]
|
|
27
27
|
spec.require_paths = ["lib"]
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ogs_katacheck
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- RubyMineshaft
|
|
@@ -14,7 +14,9 @@ description: This CLI gem is written for OGS team members in order to aid in inv
|
|
|
14
14
|
suspicions of botting.
|
|
15
15
|
email:
|
|
16
16
|
- rubymineshaft@online-go.com
|
|
17
|
-
executables:
|
|
17
|
+
executables:
|
|
18
|
+
- ogs-katacheck
|
|
19
|
+
- katacheck
|
|
18
20
|
extensions: []
|
|
19
21
|
extra_rdoc_files: []
|
|
20
22
|
files:
|
|
@@ -25,6 +27,7 @@ files:
|
|
|
25
27
|
- README.md
|
|
26
28
|
- Rakefile
|
|
27
29
|
- bin/console
|
|
30
|
+
- bin/katacheck
|
|
28
31
|
- bin/ogs-katacheck
|
|
29
32
|
- bin/setup
|
|
30
33
|
- lib/ogs_katacheck.rb
|