go-rank 0.0.2 → 0.0.3

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.
data/History.txt CHANGED
@@ -1,4 +1,10 @@
1
+ == 0.0.3 2008-12-30
2
+
3
+ * 1 bug fix
4
+ * spelling error in 'ArgumentError'
5
+
1
6
  == 0.0.2 2007-07-09
7
+
2
8
  * 1 major enhancement:
3
9
  * method GoRank.ranks added
4
10
  * 1 bug fixes
data/License.txt CHANGED
File without changes
data/Manifest.txt CHANGED
File without changes
data/README.txt CHANGED
File without changes
data/Rakefile CHANGED
File without changes
data/lib/gorank/gorank.rb CHANGED
@@ -43,7 +43,7 @@ class GoRank
43
43
 
44
44
  # valid values for kd: :kyu, :dan
45
45
  def initialize(num, kd)
46
- raise ArgumentErrror,"must be :kyu, :dan" unless [:kyu,:dan].include?(kd)
46
+ raise ArgumentError,"must be :kyu, :dan" unless [:kyu,:dan].include?(kd)
47
47
  @num = num
48
48
  @kd = kd
49
49
  end
@@ -2,7 +2,7 @@ module Gorank #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/lib/gorank.rb CHANGED
File without changes
data/scripts/txt2html CHANGED
File without changes
data/setup.rb CHANGED
File without changes
data/test/test_gorank.rb CHANGED
File without changes
data/test/test_helper.rb CHANGED
File without changes
data/website/index.html CHANGED
File without changes
data/website/index.txt CHANGED
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,33 +1,39 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.4
3
- specification_version: 1
4
2
  name: go-rank
5
3
  version: !ruby/object:Gem::Version
6
- version: 0.0.2
7
- date: 2007-07-25 00:00:00 +02:00
8
- summary: A class of ranks in the board game Go
9
- require_paths:
10
- - lib
11
- email: thopre@gmail.com
12
- homepage: http://go-rank.rubyforge.org
13
- rubyforge_project: go-rank
14
- description: A class of ranks in the board game Go
15
- autorequire:
16
- default_executable:
17
- bindir: bin
18
- has_rdoc: true
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- - - ">"
22
- - !ruby/object:Gem::Version
23
- version: 0.0.0
24
- version:
4
+ version: 0.0.3
25
5
  platform: ruby
26
- signing_key:
27
- cert_chain:
28
- post_install_message:
29
6
  authors:
30
7
  - Thomas Preymesser
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-12-30 00:00:00 +01:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hoe
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.8.2
24
+ version:
25
+ description: A class of ranks in the board game Go
26
+ email: thopre@gmail.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - History.txt
33
+ - License.txt
34
+ - Manifest.txt
35
+ - README.txt
36
+ - website/index.txt
31
37
  files:
32
38
  - History.txt
33
39
  - License.txt
@@ -46,23 +52,33 @@ files:
46
52
  - website/javascripts/rounded_corners_lite.inc.js
47
53
  - website/stylesheets/screen.css
48
54
  - website/template.rhtml
49
- test_files:
50
- - test/test_helper.rb
51
- - test/test_gorank.rb
55
+ has_rdoc: true
56
+ homepage: http://go-rank.rubyforge.org
57
+ post_install_message:
52
58
  rdoc_options:
53
59
  - --main
54
60
  - README.txt
55
- extra_rdoc_files:
56
- - History.txt
57
- - License.txt
58
- - Manifest.txt
59
- - README.txt
60
- - website/index.txt
61
- executables: []
62
-
63
- extensions: []
64
-
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: "0"
68
+ version:
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: "0"
74
+ version:
65
75
  requirements: []
66
76
 
67
- dependencies: []
68
-
77
+ rubyforge_project: go-rank
78
+ rubygems_version: 1.3.1
79
+ signing_key:
80
+ specification_version: 2
81
+ summary: A class of ranks in the board game Go
82
+ test_files:
83
+ - test/test_gorank.rb
84
+ - test/test_helper.rb