-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathintegration.gemspec
More file actions
22 lines (21 loc) · 927 Bytes
/
integration.gemspec
File metadata and controls
22 lines (21 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require "integration"
Gem::Specification.new do |s|
s.name = "integration"
s.version = Integration::VERSION
s.authors = ["Claudio Bustos","Ben Gimpert"]
s.description = "Numerical integration for Ruby, with a simple interface"
s.email = ["clbustos@gmail.com", "No Email"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features,benchmark}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.summary = "A suite for integration in Ruby"
s.add_runtime_dependency 'text-table', '~>1.2'
s.add_runtime_dependency 'rb-gsl', '~>1.2'
s.add_development_dependency 'rake', '~>10'
s.add_development_dependency 'bundler', '~>1.3'
s.add_development_dependency 'rspec', '~>2.0'
end