summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
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"