Sha256: da56edc2a3bd153ca79f33b3b2116b7922eb41b71b5e2211c33ea1ac064ebc20
Contents?: true
Size: 1.97 KB
Versions: 1
Compression:
Stored size: 1.97 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'numo/liblinear/version' Gem::Specification.new do |spec| spec.name = 'numo-liblinear' spec.version = Numo::Liblinear::VERSION spec.authors = ['yoshoku'] spec.email = ['yoshoku@outlook.com'] spec.summary = <<~MSG Numo::Liblinear is a Ruby gem binding to the LIBLINEAR library. Numo::Liblinear makes to use the LIBLINEAR functions with dataset represented by Numo::NArray. MSG spec.description = <<~MSG Numo::Liblinear is a Ruby gem binding to the LIBLINEAR library. LIBLINEAR is one of the famous libraries for large-scale regularized linear classification and regression. Numo::Liblinear makes to use the LIBLINEAR functions with dataset represented by Numo::NArray. MSG spec.homepage = 'https://github.com/yoshoku/numo-liblinear' spec.license = 'BSD-3-Clause' # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |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.extensions = ['ext/numo/liblinear/extconf.rb'] spec.metadata = { 'homepage_uri' => 'https://github.com/yoshoku/numo-liblinear', 'source_code_uri' => 'https://github.com/yoshoku/numo-liblinear', 'documentation_uri' => 'https://yoshoku.github.io/numo-liblinear/doc/' } spec.add_runtime_dependency 'numo-narray', '~> 0.9.1' spec.add_development_dependency 'bundler', '~> 2.0' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rake-compiler', '~> 1.0' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
numo-liblinear-0.5.0 | numo-liblinear.gemspec |