treetagger-ruby 0.0.1.prealpha

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,6 @@
1
+ --private
2
+ --protected
3
+ --title 'TreeTagger - Ruby based Wrapper for the TreeTagger by Helmut Schmid'
4
+ -
5
+ CHANGELOG.rdoc
6
+ LICENSE.rdoc
@@ -0,0 +1,20 @@
1
+ == COMPLETED
2
+ === 0.0.1.prealpha
3
+ Created the structure for this project, added documentation and a public repo.
4
+
5
+
6
+ == PLANNED
7
+ === 0.0.1
8
+
9
+ === 0.1.0
10
+
11
+ === 0.2.0
12
+ === 0.3.0
13
+ === 0.4.0
14
+ === 0.5.0
15
+ === 0.6.0
16
+ === 0.7.0
17
+ === 0.8.0
18
+ === 0.9.0
19
+ === 1.0.0
20
+
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2010, 2011 Andrei Beliankou
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
@@ -0,0 +1 @@
1
+ The Ruby based wrapper for the TreeTagger by Helmut Schmid.
@@ -0,0 +1,6 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ module TreeTagger
4
+ class Tagger
5
+ end # class
6
+ end # module
@@ -0,0 +1,3 @@
1
+ module TreeTagger
2
+ VERSION = '0.0.1.prealpha'
3
+ end
metadata ADDED
@@ -0,0 +1,135 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: treetagger-ruby
3
+ version: !ruby/object:Gem::Version
4
+ hash: 196621262
5
+ prerelease: 6
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ - prealpha
11
+ version: 0.0.1.prealpha
12
+ platform: ruby
13
+ authors:
14
+ - Andrei Beliankou
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2011-12-02 00:00:00 Z
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rdoc
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 33
30
+ segments:
31
+ - 3
32
+ - 9
33
+ - 1
34
+ version: 3.9.1
35
+ type: :development
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: bundler
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 3
46
+ segments:
47
+ - 0
48
+ version: "0"
49
+ type: :development
50
+ version_requirements: *id002
51
+ - !ruby/object:Gem::Dependency
52
+ name: yard
53
+ prerelease: false
54
+ requirement: &id003 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ hash: 3
60
+ segments:
61
+ - 0
62
+ version: "0"
63
+ type: :development
64
+ version_requirements: *id003
65
+ - !ruby/object:Gem::Dependency
66
+ name: rake
67
+ prerelease: false
68
+ requirement: &id004 !ruby/object:Gem::Requirement
69
+ none: false
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ hash: 3
74
+ segments:
75
+ - 0
76
+ version: "0"
77
+ type: :development
78
+ version_requirements: *id004
79
+ description: This package contains a simple wrapper for the TreeTagger, a POS tagger based on decision trees and developed by Helmut Schmid at IMS in Stuttgart, Germany. You should have the TreeTagger with all library files installed on your machine in order to use this wrapper.
80
+ email: a.belenkow@uni-trier.de
81
+ executables: []
82
+
83
+ extensions: []
84
+
85
+ extra_rdoc_files:
86
+ - README.rdoc
87
+ - LICENCE.rdoc
88
+ - CHANGELOG.rdoc
89
+ files:
90
+ - lib/treetagger/tagger.rb
91
+ - lib/treetagger/version.rb
92
+ - README.rdoc
93
+ - LICENCE.rdoc
94
+ - CHANGELOG.rdoc
95
+ - .yardopts
96
+ homepage: http://www.uni-trier.de/index.php?id=34451
97
+ licenses: []
98
+
99
+ post_install_message:
100
+ rdoc_options:
101
+ - -m
102
+ - README.rdoc
103
+ require_paths:
104
+ - lib
105
+ required_ruby_version: !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ hash: 57
111
+ segments:
112
+ - 1
113
+ - 8
114
+ - 7
115
+ version: 1.8.7
116
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
+ none: false
118
+ requirements:
119
+ - - ">"
120
+ - !ruby/object:Gem::Version
121
+ hash: 25
122
+ segments:
123
+ - 1
124
+ - 3
125
+ - 1
126
+ version: 1.3.1
127
+ requirements: []
128
+
129
+ rubyforge_project:
130
+ rubygems_version: 1.8.10
131
+ signing_key:
132
+ specification_version: 3
133
+ summary: A wrapper for the TreeTagger by Helmut Schmid.
134
+ test_files: []
135
+