summaryrefslogtreecommitdiff
path: root/algorithm.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'algorithm.gemspec')
-rw-r--r--algorithm.gemspec30
1 files changed, 30 insertions, 0 deletions
diff --git a/algorithm.gemspec b/algorithm.gemspec
new file mode 100644
index 0000000..925c397
--- /dev/null
+++ b/algorithm.gemspec
@@ -0,0 +1,30 @@
+# -*- encoding: utf-8 -*-
+$:.push File.expand_path("../lib", __FILE__)
+
+Gem::Specification.new do |s|
+ s.name = "opentox-algorithm"
+ s.version = File.read("./VERSION")
+ s.authors = ["Christoph Helma"]
+ s.email = ["helma@in-silico.ch"]
+ s.homepage = "http://github.com/opentox/algorithm"
+ s.summary = %q{OpenTox Algorithm Service}
+ s.description = %q{OpenTox Algorithm Service}
+ s.license = 'GPL-3'
+
+ s.rubyforge_project = "algorithm"
+
+ 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 "opentox-client"
+ s.add_runtime_dependency 'rinruby', "~>2.0.2"
+ s.add_runtime_dependency 'nokogiri', "~>1.4.4"
+ s.add_runtime_dependency 'statsample', "~>1.1"
+ s.add_runtime_dependency 'gsl', "~>1.14"
+ s.add_runtime_dependency 'emk-sinatra-url-for', "~>0.2.1"
+# s.add_runtime_dependency '', "~>"
+ s.add_runtime_dependency "openbabel", "~>2.3.1.5"
+ s.post_install_message = "Please configure your service in ~/.opentox/config/algorithm.rb"
+end