chess_openings 1.0.0 → 1.0.1
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/README.md +2 -2
- data/chess_openings.gemspec +1 -1
- 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: a1e08d3f5211f9a5ed7c3c58cddd5954cf2cb339
|
4
|
+
data.tar.gz: a6b8383b2842a44772ab25e7f1f80a1af8e7d140
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6ec331889ecd5a026465fd563030778ee56501be4da61b7e29d72badfd4ac1e2c18db3a68bc0468fdd68a0b601f45671cb4590e31296b7bbb26f5dd61ccf849
|
7
|
+
data.tar.gz: 4ad1b412a4b3695fdb6ec0b4f6ee014835a3d2f8455d7b7181963e61ac68800ddaab777140440f4596c7a2707cd133b7439df21944e2faf6d165d81a8549ac1e
|
data/README.md
CHANGED
@@ -84,12 +84,12 @@ openings = chess_openings.with_name "alekhine defence"
|
|
84
84
|
=end
|
85
85
|
```
|
86
86
|
|
87
|
-
####.
|
87
|
+
####.all
|
88
88
|
Get all existing openings as an array
|
89
89
|
|
90
90
|
```ruby
|
91
91
|
chess_openings = ChessOpenings.new
|
92
|
-
all_openings = chess_openings.
|
92
|
+
all_openings = chess_openings.all
|
93
93
|
=begin
|
94
94
|
[
|
95
95
|
[0] #<Opening:0x007f8209dd4b30 @name="Polish (Sokolsky) opening", @eco_code="A00", @moves=[:b4]>,
|
data/chess_openings.gemspec
CHANGED