-
Notifications
You must be signed in to change notification settings - Fork 1
/
mspire-simulator.gemspec
49 lines (44 loc) · 1.48 KB
/
mspire-simulator.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
40
41
42
43
44
45
46
47
48
49
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mspire/simulator/version'
prep = lambda {|arg| arg.split(" ",2).compact }
Gem::Specification.new do |spec|
spec.name = "mspire-simulator"
spec.version = Mspire::Simulator::VERSION
spec.authors = ["Andrew Noyce, John Prince"]
spec.email = ["[email protected]"]
spec.description = %q{Simulates MS1 runs given amino acid FASTA files. Outputs an MZML file. Can simulate specific data if given an MZML file containing a single isolated peptide peak.}
spec.summary = %q{Simulates MS1 runs given amino acid FASTA files. Outputs an MZML file.}
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.8.7",
"rubyvis = 0.5.2",
"nokogiri ~> 1.5.9",
"ffi = 1.0.11",
"ffi-inliner = 0.2.4",
"fftw3 = 0.3",
"distribution = 0.7.0",
"pony = 1.4",
"obo = 0.1.3",
"trollop = 2.0",
"MS-fragmenter = 0.0.2",
"sqlite3 = 1.3.6",
].each do |arg|
spec.add_dependency *prep.call(arg)
end
[
"bundler ~> 1.3",
"rake",
"rspec ~> 2.13.0",
"rdoc ~> 3.12",
"simplecov",
].each do |arg|
spec.add_development_dependency *prep.call(arg)
end
end