summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.de>2009-08-14 08:58:33 +0200
committerChristoph Helma <helma@in-silico.de>2009-08-14 08:58:33 +0200
commitaea8e5bd36f228954e337d7b31350426e2c0c7f1 (patch)
tree988c3f9cc4556e513156ba12a4723c42388eeeda /Rakefile
parent8ab56f87e7644cd0ed8a875678e0453c2ec1059e (diff)
Rakefile, README, config.ru added, uses opentox-ruby-api
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..cce6d4d
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,20 @@
+require 'rubygems'
+require 'rake'
+
+desc "Install required gems and openbabel"
+task :install do
+ `sudo gem sources -a http://gems.github.com`
+ `sudo gem install sinatra helma-opentox-ruby-api-wrapper`
+ `git submodule init`
+ `git submodule update`
+ Dir.cd('libfminer')
+ `git pull`
+ `make ruby`
+end
+
+desc "Run tests"
+task :test do
+ puts "No tests for fminer."
+ #load 'test.rb'
+end
+