summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rwxr-xr-xRakefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/Rakefile b/Rakefile
index e8e2a92..ca9856d 100755
--- a/Rakefile
+++ b/Rakefile
@@ -1,42 +1,6 @@
require 'rubygems'
require 'rake'
-REPORT_GEMS = [ 'opentox-ruby', 'mime-types', 'ruby-plot', 'rinruby'] #'ar-extensions', 'activerecord', 'activesupport',
-VALIDATION_GEMS = [ 'opentox-ruby', 'ruby-plot'] #'ar-extensions', 'activerecord', 'activesupport',
-
-GEM_VERSIONS = { "ruby-plot" => "= 0.0.2" }
-GEM_INSTALL_OPTIONS = {}
-
-#GEM_VERSIONS = { "activerecord" => "= 2.3.8", "activesupport" => "= 2.3.8", "ar-extensions" => "= 0.9.2", "ruby-plot" => "= 0.0.2" }
-## this is needed because otherwihse ar-extensions adds activesupport 3.0.0 which confuses things
-#GEM_INSTALL_OPTIONS = { "ar-extensions" => "--ignore-dependencies" }
-
-
-desc "Install required gems"
-task :install_gems do
- (REPORT_GEMS + VALIDATION_GEMS).uniq.each do |g|
- begin
- if GEM_VERSIONS.has_key?(g)
- print "> gem "+g+", '"+GEM_VERSIONS[g]+"' .. "
- gem g, GEM_VERSIONS[g]
- else
- print "> gem "+g+" .. "
- gem g
- end
- puts "ok"
- rescue LoadError => ex
- puts "NOT FOUND"
- options = ""
- options += "--version '"+GEM_VERSIONS[g]+"' " if GEM_VERSIONS.has_key?(g)
- options += GEM_INSTALL_OPTIONS[g]+" " if GEM_INSTALL_OPTIONS.has_key?(g)
- cmd = "sudo env PATH=$PATH gem install "+options+" "+g
- puts "installing gem, this may take some time..."
- puts cmd
- IO.popen(cmd){ |f| puts f.gets }
- end
- end
-end
-
desc "Perform unit tests"
task :test do
require 'test/unit_test.rb'