summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorChristoph Helma <ch@in-silico.ch>2009-08-14 17:14:35 +0200
committerChristoph Helma <ch@in-silico.ch>2009-08-14 17:14:35 +0200
commit84ca9f7d79e9a74070527b9ee43d85190169d0f2 (patch)
tree853fc95506aaae1bcff206e0c103eca6c1f807da /Rakefile
parentcdebc21341f892b5dd379efe0469fc18c45073c0 (diff)
README URIs fixed, update task addded
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 931410f..bd2f675 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,10 +1,15 @@
require 'rubygems'
require 'rake'
-desc "Install required gems and openbabel"
+desc "Install required gems"
task :install do
- `sudo gem sources -a http://gems.github.com`
- `sudo gem install sinatra dm-core dm-more builder helma-opentox-ruby-api`
+ puts `sudo gem sources -a http://gems.github.com`
+ puts `sudo gem install sinatra datamapper dm-more builder helma-opentox-ruby-api-wrapper`
+end
+
+desc "Update gems"
+task :update do
+ puts `sudo gem update sinatra datamapper dm-more builder helma-opentox-ruby-api-wrapper`
end
desc "Run tests"