eventualbuddha / sake-git

Don't use this. It's slow and requires ruby and sake. Use this: http://github.com/wesabe/git-tools

This URL has Read+Write access

sake-git / Rakefile
53acbc65 » eventualbuddha 2008-03-04 First commit 1 desc "Install the sake-git tasks (use FORCE=yes to overwrite)"
2 task :install do
3 if ENV['FORCE'] == 'yes'
c20d9741 » granth 2008-05-01 use sake -Tv to include hid... 4 tasks = `sake -Tv #{Dir.pwd}/git.rake`.to_a.grep(/^sake/).map {|l| l[/^sake (\S+)/, 1]}
53acbc65 » eventualbuddha 2008-03-04 First commit 5 `sake -u #{tasks.join(' ')} 2>/dev/null`
6 end
7
8 exec("sake -i #{Dir.pwd}/git.rake")
9 end
10
11 task :default => :install