go-rank 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -0
- data/License.txt +0 -0
- data/Manifest.txt +0 -0
- data/README.txt +0 -0
- data/Rakefile +0 -0
- data/lib/gorank/gorank.rb +1 -1
- data/lib/gorank/version.rb +1 -1
- data/lib/gorank.rb +0 -0
- data/scripts/txt2html +0 -0
- data/setup.rb +0 -0
- data/test/test_gorank.rb +0 -0
- data/test/test_helper.rb +0 -0
- data/website/index.html +0 -0
- data/website/index.txt +0 -0
- data/website/javascripts/rounded_corners_lite.inc.js +0 -0
- data/website/stylesheets/screen.css +0 -0
- data/website/template.rhtml +0 -0
- metadata +55 -39
data/History.txt
CHANGED
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
|
46
|
+
raise ArgumentError,"must be :kyu, :dan" unless [:kyu,:dan].include?(kd)
|
47
47
|
@num = num
|
48
48
|
@kd = kd
|
49
49
|
end
|
data/lib/gorank/version.rb
CHANGED
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
|
data/website/template.rhtml
CHANGED
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.
|
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
|
-
|
50
|
-
-
|
51
|
-
|
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
|
-
|
56
|
-
-
|
57
|
-
|
58
|
-
|
59
|
-
-
|
60
|
-
-
|
61
|
-
|
62
|
-
|
63
|
-
|
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
|
-
|
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
|