chess_data 1.0.6 → 1.0.7
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/LICENSE.rdoc +1 -1
- data/README.rdoc +7 -7
- metadata +7 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c145a08765901e9be62aeb734b22ec33114a3e5492214dfc3b1821be7f0de31c
|
|
4
|
+
data.tar.gz: e5098c53ec37776877444fd8040db232926bf63bbb1a0a8c4d00589492af43ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c30576eaec4291dcf0e0396318003fe1b64275b3e9a5a6b0decff4b5ac618b491eb7cee495dcf79e1cfb773f74e9aa22acc69d07a879be56e25c2448a8a34a1c
|
|
7
|
+
data.tar.gz: b2032114f6133ee8ed88cce0ee802b422ef9f37d223a30fa1de7429f41a494478867e30c9650b05ae498809727dfd84ddd857367bbf3a756944590a12cb5ce9c
|
data/LICENSE.rdoc
CHANGED
data/README.rdoc
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
= chess_data
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Available from:
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
- RubyGems: https://rubygems.org/gems/chess_data/
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
- Source: https://codeberg.org/peterlane/chess_data/
|
|
8
8
|
|
|
9
9
|
== Description
|
|
10
10
|
|
|
@@ -16,7 +16,7 @@ Features
|
|
|
16
16
|
* Filter games looking for games containing positions with certain combinations
|
|
17
17
|
of pieces
|
|
18
18
|
* Save collections of PGN games or individual positions after filtering.
|
|
19
|
-
* PGN lexer follows
|
|
19
|
+
* PGN lexer follows a standard specification
|
|
20
20
|
* note that the lexer recognises but ignores comments and NAGs, so they will
|
|
21
21
|
not appear in any resaved games
|
|
22
22
|
|
|
@@ -35,9 +35,9 @@ definition. For example, the following filters for 5-4 rook endings:
|
|
|
35
35
|
|
|
36
36
|
Filters include:
|
|
37
37
|
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
38
|
+
* <code>exactly n, *pieces</code>
|
|
39
|
+
* <code>at_least n, *pieces</code>
|
|
40
|
+
* <code>at_most n, *pieces</code>
|
|
41
41
|
|
|
42
42
|
== Example: Extracting all 5-4 R+P endings
|
|
43
43
|
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chess_data
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Lane
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: word_wrap
|
|
@@ -37,8 +36,8 @@ email: peterlane@gmx.com
|
|
|
37
36
|
executables: []
|
|
38
37
|
extensions: []
|
|
39
38
|
extra_rdoc_files:
|
|
40
|
-
- README.rdoc
|
|
41
39
|
- LICENSE.rdoc
|
|
40
|
+
- README.rdoc
|
|
42
41
|
files:
|
|
43
42
|
- LICENSE.rdoc
|
|
44
43
|
- README.rdoc
|
|
@@ -48,11 +47,11 @@ files:
|
|
|
48
47
|
- lib/chess_data/game.rb
|
|
49
48
|
- lib/chess_data/moves.rb
|
|
50
49
|
- lib/chess_data/position-definition.rb
|
|
51
|
-
homepage:
|
|
50
|
+
homepage: https://rubygems.org/gems/chess_data
|
|
52
51
|
licenses:
|
|
53
52
|
- MIT
|
|
54
|
-
metadata:
|
|
55
|
-
|
|
53
|
+
metadata:
|
|
54
|
+
source_code_uri: https://codeberg.org/peterlane/chess_data
|
|
56
55
|
rdoc_options:
|
|
57
56
|
- "-m"
|
|
58
57
|
- README.rdoc
|
|
@@ -63,17 +62,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
63
62
|
- - ">="
|
|
64
63
|
- !ruby/object:Gem::Version
|
|
65
64
|
version: '2.5'
|
|
66
|
-
- - "<"
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: '4.0'
|
|
69
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
66
|
requirements:
|
|
71
67
|
- - ">="
|
|
72
68
|
- !ruby/object:Gem::Version
|
|
73
69
|
version: '0'
|
|
74
70
|
requirements: []
|
|
75
|
-
rubygems_version:
|
|
76
|
-
signing_key:
|
|
71
|
+
rubygems_version: 4.0.2
|
|
77
72
|
specification_version: 4
|
|
78
73
|
summary: For searching/filtering datasets of chess games based on combinations of
|
|
79
74
|
pieces.
|