-
Notifications
You must be signed in to change notification settings - Fork 9
/
numo-linalg.gemspec
28 lines (24 loc) · 1.26 KB
/
numo-linalg.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
28
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require_relative "lib/numo/linalg/version"
Gem::Specification.new do |spec|
spec.name = "numo-linalg"
spec.version = Numo::Linalg::VERSION
spec.authors = ["Masahiro TANAKA","Makoto KISHIMOTO"]
spec.email = ["[email protected]"]
spec.description = %q{Ruby/Numo Linear Algebra library with interface to BLAS/LAPACK.}
spec.summary = %q{Ruby/Numo Linear Algebra library with BLAS/LAPACK}
spec.homepage = "https://github.com/ruby-numo/numo-linalg"
spec.license = "BSD-3-Clause"
spec.files = `git ls-files Gemfile README.md Rakefile lib ext numo-linalg.gemspec spec`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.extensions = ["ext/numo/linalg/blas/extconf.rb",
"ext/numo/linalg/lapack/extconf.rb"]
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rake-compiler"
spec.add_development_dependency "rspec"
spec.add_runtime_dependency "numo-narray", ">= 0.9.1.4"
end