public
Description: A source code readers guide to the cruisecontrol.rb project
Homepage: http://projects.gandrew.com/cruise_notes/
Clone URL: git://github.com/gingerhendrix/cruise_notes.git
gingerhendrix (author)
Sun Oct 26 16:22:43 -0700 2008
commit  903035794505eb3040aa8507b0d68cb9a9909f41
tree    f90c593e3d28a895d878761bf0f8e087b76e2bc5
parent  fd01509c9d2e857f213d5d8bf37d7d800f23eac0
cruise_notes / Rakefile
100644 23 lines (14 sloc) 0.409 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rubygems'
begin
  require 'rake'
rescue LoadError
  puts 'This script should only be accessed via the "rake" command.'
  puts 'Installation: gem install rake -y'
  exit
end
require 'rake'
require 'rake_remote_task'
 
$:.unshift File.dirname(__FILE__) + "/tasks/lib"
 
 
role :app_server, 'gandrew.com'
DEPLOY_ROOT = '/var/web/projects/cruise_notes'
 
Dir['tasks/**/*.rake'].each { |rake| load rake }