public
Description: A tool to simplify working with remote branches
Homepage: http://grb.rubyforge.org/
Clone URL: git://github.com/webmat/git_remote_branch.git
Click here to lend your support to: git_remote_branch and make a donation at www.pledgie.com !
git_remote_branch / Rakefile
100644 18 lines (10 sloc) 0.357 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'rubygems'
 
require 'rake'
 
GRB_ROOT = File.dirname(__FILE__)
 
#So we can use GitRemoteBranch::NAME, VERSION and so on.
require "#{GRB_ROOT}/lib/git_remote_branch"
 
SUDO = WINDOWS ? "" : "sudo"
 
Dir['tasks/**/*.rake'].each { |rake| load rake }
 
desc 'Default: run all tests.'
task :default => :test
 
task :clean => [:clobber_package, :clobber_rdoc]