-
Notifications
You must be signed in to change notification settings - Fork 0
/
bioruby-phyloxml.gemspec
36 lines (30 loc) · 1.51 KB
/
bioruby-phyloxml.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bio-phyloxml/version'
Gem::Specification.new do |spec|
spec.name = "bioruby-phyloxml"
spec.version = Bio::PhyloXML::VERSION
spec.authors = [ "Diana Jaunzeikare", "Clayton Wheeler",
"BioRuby project" ]
spec.email = [ "staff@bioruby.org" ]
spec.summary = %q{PhyloXML plugin for BioRuby}
spec.description = %q{Provides PhyloXML support for BioRuby. This bioruby-phyloxml gem replaces old unmaintained bio-phyloxml gem.}
spec.homepage = "http://github.com/bioruby/bioruby-phyloxml"
spec.license = "Ruby"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.extra_rdoc_files = [ "README.md",
"COPYING", "COPYING.ja", "BSDL", "LGPL", "GPL",
"doc/Tutorial.rd" ]
spec.rdoc_options << '--main' << 'README.md'
spec.rdoc_options << '--title' << 'Bio::PhyloXML API documentation'
spec.rdoc_options << '--line-numbers'
spec.add_runtime_dependency "bio", ">= 1.5.0"
spec.add_runtime_dependency "libxml-ruby", "~> 2.8"
spec.add_development_dependency "bundler", "~> 1.10"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rdoc", "~> 4"
end