chess_openings 0.0.3 → 1.0.0
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/.gitignore +3 -1
- data/.yardoc/checksums +4 -0
- data/.yardoc/complete +0 -0
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +0 -0
- data/Gemfile +3 -2
- data/Gemfile.lock +13 -2
- data/README.md +124 -10
- data/{openings_parser.rb → bin/openings_parser} +24 -23
- data/chess_openings.gemspec +16 -14
- data/doc/ChessOpenings.html +1163 -0
- data/doc/ChessOpeningsHelper.html +355 -0
- data/doc/InvalidPGNError.html +135 -0
- data/doc/Opening.html +909 -0
- data/doc/SearchTree/Node.html +770 -0
- data/doc/SearchTree.html +1081 -0
- data/doc/_index.html +166 -0
- data/doc/class_list.html +51 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +58 -0
- data/doc/css/style.css +492 -0
- data/doc/file.README.html +241 -0
- data/doc/file_list.html +56 -0
- data/doc/frames.html +17 -0
- data/doc/index.html +241 -0
- data/doc/js/app.js +243 -0
- data/doc/js/full_list.js +216 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +371 -0
- data/doc/top-level-namespace.html +110 -0
- data/lib/chess_openings/chess_openings_helper.rb +18 -0
- data/lib/chess_openings/json_openings/openings.json +3 -3
- data/lib/chess_openings/opening.rb +31 -15
- data/lib/chess_openings/search_tree.rb +97 -81
- data/lib/chess_openings.rb +51 -20
- metadata +61 -7
- data/chess_openings-0.0.1.gem +0 -0
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chess_openings
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simão Neves
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pgn
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.1.1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.1.1
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: nokogiri
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -80,27 +80,81 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '10.0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: yard
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: pry
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
83
111
|
description: Gem that allows you to know what chess opening was used in a chess game,
|
|
84
112
|
find chess openings by name or get all openings that start with certain moves
|
|
85
113
|
email:
|
|
86
114
|
- simaocostaneves@gmail.com
|
|
87
|
-
executables:
|
|
115
|
+
executables:
|
|
116
|
+
- openings_parser
|
|
88
117
|
extensions: []
|
|
89
118
|
extra_rdoc_files: []
|
|
90
119
|
files:
|
|
91
120
|
- ".gitignore"
|
|
92
121
|
- ".rspec"
|
|
122
|
+
- ".yardoc/checksums"
|
|
123
|
+
- ".yardoc/complete"
|
|
124
|
+
- ".yardoc/object_types"
|
|
125
|
+
- ".yardoc/objects/root.dat"
|
|
126
|
+
- ".yardoc/proxy_types"
|
|
93
127
|
- Gemfile
|
|
94
128
|
- Gemfile.lock
|
|
95
129
|
- LICENSE
|
|
96
130
|
- README.md
|
|
97
|
-
-
|
|
131
|
+
- bin/openings_parser
|
|
98
132
|
- chess_openings.gemspec
|
|
133
|
+
- doc/ChessOpenings.html
|
|
134
|
+
- doc/ChessOpeningsHelper.html
|
|
135
|
+
- doc/InvalidPGNError.html
|
|
136
|
+
- doc/Opening.html
|
|
137
|
+
- doc/SearchTree.html
|
|
138
|
+
- doc/SearchTree/Node.html
|
|
139
|
+
- doc/_index.html
|
|
140
|
+
- doc/class_list.html
|
|
141
|
+
- doc/css/common.css
|
|
142
|
+
- doc/css/full_list.css
|
|
143
|
+
- doc/css/style.css
|
|
144
|
+
- doc/file.README.html
|
|
145
|
+
- doc/file_list.html
|
|
146
|
+
- doc/frames.html
|
|
147
|
+
- doc/index.html
|
|
148
|
+
- doc/js/app.js
|
|
149
|
+
- doc/js/full_list.js
|
|
150
|
+
- doc/js/jquery.js
|
|
151
|
+
- doc/method_list.html
|
|
152
|
+
- doc/top-level-namespace.html
|
|
99
153
|
- lib/chess_openings.rb
|
|
154
|
+
- lib/chess_openings/chess_openings_helper.rb
|
|
100
155
|
- lib/chess_openings/json_openings/openings.json
|
|
101
156
|
- lib/chess_openings/opening.rb
|
|
102
157
|
- lib/chess_openings/search_tree.rb
|
|
103
|
-
- openings_parser.rb
|
|
104
158
|
homepage: http://www.github.com/simaoneves/chess_openings
|
|
105
159
|
licenses:
|
|
106
160
|
- MIT
|
data/chess_openings-0.0.1.gem
DELETED
|
Binary file
|