summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2012-05-09 15:39:06 +0000
committerChristoph Helma <helma@in-silico.ch>2012-05-09 15:39:06 +0000
commite80386bf5e362a336c110d54f3838cdb81f4e6c3 (patch)
tree7f3edb090b22f613941a7ecbccaa8f135448e0cb
parenta02d5c27e9cc26440910069986fa44d8f99f763c (diff)
gem configuration added
-rw-r--r--Gemfile5
-rw-r--r--Rakefile1
-rw-r--r--VERSION1
-rw-r--r--public/robots.txt2
-rw-r--r--task.gemspec27
5 files changed, 31 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index 121e933..36f1a90 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,5 +1,4 @@
-source "http://rubygems.org"
-# Specify your gem's dependencies in opentox-server.gemspec
-#gemspec
+source :gemcutter
+gemspec
gem "opentox-server", :path => "~/opentox-server"
gem "opentox-client", :path => "~/opentox-client"
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..2995527
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1 @@
+require "bundler/gem_tasks"
diff --git a/VERSION b/VERSION
new file mode 100644
index 0000000..3eefcb9
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+1.0.0
diff --git a/public/robots.txt b/public/robots.txt
deleted file mode 100644
index 1f53798..0000000
--- a/public/robots.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-User-agent: *
-Disallow: /
diff --git a/task.gemspec b/task.gemspec
new file mode 100644
index 0000000..d1ac00d
--- /dev/null
+++ b/task.gemspec
@@ -0,0 +1,27 @@
+# -*- encoding: utf-8 -*-
+$:.push File.expand_path("../lib", __FILE__)
+
+Gem::Specification.new do |s|
+ s.name = "task"
+ s.version = File.read("./VERSION")
+ s.authors = ["Christoph Helma","Denis Gebele","Micha Rautenberg"]
+ s.email = ["helma@in-silico.ch","gebele@in-silico.ch","rautenenberg@in-silico.ch"]
+ s.homepage = "http://github.com/OpenTox/task"
+ s.summary = %q{Toxbank task service}
+ s.description = %q{Toxbank task service}
+ s.license = 'GPL-3'
+ #s.platform = Gem::Platform::CURRENT
+
+ s.rubyforge_project = "task"
+
+ 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/task.rb"
+end
+