icu_tournament 1.0.11 → 1.0.12

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -12,7 +12,7 @@ The gem is hosted on gemcutter only:
12
12
  For handling SwissPerfect files the _dbf_, _inifile_ and _rubyzip_ gems are required.
13
13
  For Ruby prior to version 1.9 the _fastercsv_ gem is needed to handle CSV files.
14
14
 
15
- Tested with ruby 1.8.7, 1.9.1, 1.9.2.
15
+ Tested with ruby 1.8.7, 1.9.2.
16
16
 
17
17
 
18
18
  == Usage
@@ -64,7 +64,7 @@ Note that federations that don't match 3 letters are always silently skipped.
64
64
 
65
65
  Because the data is in three parts, some of which are in a legacy binary format, serialization to this format is
66
66
  not supported. Instead, a method is provided to serialize any tournament type into the text export format of
67
- <em>SwissPerfect</em>, an example of which is shown below.
67
+ erfect, an example of which is shown below.
68
68
 
69
69
  No Name Loc Id Total 1 2 3
70
70
 
@@ -1,5 +1,5 @@
1
1
  module ICU
2
2
  class Tournament
3
- VERSION = "1.0.11"
3
+ VERSION = "1.0.12"
4
4
  end
5
5
  end
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  require 'rubygems'
2
- require 'spec'
2
+ require 'rspec'
3
3
  require File.expand_path(File.dirname(__FILE__) + '/../lib/icu_tournament')
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 11
9
- version: 1.0.11
8
+ - 12
9
+ version: 1.0.12
10
10
  platform: ruby
11
11
  authors:
12
12
  - Mark Orr
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-09-12 00:00:00 +01:00
17
+ date: 2010-10-14 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -86,8 +86,10 @@ dependencies:
86
86
  - - ">="
87
87
  - !ruby/object:Gem::Version
88
88
  segments:
89
+ - 2
90
+ - 0
89
91
  - 0
90
- version: "0"
92
+ version: 2.0.0
91
93
  type: :development
92
94
  version_requirements: *id005
93
95
  description: Convert files of chess tournament data in different formats to ruby classes and vice-versa.