summaryrefslogtreecommitdiff
path: root/dataset.gemspec
blob: 99569a9227ef6d73343a59f0c2c10019668c26f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)

Gem::Specification.new do |s|
  s.name        = "opentox-dataset"
  s.version     = File.read("./VERSION")
  s.authors     = ["Christoph Helma"]
  s.email       = ["helma@in-silico.ch"]
  s.homepage    = "http://github.com/opentox/dataset"
  s.summary     = %q{OpenTox Dataset Service}
  s.description = %q{OpenTox Dataset Service}
  s.license     = 'GPL-3'

  s.rubyforge_project = "dataset"

  s.files         = `git ls-files`.split("\n")
  s.required_ruby_version = '>= 1.9.2'

  # specify any dependencies here; for example:
  s.add_runtime_dependency "opentox-server"
  s.add_runtime_dependency 'roo', "=1.10.1" # 1.10.2 is defunct
  s.add_runtime_dependency "openbabel", "~>2.3.1.5"
  s.post_install_message = "Please configure your service in ~/.opentox/config/dataset.rb"
end