forked from seattlerb/vlad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
36 lines (27 loc) · 838 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# -*- ruby -*-
require 'rubygems'
require 'hoe'
Hoe.plugin :seattlerb
Hoe.plugin :isolate
Hoe.spec 'vlad' do
self.rubyforge_name = 'hitsquad'
developer 'Ryan Davis', '[email protected]'
developer 'Eric Hodel', '[email protected]'
developer 'Wilson Bilkovich', '[email protected]'
dependency 'rake', '~> 0.8'
dependency 'rake-remote_task', '~> 2.0'
dependency 'open4', '~> 0.9.0'
# TODO: remove 1.9
multiruby_skip << "rubinius"
end
desc "quick little hack to see what the state of the nation looks like"
task :debug do
$: << 'lib'
require 'vlad'
Vlad.load :config => "lib/vlad/subversion.rb"
set :repository, "repository path"
set :deploy_to, "deploy path"
set :domain, "server domain"
Rake::Task['vlad:debug'].invoke
end
# vim: syntax=ruby