-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gemspec
25 lines (22 loc) · 997 Bytes
/
.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
# -*- encoding: utf-8 -*-
require 'rubygems' unless Object.const_defined?(:Gem)
$:.push File.dirname(__FILE__) + "/lib"
require 'gsl/version'
Gem::Specification.new do |s|
s.name = "gsl-rb"
s.version = GSL::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Patrick Mahoney"]
s.email = "[email protected]"
s.homepage = "http://github.com/pmahoney/gsl-rb"
s.summary = "A Ruby wrapper around GSL using FFI"
s.description = "Access GSL from Ruby, JRuby, others. with math functions, vector and matrix manipulation."
s.required_rubygems_version = ">= 1.3.6"
s.rdoc_options += ['--quiet', '--title', 'GSL for Ruby via FFI', '--main', 'README.rdoc', '--inline-source']
s.add_dependency 'ffi', '~> 1.0'
s.add_development_dependency 'bacon', '>= 1.1.0'
s.files = Dir.glob(%w[lib/**/*.rb spec/**/*.rb [A-Z]*.{txt,rdoc}])
s.files += %w{Rakefile .gemspec COPYING}
s.extra_rdoc_files = ["README.rdoc", "COPYING"]
s.license = 'MIT'
end