Sha256: 9c72de47ac68671b547c58679b37230324422c4a7f366ce5c88c896612758ba6

Contents?: true

Size: 1.34 KB

Versions: 4

Compression:

Stored size: 1.34 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'svmkit/version'

SVMKit::DESCRIPTION = <<MSG
SVMKit is a library for machine learninig in Ruby.
SVMKit implements machine learning algorithms with an interface similar to Scikit-Learn in Python.
However, since SVMKit is an experimental library, there are few machine learning algorithms implemented.
MSG

Gem::Specification.new do |spec|
  spec.name          = 'svmkit'
  spec.version       = SVMKit::VERSION
  spec.authors       = ['yoshoku']
  spec.email         = ['yoshoku@outlook.com']

  spec.summary       = %q{SVMKit is an experimental library of machine learning in Ruby.}
  spec.description   = SVMKit::DESCRIPTION
  spec.homepage      = 'https://github.com/yoshoku/svmkit'
  spec.license       = 'BSD-2-Clause'

  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.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'
  spec.add_development_dependency 'nmatrix', '~> 0.2.3'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
svmkit-0.1.3 svmkit.gemspec
svmkit-0.1.2 svmkit.gemspec
svmkit-0.1.1 svmkit.gemspec
svmkit-0.1.0 svmkit.gemspec