eluka 0.1.0 → 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/Rakefile +2 -2
- data/VERSION +1 -1
- data/eluka.gemspec +130 -0
- data/ext/libsvm/Makefile +1 -1
- metadata +6 -6
- data/ext/libsvm/svm.o +0 -0
data/Rakefile
CHANGED
@@ -16,8 +16,8 @@ Jeweler::Tasks.new do |gem|
|
|
16
16
|
gem.name = "eluka"
|
17
17
|
gem.homepage = "http://github.com/arrac/eluka"
|
18
18
|
gem.license = "MIT"
|
19
|
-
gem.summary = %Q{
|
20
|
-
gem.description = %Q{
|
19
|
+
gem.summary = %Q{A LibSVM based support vector machine classifier for Ruby.}
|
20
|
+
gem.description = %Q{A LibSVM based support vector machine classifier for Ruby.}
|
21
21
|
gem.email = "aditya.rachakonda@gmail.com"
|
22
22
|
gem.authors = ["Aditya Rachakonda"]
|
23
23
|
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/eluka.gemspec
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{eluka}
|
8
|
+
s.version = "0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Aditya Rachakonda"]
|
12
|
+
s.date = %q{2010-12-17}
|
13
|
+
s.description = %q{A LibSVM based support vector machine classifier for Ruby.}
|
14
|
+
s.email = %q{aditya.rachakonda@gmail.com}
|
15
|
+
s.extensions = ["ext/libsvm/extconf.rb", "ext/libsvm"]
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE.txt",
|
18
|
+
"README.rdoc"
|
19
|
+
]
|
20
|
+
s.files = [
|
21
|
+
".document",
|
22
|
+
"DOCUMENTATION_STANDARDS",
|
23
|
+
"Gemfile",
|
24
|
+
"Gemfile.lock",
|
25
|
+
"LICENSE.txt",
|
26
|
+
"README.rdoc",
|
27
|
+
"Rakefile",
|
28
|
+
"VERSION",
|
29
|
+
"eluka.gemspec",
|
30
|
+
"examples/example.rb",
|
31
|
+
"ext/libsvm/COPYRIGHT",
|
32
|
+
"ext/libsvm/FAQ.html",
|
33
|
+
"ext/libsvm/Makefile",
|
34
|
+
"ext/libsvm/Makefile.win",
|
35
|
+
"ext/libsvm/README",
|
36
|
+
"ext/libsvm/extconf.rb",
|
37
|
+
"ext/libsvm/heart_scale",
|
38
|
+
"ext/libsvm/java/Makefile",
|
39
|
+
"ext/libsvm/java/libsvm.jar",
|
40
|
+
"ext/libsvm/java/libsvm/svm.java",
|
41
|
+
"ext/libsvm/java/libsvm/svm.m4",
|
42
|
+
"ext/libsvm/java/libsvm/svm_model.java",
|
43
|
+
"ext/libsvm/java/libsvm/svm_node.java",
|
44
|
+
"ext/libsvm/java/libsvm/svm_parameter.java",
|
45
|
+
"ext/libsvm/java/libsvm/svm_print_interface.java",
|
46
|
+
"ext/libsvm/java/libsvm/svm_problem.java",
|
47
|
+
"ext/libsvm/java/svm_predict.java",
|
48
|
+
"ext/libsvm/java/svm_scale.java",
|
49
|
+
"ext/libsvm/java/svm_toy.java",
|
50
|
+
"ext/libsvm/java/svm_train.java",
|
51
|
+
"ext/libsvm/java/test_applet.html",
|
52
|
+
"ext/libsvm/python/Makefile",
|
53
|
+
"ext/libsvm/python/README",
|
54
|
+
"ext/libsvm/python/svm.py",
|
55
|
+
"ext/libsvm/python/svmutil.py",
|
56
|
+
"ext/libsvm/svm-predict.c",
|
57
|
+
"ext/libsvm/svm-scale.c",
|
58
|
+
"ext/libsvm/svm-toy/gtk/Makefile",
|
59
|
+
"ext/libsvm/svm-toy/gtk/callbacks.cpp",
|
60
|
+
"ext/libsvm/svm-toy/gtk/callbacks.h",
|
61
|
+
"ext/libsvm/svm-toy/gtk/interface.c",
|
62
|
+
"ext/libsvm/svm-toy/gtk/interface.h",
|
63
|
+
"ext/libsvm/svm-toy/gtk/main.c",
|
64
|
+
"ext/libsvm/svm-toy/gtk/svm-toy.glade",
|
65
|
+
"ext/libsvm/svm-toy/qt/Makefile",
|
66
|
+
"ext/libsvm/svm-toy/qt/svm-toy.cpp",
|
67
|
+
"ext/libsvm/svm-toy/windows/svm-toy.cpp",
|
68
|
+
"ext/libsvm/svm-train.c",
|
69
|
+
"ext/libsvm/svm.cpp",
|
70
|
+
"ext/libsvm/svm.def",
|
71
|
+
"ext/libsvm/svm.h",
|
72
|
+
"ext/libsvm/tools/README",
|
73
|
+
"ext/libsvm/tools/checkdata.py",
|
74
|
+
"ext/libsvm/tools/easy.py",
|
75
|
+
"ext/libsvm/tools/grid.py",
|
76
|
+
"ext/libsvm/tools/subset.py",
|
77
|
+
"ext/libsvm/windows/libsvm.dll",
|
78
|
+
"ext/libsvm/windows/svm-predict.exe",
|
79
|
+
"ext/libsvm/windows/svm-scale.exe",
|
80
|
+
"ext/libsvm/windows/svm-toy.exe",
|
81
|
+
"ext/libsvm/windows/svm-train.exe",
|
82
|
+
"lib/eluka.rb",
|
83
|
+
"lib/eluka/bijection.rb",
|
84
|
+
"lib/eluka/data_point.rb",
|
85
|
+
"lib/eluka/document.rb",
|
86
|
+
"lib/eluka/feature_vector.rb",
|
87
|
+
"lib/eluka/features.rb",
|
88
|
+
"lib/eluka/model.rb",
|
89
|
+
"lib/fselect.rb",
|
90
|
+
"lib/grid.rb",
|
91
|
+
"test/helper.rb",
|
92
|
+
"test/test_eluka.rb"
|
93
|
+
]
|
94
|
+
s.homepage = %q{http://github.com/arrac/eluka}
|
95
|
+
s.licenses = ["MIT"]
|
96
|
+
s.require_paths = ["lib"]
|
97
|
+
s.rubygems_version = %q{1.3.7}
|
98
|
+
s.summary = %q{A LibSVM based support vector machine classifier for Ruby.}
|
99
|
+
s.test_files = [
|
100
|
+
"examples/example.rb",
|
101
|
+
"test/helper.rb",
|
102
|
+
"test/test_eluka.rb"
|
103
|
+
]
|
104
|
+
|
105
|
+
if s.respond_to? :specification_version then
|
106
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
107
|
+
s.specification_version = 3
|
108
|
+
|
109
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
110
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
111
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
112
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.5.1"])
|
113
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
114
|
+
s.add_runtime_dependency(%q<ferret>, [">= 0"])
|
115
|
+
else
|
116
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
117
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
118
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
|
119
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
120
|
+
s.add_dependency(%q<ferret>, [">= 0"])
|
121
|
+
end
|
122
|
+
else
|
123
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
124
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
125
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
|
126
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
127
|
+
s.add_dependency(%q<ferret>, [">= 0"])
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
data/ext/libsvm/Makefile
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eluka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Aditya Rachakonda
|
@@ -92,7 +92,7 @@ dependencies:
|
|
92
92
|
name: ferret
|
93
93
|
prerelease: false
|
94
94
|
version_requirements: *id005
|
95
|
-
description:
|
95
|
+
description: A LibSVM based support vector machine classifier for Ruby.
|
96
96
|
email: aditya.rachakonda@gmail.com
|
97
97
|
executables: []
|
98
98
|
|
@@ -110,6 +110,7 @@ files:
|
|
110
110
|
- README.rdoc
|
111
111
|
- Rakefile
|
112
112
|
- VERSION
|
113
|
+
- eluka.gemspec
|
113
114
|
- examples/example.rb
|
114
115
|
- ext/libsvm/COPYRIGHT
|
115
116
|
- ext/libsvm/FAQ.html
|
@@ -152,7 +153,6 @@ files:
|
|
152
153
|
- ext/libsvm/svm.cpp
|
153
154
|
- ext/libsvm/svm.def
|
154
155
|
- ext/libsvm/svm.h
|
155
|
-
- ext/libsvm/svm.o
|
156
156
|
- ext/libsvm/tools/README
|
157
157
|
- ext/libsvm/tools/checkdata.py
|
158
158
|
- ext/libsvm/tools/easy.py
|
@@ -207,7 +207,7 @@ rubyforge_project:
|
|
207
207
|
rubygems_version: 1.3.7
|
208
208
|
signing_key:
|
209
209
|
specification_version: 3
|
210
|
-
summary:
|
210
|
+
summary: A LibSVM based support vector machine classifier for Ruby.
|
211
211
|
test_files:
|
212
212
|
- examples/example.rb
|
213
213
|
- test/helper.rb
|
data/ext/libsvm/svm.o
DELETED
Binary file
|