Sha256: b075cb217d85d211e2d499c51cf9aaf57769347fd2603afc6553b8372076f39a
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
# -*- encoding: utf-8 -*- require File.dirname(__FILE__) + '/lib/gsl/version' require 'date' Gem::Specification.new do |s| s.name = 'gsl' s.version = GSL::RUBY_GSL_VERSION s.date = Date.today.to_s s.require_paths = %w(lib) s.authors = ['Yoshiki Tsunesada', 'David MacMahon', 'Jens Wille', 'Daniel Mendler'] s.summary = 'Ruby interface to the GNU Scientific Library' s.description = 'Ruby/GSL is a Ruby interface to the GNU Scientific Library, for numerical computing with Ruby' s.email = 'mail@daniel-mendler.de' s.extensions = Dir['ext/**/extconf.rb'] s.extra_rdoc_files = Dir['**/*.rdoc'] s.files = `git ls-files`.split("\n") s.homepage = 'http://github.com/SciRuby/rb-gsl' s.licenses = ['GPL-2.0'] s.rdoc_options = ['--title', "Ruby/GSL (#{GSL::RUBY_GSL_VERSION})", '--charset', 'UTF-8', '--line-numbers', '--all', '--main', 'index.rdoc', '--root', 'rdoc'] s.required_ruby_version = '>= 1.9.3' s.requirements = ['GSL (http://www.gnu.org/software/gsl/)'] s.post_install_message = "#{s.name} can be installed with or without narray support. Please install narray before and reinstall #{s.name} if it is missing." s.add_development_dependency 'rake-compiler', '>= 0' s.add_development_dependency 'rake', '>= 0' s.add_development_dependency 'test-unit', '>= 0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gsl-1.16.0.6 | gsl.gemspec |