-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiadem.gemspec
39 lines (34 loc) · 1.21 KB
/
diadem.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'diadem/version'
Gem::Specification.new do |spec|
spec.name = "diadem"
spec.version = Diadem::VERSION
spec.authors = ["John Prince"]
spec.email = ["[email protected]"]
spec.description = %q{Dynamic isotope analysis for mass spectrometry isotope experiments. Calculates and visualizes varying isotope ratios and allows the user fine control over incorporation rates.}
spec.summary = %q{Dynamic isotope analysis for mass spectrometry isotope experiments}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files`.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"]
[
["mspire", "~> 0.10.3"],
["fftw3", "~> 0.3"],
].each do |args|
spec.add_dependency(*args)
end
[
["bundler", "~> 1.3"],
["rake"],
["rspec", "~> 2.13.0"],
["rdoc", "~> 3.12"],
["simplecov"],
["gnuplot", "~> 2.6.2"],
].each do |args|
spec.add_development_dependency(*args)
end
end