-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathRakefile
More file actions
34 lines (25 loc) · 804 Bytes
/
Rakefile
File metadata and controls
34 lines (25 loc) · 804 Bytes
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
# -*- ruby -*-
require 'rubygems'
require 'hoe'
Hoe.plugin :seattlerb
Hoe.plugin :isolate
Hoe.add_include_dirs "../../rake-remote_task/dev/lib"
Hoe.spec 'vlad' do
developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
developer 'Eric Hodel', 'drbrain@segment7.net'
developer 'Wilson Bilkovich', 'wilson@supremetyrant.com'
dependency 'rake' , ['>= 0.8', '< 15.0']
dependency 'rake-remote_task', '~> 2.3'
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