romanbsd / rb-gsl

A git-svn mirror of rb-gsl with my changes, namely NMF support

This URL has Read+Write access

Roman Shterenzon (author)
Wed Oct 28 08:21:28 -0700 2009
commit  085d1d5940cf21546c3604d6b6580effe2ca5392
tree    ff39c30ccf7ae6aae043c8789327eaff92eeb0d8
parent  399e98479650ddef8b15ccac237df40c64db0108 parent  88283b90edd58ea2b4add7ca7e9c95f6ea9f34c4
rb-gsl / rb-gsl.gemspec
100644 38 lines (32 sloc) 1.107 kb
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
29
30
31
32
33
34
35
36
37
38
Gem::Specification.new do |s|
  # Basics
  s.name = 'gsl'
  # GitHub uses the version in order to decide whenever to rebuild
  s.version = '1.12.90.2'
  s.summary = 'Ruby interface to GSL'
  s.description = 'RubyGSL is a Ruby interface to the GNU Scientific Library, for numerical computing with Ruby'
  s.required_ruby_version = '>= 1.8.1'
  s.requirements << 'GSL (http://www.gnu.org/software/gsl/)'
  s.add_dependency('narray', '>= 0.5.9')
 
  # About
  s.authors = ['Yoshiki Tsunesada', 'David MacMahon']
  s.email = 'y-tsunesada@mm.em-net.ne.jp'
  s.homepage = 'http://rb-gsl.rubyforge.org/'
  s.rubyforge_project = 'rb-gsl'
 
  # Files, Libraries, and Extensions
  s.files = Dir['README.rdoc', 'VERSION', 'Rakefile', 'ext/*',
    'lib/**/*', 'include/*']
  s.require_paths = ['lib', 'lib/gsl', 'lib/ool', 'ext']
  #s.autorequire = nil
  #s.bindir = 'bin'
  #s.executables = []
  #s.default_executable = nil
 
  # C compilation
  s.extensions = %w[ ext/extconf.rb ]
 
  # Documentation TODO
  #s.rdoc_options = []
  #s.has_rdoc = false
  #s.extra_rdoc_files = []
 
  # Testing TODO
  #s.test_files = []
end