sanichi-chess_icu 0.4.10 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/{CHANGELOG → CHANGELOG.rdoc} +4 -3
- data/VERSION.yml +2 -2
- data/lib/{federation.rb → chess_icu/federation.rb} +0 -0
- data/lib/{name.rb → chess_icu/name.rb} +0 -0
- data/lib/{player.rb → chess_icu/player.rb} +0 -0
- data/lib/{result.rb → chess_icu/result.rb} +0 -0
- data/lib/{team.rb → chess_icu/team.rb} +0 -0
- data/lib/{tournament.rb → chess_icu/tournament.rb} +0 -0
- data/lib/{tournament_fcsv.rb → chess_icu/tournament_fcsv.rb} +0 -0
- data/lib/{tournament_krause.rb → chess_icu/tournament_krause.rb} +0 -0
- data/lib/{util.rb → chess_icu/util.rb} +0 -0
- data/lib/chess_icu.rb +1 -1
- metadata +13 -14
@@ -1,4 +1,5 @@
|
|
1
|
-
|
2
|
-
* Early version that just reads and writes foreign CSV files and has some basic name and date utilities.
|
3
|
-
* 0.3.1 2009-05-04
|
1
|
+
== 0.3.1 2009-05-04
|
4
2
|
* Can now read and write Krause files and deals properly with federations.
|
3
|
+
|
4
|
+
== 0.2.0 2009-04-11
|
5
|
+
* Early version that just reads and writes foreign CSV files and has some basic name and date utilities.
|
data/VERSION.yml
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/chess_icu.rb
CHANGED
@@ -6,4 +6,4 @@ chess_icu_files.concat %w{player result team tournament}
|
|
6
6
|
chess_icu_files.concat %w{fcsv krause}.map{ |f| "tournament_#{f}"}
|
7
7
|
|
8
8
|
dir = File.dirname(__FILE__)
|
9
|
-
chess_icu_files.each { |file| require "#{dir}/#{file}" }
|
9
|
+
chess_icu_files.each { |file| require "#{dir}/chess_icu/#{file}" }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sanichi-chess_icu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Orr
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-09-02 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -32,21 +32,21 @@ extra_rdoc_files:
|
|
32
32
|
- README.rdoc
|
33
33
|
files:
|
34
34
|
- .gitignore
|
35
|
-
- CHANGELOG
|
35
|
+
- CHANGELOG.rdoc
|
36
36
|
- LICENCE
|
37
37
|
- README.rdoc
|
38
38
|
- Rakefile
|
39
39
|
- VERSION.yml
|
40
40
|
- lib/chess_icu.rb
|
41
|
-
- lib/federation.rb
|
42
|
-
- lib/name.rb
|
43
|
-
- lib/player.rb
|
44
|
-
- lib/result.rb
|
45
|
-
- lib/team.rb
|
46
|
-
- lib/tournament.rb
|
47
|
-
- lib/tournament_fcsv.rb
|
48
|
-
- lib/tournament_krause.rb
|
49
|
-
- lib/util.rb
|
41
|
+
- lib/chess_icu/federation.rb
|
42
|
+
- lib/chess_icu/name.rb
|
43
|
+
- lib/chess_icu/player.rb
|
44
|
+
- lib/chess_icu/result.rb
|
45
|
+
- lib/chess_icu/team.rb
|
46
|
+
- lib/chess_icu/tournament.rb
|
47
|
+
- lib/chess_icu/tournament_fcsv.rb
|
48
|
+
- lib/chess_icu/tournament_krause.rb
|
49
|
+
- lib/chess_icu/util.rb
|
50
50
|
- spec/federation_spec.rb
|
51
51
|
- spec/name_spec.rb
|
52
52
|
- spec/player_spec.rb
|
@@ -59,7 +59,6 @@ files:
|
|
59
59
|
- spec/util_spec.rb
|
60
60
|
has_rdoc: true
|
61
61
|
homepage: http://github.com/sanichi/chess_icu
|
62
|
-
licenses:
|
63
62
|
post_install_message:
|
64
63
|
rdoc_options:
|
65
64
|
- --charset=UTF-8
|
@@ -80,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
79
|
requirements: []
|
81
80
|
|
82
81
|
rubyforge_project:
|
83
|
-
rubygems_version: 1.
|
82
|
+
rubygems_version: 1.2.0
|
84
83
|
signing_key:
|
85
84
|
specification_version: 2
|
86
85
|
summary: For parsing files of chess tournament data into ruby classes.
|