summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.de>2009-08-14 10:33:51 +0200
committerChristoph Helma <helma@in-silico.de>2009-08-14 10:33:51 +0200
commit7d19f5562f3f59f7a14a4d6f7d8da6f24fdabd8c (patch)
tree3a2a1cfcb746fc44162a9ceed492ecf5f7047230 /Rakefile
parent9d9ed94fb136262ed072d61c07b94b90c243646d (diff)
Initial version of opentox-lazar
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..931410f
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,15 @@
+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 dm-core dm-more builder helma-opentox-ruby-api`
+end
+
+desc "Run tests"
+task :test do
+ puts "No tests for lazar."
+ #load 'test.rb'
+end
+