public
Description: Git + Hash
Homepage: http://dojo.rubyforge.org/gash
Clone URL: git://github.com/judofyr/gash.git
gash / Rakefile
100644 19 lines (17 sloc) 0.503 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'echoe'
require 'hanna/rdoctask'
 
Echoe.new('gash') do |p|
  p.project = "dojo"
  p.author = "Magnus Holm"
  p.email = "judofyr@gmail.com"
  p.summary = "Git + Hash"
  p.url = "http://dojo.rubyforge.org/gash/"
  p.runtime_dependencies = ["open4 >= 0.9.6"]
  p.rdoc_options += ["--main", "Gash", "--title", "Gash"]
end
 
Rake::Task[:publish_docs].instance_eval do
  @actions.clear
  enhance do
    sh("rsync -avc --delete doc/* judofyr@rubyforge.org:/var/www/gforge-projects/dojo/gash/")
  end
end