summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorChristoph Helma <ch@in-silico.ch>2009-08-16 00:09:00 +0200
committerChristoph Helma <ch@in-silico.ch>2009-08-16 00:09:00 +0200
commitaf0d1ebb1511ca4da47b4c69db7b6861a8fa3d70 (patch)
treeeb0c744b8d40f43737899a1e5ec4fbf6a3352bc8 /Rakefile
parent1fd85f5b8925e8fd8986497e9fab3a49acc64379 (diff)
YAML output instead of XML
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 6705f66..642cd30 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,9 +1,16 @@
require 'rubygems'
require 'rake'
+@gems = "sinatra emk-sinatra-url-for builder datamapper json_pure do_sqlite3 opentox-ruby-api-wrapper"
+
desc "Install required gems"
task :install do
- puts `sudo gem install sinatra emk-sinatra-url-for builder datamapper json_pure do_sqlite3`
+ puts `sudo gem install #{@gems}`
+end
+
+desc "Update required gems"
+task :update do
+ puts `sudo gem update #{@gems}`
end
desc "Run tests"