Sha256: 6f2837f1b6dcb27c56dabbf1bdcc69815babb636aadb50fab744990ac7ab7cac
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'libsvmloader/version' Gem::Specification.new do |spec| spec.name = 'libsvmloader' spec.version = LibSVMLoader::VERSION spec.authors = ['yoshoku'] spec.email = ['yoshoku@outlook.com'] spec.summary = <<MSG LibSVMLoader loads (and dumps) dataset file with the libsvm file format. MSG spec.description = <<MSG LibSVMLoader is a class that loads (and dumps) dataset file with the libsvm file format. The sample matrix for feature vectors and target vector for labels are represented by the NMatrix format. MSG spec.homepage = 'https://github.com/yoshoku/libsvmloader' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.1' spec.add_runtime_dependency 'nmatrix', '~> 0.2.3' spec.add_development_dependency 'bundler', '~> 1.15' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
libsvmloader-0.1.3 | libsvmloader.gemspec |