-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathrb-libsvm.gemspec
27 lines (22 loc) · 1.05 KB
/
rb-libsvm.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'libsvm/version'
Gem::Specification.new do |s|
s.name = "rb-libsvm"
s.version = Libsvm::VERSION
s.authors = ["C. Florian Ebeling", "Rimas Silkaitis"]
s.email = ["florian.ebeling@gmail.com", "neovintage@gmail.com"]
s.homepage = "https://github.com/febeling/rb-libsvm"
s.summary = %q{Ruby bindings for LIBSVM}
s.description = %q{Self-contained LIBSVM package for Ruby (that doesn't use SWIG). LIBSVM is a popular implementation of SVM, a machine learning classifier.}
s.required_ruby_version = '>= 1.8.7'
s.licenses = ['MIT']
s.rubyforge_project = "rb-libsvm"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency('rake-compiler')
s.add_development_dependency('rspec', '>= 3.0.0')
s.extensions << 'ext/libsvm/extconf.rb'
end