public
Description: A bleeding-edge package manager.
Homepage: http://roastbeef.rubyforge.org
Clone URL: git://github.com/technomancy/roast-beef.git
roast-beef / Rakefile
100644 36 lines (29 sloc) 0.884 kb
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'
require './lib/roastbeef.rb'
 
Hoe.new('roastbeef', RoastBeef::VERSION) do |p|
  p.rubyforge_name = 'roastbeef'
  p.author = 'Phil Hagelberg'
  p.email = 'technomancy@gmail.com'
  p.summary = 'Roast Beef is a bleeding package manager that uses upstream repositories.'
  p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
  p.url = 'http://roastbeef.rubyforge.org'
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
  p.remote_rdoc_dir = ''
  s.extra_rdoc_files = ["README.rdoc"]
end
 
desc "Code statistics"
task :stats do
  require 'code_statistics'
  CodeStatistics.new(['lib']).to_s
end
 
desc "Show todo items"
task :todo do
  system "grep -r TODO lib"
end
 
desc "Run the specs in a VM"
task :spec do
  # TODO: uh... launch a VM; SSH into it, checkout the project and run the specs?
end
 
# vim: syntax=Ruby