Sha256: d77d716cd122ef8bda55fed6062ae1960897f9abb76f04c77fa2189bab57e9cc
Contents?: true
Size: 1.52 KB
Versions: 1
Compression:
Stored size: 1.52 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) open("ext/numo/narray/numo/narray.h") do |f| f.each_line do |l| if /NARRAY_VERSION "([\d.]+)"/ =~ l NARRAY_VERSION = $1 break end end end Gem::Specification.new do |spec| spec.name = "numo-narray" spec.version = NARRAY_VERSION spec.authors = ["Masahiro TANAKA"] spec.email = ["masa16.tanaka@gmail.com"] spec.description = %q{Numo::NArray - New NArray class library in Ruby/Numo.} spec.summary = %q{alpha release of Numo::NArray - New NArray class library in Ruby/Numo (NUmerical MOdule)} spec.homepage = "https://github.com/ruby-numo/numo-narray" spec.license = "BSD-3-Clause" spec.required_ruby_version = '~> 2.1' spec.files = `git ls-files Gemfile README.md Rakefile lib ext numo-narray.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/narray/extconf.rb"] if RUBY_VERSION < '2.3' # Ruby 2.2.x spec.add_development_dependency "bundler", "~> 1.3" else spec.add_development_dependency "bundler", "~> 2.0" end if RUBY_VERSION < '2.2' # Ruby 2.1.x spec.add_development_dependency "rake", "<= 10.5", ">=10.1.1" else spec.add_development_dependency "rake", "~> 10.0" end spec.add_development_dependency "test-unit", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
numo-narray-0.9.1.6 | numo-narray.gemspec |