-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmspire-envelope_extractor.gemspec
39 lines (34 loc) · 1.19 KB
/
mspire-envelope_extractor.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 'mspire/envelope_extractor/version'
Gem::Specification.new do |spec|
spec.name = "mspire-envelope_extractor"
spec.version = Mspire::EnvelopeExtractor::VERSION
spec.authors = ["John T. Prince"]
spec.email = ["jtprince@gmail.com"]
spec.summary = %q{Extracts isotope envelopes given an mzidentml (.mzid) file}
spec.description = %q{Extracts isotope envelopes from mzML files given an mzidentml (.mzid) file}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
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.7"],
["nokogiri", "~> 1.6.2"],
["bsearch", ">= 1.5.0"],
].each do |args|
spec.add_dependency(*args)
end
[
["bundler", "~> 1.6.2"],
["rake"],
["rspec", "~> 2.14.1"],
["rdoc", "~> 4.1.0"],
["simplecov", "~> 0.8.2"],
].each do |args|
spec.add_development_dependency(*args)
end
end