-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathruby-ucsc-api.gemspec
More file actions
29 lines (21 loc) · 884 Bytes
/
ruby-ucsc-api.gemspec
File metadata and controls
29 lines (21 loc) · 884 Bytes
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
Gem::Specification.new do |s|
s.name = "ruby-ucsc-api"
s.version = "0.9"
s.authors = ["Jan Aerts"]
s.email = "jan.aerts@gmail.com"
s.homepage = "http://github.com/jandot/ruby-ucsc-api"
s.summary = "API to UCSC databases"
s.description = "ruby-ucsc-api provides a ruby API to the UCSC databases (http://genome.ucsc.edu)"
s.has_rdoc = true
s.rdoc_options = ["--exclude ."]
s.platform = Gem::Platform::RUBY
s.files = ["bin/ucsc","lib/ucsc/db_connection.rb","lib/ucsc/hg18/activerecord.rb","lib/ucsc/hg18/slice.rb","lib/ucsc.rb","samples/ranges.txt","samples/tryout.rb","test/unit/test_activerecord.rb"]
s.test_files = ["test/unit/test_activerecord.rb"]
s.add_dependency("bio", [">=1"])
s.add_dependency("activerecord")
s.require_path = "lib"
s.autorequire = "ucsc"
s.bindir = "bin"
s.executables = ["ucsc"]
s.default_executable = "ucsc"
end