# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) Gem::Specification.new do |s| s.name = "opentox-model" s.version = File.read("./VERSION") s.authors = ["Christoph Helma"] s.email = ["helma@in-silico.ch"] s.homepage = "" s.summary = %q{Simple OpenTox Model Service} s.description = %q{Simple OpenTox Model Service} s.license = 'GPL-3' s.rubyforge_project = "model" s.files = `git ls-files`.split("\n") #s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") #s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } #s.require_paths = ["lib"] s.required_ruby_version = '>= 1.9.2' # specify any dependencies here; for example: s.add_runtime_dependency "opentox-server" s.post_install_message = "Please configure your service in ~/.opentox/config/model.rb" end