treebank 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +1 -0
- data/lib/treebank.rb +2 -0
- metadata +13 -21
data/README
CHANGED
data/lib/treebank.rb
CHANGED
@@ -18,6 +18,8 @@
|
|
18
18
|
# Treebank is the namespace that contains all tree-related functions.
|
19
19
|
module Treebank
|
20
20
|
|
21
|
+
VERSION = "1.1.0"
|
22
|
+
|
21
23
|
# An enumerable list of tokens in a string representation of a tree
|
22
24
|
#
|
23
25
|
# This class provides a way of enumerating over a source to produce
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
!ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
rubygems_version: 0.8.11
|
3
3
|
specification_version: 1
|
4
4
|
name: treebank
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.
|
7
|
-
date: 2006-
|
6
|
+
version: 1.1.0
|
7
|
+
date: 2006-12-05 00:00:00 -08:00
|
8
8
|
summary: Treebank implements support for ordered n-ary branching tree structures
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
11
|
email: billmcn@gmail.com
|
12
|
-
homepage: http://rubyforge.org/
|
13
|
-
rubyforge_project:
|
12
|
+
homepage: http://treebank.rubyforge.org/
|
13
|
+
rubyforge_project: treebank
|
14
14
|
description: This module implements ordered n-ary branching tree structures. It includes support for breadth- and depth- first iteration, and serialization to and from a bracketed tree string.
|
15
15
|
autorequire:
|
16
16
|
default_executable:
|
@@ -35,12 +35,12 @@ files:
|
|
35
35
|
test_files:
|
36
36
|
- test/test_treebank.rb
|
37
37
|
rdoc_options:
|
38
|
-
- --title
|
39
|
-
- Treebank -- Ruby Tree
|
40
|
-
- --main
|
41
|
-
- README
|
42
|
-
- --line-numbers
|
43
|
-
- --inline-source
|
38
|
+
- - --title
|
39
|
+
- Treebank -- Ruby Tree
|
40
|
+
- --main
|
41
|
+
- README
|
42
|
+
- --line-numbers
|
43
|
+
- --inline-source
|
44
44
|
extra_rdoc_files:
|
45
45
|
- README
|
46
46
|
executables: []
|
@@ -49,13 +49,5 @@ extensions: []
|
|
49
49
|
|
50
50
|
requirements: []
|
51
51
|
|
52
|
-
dependencies:
|
53
|
-
|
54
|
-
name: fsa
|
55
|
-
version_requirement:
|
56
|
-
version_requirements: !ruby/object:Gem::Version::Requirement
|
57
|
-
requirements:
|
58
|
-
- - ">"
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
version: 0.0.0
|
61
|
-
version:
|
52
|
+
dependencies: []
|
53
|
+
|