ogs_katacheck 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c71349f5dd8e74429e56af1b16a8f2a5d9738d4d5f91ac0ac838a356ca119be1
4
- data.tar.gz: 94a6f3d98e73634aa0f4064fcd4d8ad7d0710a8b0d8797b37ae8da0733f87529
3
+ metadata.gz: 43a71da1e0b8b90515d3f1625243d2c5e644e403478e087feec1295caaf6412d
4
+ data.tar.gz: d465413d06e6463d4c758486fa64994d77504f1c8c8014259eee314e574b70ba
5
5
  SHA512:
6
- metadata.gz: 2176a2caa81063dbae9e38139a6a586be97c9eabc29dd6b79c3130db81585abde1e9761c2825af5846287a60d25b1fbd8aa79a917f93ad632f44b218075db585
7
- data.tar.gz: ef0c4665c4c05ecd514c4d630460e2100459260116bd58baee63d1aa1e351b403f8688dc4b592878996f4fea1b6ba0d9a61d56149b8b96389578f053c8575755
6
+ metadata.gz: 8e888121707084d8957815dea175e77076590e1cb5a1866f25e6b3b0e187ec250696cccd977b0231a5276643035e350eb782a98a0afe6a7d234ee4e715f708e4
7
+ data.tar.gz: abcdcfdd5aa856fa0048162e32e885d6f5d81bcfcc45e982873b1e68954276bf1c1a3d5b30a9d926e93991749fb43363a56d2807616d08efdb33db973ca666b9
@@ -4,4 +4,7 @@
4
4
  - Added ability to check games against OGS full reviews.
5
5
 
6
6
  ### 0.1.1
7
- - add ogs-katacheck executable
7
+ - add `ogs-katacheck` executable
8
+
9
+ ### 0.1.2
10
+ - add `katacheck` executable
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ogs_katacheck (0.1.1)
4
+ ogs_katacheck (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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.
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require './lib/ogs_katacheck'
4
+
5
+ OGSKataCheck::CLI.new.call
@@ -1,3 +1,3 @@
1
1
  module OGSKataCheck
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -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 = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
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.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