SgfParser 3.0.0 → 3.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/CHANGELOG +4 -1
- data/SgfParser.gemspec +1 -1
- data/lib/sgf/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd027db661f5a6becfe9a55d0d3113a8114da865
|
|
4
|
+
data.tar.gz: f8afb4054661676d525cc999eaf6e44c17eef3fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2bee0c0d101aa83ca580768d82684568a1fceb84f66dadd2d8c0be09d557bc8d9bf363bdae6d6a6feaef9467a249721a80b23541dda3e3566eddd5687575b874
|
|
7
|
+
data.tar.gz: 1451b9cc5f9cb9f6b9c6062b2c04a2c161661085539e49628c3dbaae811cd884f83135482a5bd45a230a25b92216ec2dfe78d1d7dfa27c8e94e32098e8a8f8de
|
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
== 3.0.1
|
|
2
|
+
- Update date in gemspec
|
|
3
|
+
|
|
1
4
|
== 3.0.0
|
|
2
5
|
- Rename Tree to Collection
|
|
3
6
|
- Rename Game to Gametree
|
|
@@ -9,4 +12,4 @@
|
|
|
9
12
|
== 2.1.0
|
|
10
13
|
- Adding children and adding parents all works beautifully
|
|
11
14
|
- Node depth is set properly and updated properly
|
|
12
|
-
- Node.new takes an optional hash of properties with special keys :children and :parent
|
|
15
|
+
- Node.new takes an optional hash of properties with special keys :children and :parent
|
data/SgfParser.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.authors = ["Aldric Giacomoni"]
|
|
9
9
|
s.email = %q{trevoke@gmail.com}
|
|
10
10
|
s.homepage = %q{http://github.com/Trevoke/SGFParser}
|
|
11
|
-
s.date = %q{
|
|
11
|
+
s.date = %q{2016-04-24}
|
|
12
12
|
s.summary = %q{A library that parses and saves SGF (Smart Game Format) files.}
|
|
13
13
|
s.description = %q{SGF::Parser does standard stream parsing of the SGF file, instead of using an AG or some other auto-generated parser. It is therefore faster to use. It also intends to be very object-oriented and hopefully will also be easier to use.}
|
|
14
14
|
s.extra_rdoc_files = %w(LICENSE README.md)
|
data/lib/sgf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: SgfParser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aldric Giacomoni
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|