summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorChristoph Helma <ch@in-silico.ch>2009-08-14 15:19:18 +0200
committerChristoph Helma <ch@in-silico.ch>2009-08-14 15:19:18 +0200
commite6881a5b40693402701e1c1caff564def46a6fd1 (patch)
treefdb4f27f75a70ab19ac8c31c2548c6cd858548c2 /Rakefile
parent32467b6fc9e8911676c8daae41aaa09d8f34b7ac (diff)
Installatin tasks updated
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/Rakefile b/Rakefile
index 7ae56b0..5368e77 100644
--- a/Rakefile
+++ b/Rakefile
@@ -3,13 +3,14 @@ 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`
- `git submodule init`
- `git submodule update`
- Dir.cd('libfminer')
- `git pull`
- `make ruby`
+ puts `sudo gem sources -a http://gems.github.com`
+ puts `sudo gem install sinatra helma-opentox-ruby-api-wrapper`
+ puts `git submodule init`
+ puts `git submodule update`
+ Dir.chdir('libfminer')
+ puts `git checkout master`
+ puts `git pull`
+ puts `make ruby`
end
desc "Run tests"