public
Rubygem
Description: Deploy scripting with Thor using remote Ruby execution
Clone URL: git://github.com/wesabe/robot-army.git
robot-army / Rakefile
100644 10 lines (8 sloc) 0.234 kb
1
2
3
4
5
6
7
8
9
10
begin
  require 'rubygems'
  require 'thor'
  
  $stderr.puts "Robot Army uses thor, not rake. Here are the available tasks:"
  exec "thor -T"
rescue LoadError
  $stderr.puts "Robot Army uses thor, not rake. Please install thor."
end