summaryrefslogtreecommitdiff
path: root/lazar-rest.gemspec
blob: cddc29a93da499b73ff5c13c4265428632c56444 (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
25
26
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
  s.name        = "lazar-rest"
  s.version     = File.read("./VERSION")
  s.authors     = ["Christoph Helma","Micha Rautenberg","Denis Gebele"]
  s.email       = ["support@in-silico.ch"]
  s.homepage    = "http://github.com/opentox/lazar-rest"
  s.summary     = %q{lazar-rest}
  s.description = %q{REST Interface for Lazar Toxicology Predictions}
  s.license     = 'GPL-3'

  s.rubyforge_project = "lazar-rest"

  s.files         = `git ls-files`.split("\n")
  s.require_paths = ["lib"]
  s.required_ruby_version = '>= 2.0.0'

  s.add_runtime_dependency "lazar"
  s.add_runtime_dependency "qsar-report"
  s.add_runtime_dependency "sinatra"
  s.add_runtime_dependency "haml"
  s.add_runtime_dependency "sass"
  s.add_runtime_dependency "unicorn"
  s.add_runtime_dependency 'rack-cors'
end