markisisme-rtimbl 0.1.1
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/.document +5 -0
- data/.gitignore +6 -0
- data/LICENSE +20 -0
- data/README.rdoc +23 -0
- data/Rakefile +63 -0
- data/VERSION.yml +4 -0
- data/ext/extconf.rb +7 -0
- data/ext/ruby_timbl_wrap.cxx +7684 -0
- data/lib/rtimbl.rb +1 -0
- data/rtimbl.gemspec +49 -0
- data/test/rtimbl_test.rb +7 -0
- data/test/test_helper.rb +10 -0
- metadata +67 -0
data/lib/rtimbl.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'ruby_timbl'
|
data/rtimbl.gemspec
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |s|
|
|
4
|
+
s.name = %q{rtimbl}
|
|
5
|
+
s.version = "0.1.1"
|
|
6
|
+
|
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
|
+
s.authors = ["Mark Shirley"]
|
|
9
|
+
s.date = %q{2009-07-20}
|
|
10
|
+
s.email = %q{markisisme@gmail.com}
|
|
11
|
+
s.extensions = ["ext/extconf.rb"]
|
|
12
|
+
s.extra_rdoc_files = [
|
|
13
|
+
"LICENSE",
|
|
14
|
+
"README.rdoc"
|
|
15
|
+
]
|
|
16
|
+
s.files = [
|
|
17
|
+
".document",
|
|
18
|
+
".gitignore",
|
|
19
|
+
"LICENSE",
|
|
20
|
+
"README.rdoc",
|
|
21
|
+
"Rakefile",
|
|
22
|
+
"VERSION.yml",
|
|
23
|
+
"ext/extconf.rb",
|
|
24
|
+
"ext/ruby_timbl_wrap.cxx",
|
|
25
|
+
"lib/rtimbl.rb",
|
|
26
|
+
"rtimbl.gemspec",
|
|
27
|
+
"test/rtimbl_test.rb",
|
|
28
|
+
"test/test_helper.rb"
|
|
29
|
+
]
|
|
30
|
+
s.homepage = %q{http://github.com/markisisme/rtimbl}
|
|
31
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
32
|
+
s.require_paths = ["lib", "ext"]
|
|
33
|
+
s.rubygems_version = %q{1.3.4}
|
|
34
|
+
s.summary = %q{Ruby wrapper for TiMBL machine-learning library}
|
|
35
|
+
s.test_files = [
|
|
36
|
+
"test/rtimbl_test.rb",
|
|
37
|
+
"test/test_helper.rb"
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
if s.respond_to? :specification_version then
|
|
41
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
42
|
+
s.specification_version = 3
|
|
43
|
+
|
|
44
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
45
|
+
else
|
|
46
|
+
end
|
|
47
|
+
else
|
|
48
|
+
end
|
|
49
|
+
end
|
data/test/rtimbl_test.rb
ADDED
data/test/test_helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: markisisme-rtimbl
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Mark Shirley
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2009-07-20 00:00:00 -07:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description:
|
|
17
|
+
email: markisisme@gmail.com
|
|
18
|
+
executables: []
|
|
19
|
+
|
|
20
|
+
extensions:
|
|
21
|
+
- ext/extconf.rb
|
|
22
|
+
extra_rdoc_files:
|
|
23
|
+
- LICENSE
|
|
24
|
+
- README.rdoc
|
|
25
|
+
files:
|
|
26
|
+
- .document
|
|
27
|
+
- .gitignore
|
|
28
|
+
- LICENSE
|
|
29
|
+
- README.rdoc
|
|
30
|
+
- Rakefile
|
|
31
|
+
- VERSION.yml
|
|
32
|
+
- ext/extconf.rb
|
|
33
|
+
- ext/ruby_timbl_wrap.cxx
|
|
34
|
+
- lib/rtimbl.rb
|
|
35
|
+
- rtimbl.gemspec
|
|
36
|
+
- test/rtimbl_test.rb
|
|
37
|
+
- test/test_helper.rb
|
|
38
|
+
has_rdoc: false
|
|
39
|
+
homepage: http://github.com/markisisme/rtimbl
|
|
40
|
+
post_install_message:
|
|
41
|
+
rdoc_options:
|
|
42
|
+
- --charset=UTF-8
|
|
43
|
+
require_paths:
|
|
44
|
+
- lib
|
|
45
|
+
- ext
|
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
47
|
+
requirements:
|
|
48
|
+
- - ">="
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: "0"
|
|
51
|
+
version:
|
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: "0"
|
|
57
|
+
version:
|
|
58
|
+
requirements: []
|
|
59
|
+
|
|
60
|
+
rubyforge_project:
|
|
61
|
+
rubygems_version: 1.2.0
|
|
62
|
+
signing_key:
|
|
63
|
+
specification_version: 3
|
|
64
|
+
summary: Ruby wrapper for TiMBL machine-learning library
|
|
65
|
+
test_files:
|
|
66
|
+
- test/rtimbl_test.rb
|
|
67
|
+
- test/test_helper.rb
|