public
Description: Bludgeon is a tool which will tell you if a given library is so large that you could bludgeon someone to death with a printout of it.
Homepage: http://github.com/technomancy/bludgeon
Clone URL: git://github.com/technomancy/bludgeon.git
bludgeon / Rakefile
100644 22 lines (16 sloc) 0.476 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/bludgeon.rb'
 
Hoe.new('bludgeon', Bludgeon::VERSION) do |p|
  p.rubyforge_name = "seattlerb"
  p.developer('Phil Hagelberg', 'technomancy@gmail.com')
  p.extra_dev_deps << ['minitest', '>= 1.3.0']
end
 
desc "Prepare to upload to the git hubs."
task :github do
  system "git ls-files > Manifest.txt"
  system "rake debug_gem | egrep -v \"^\\(in\" > bludgeon.gemspec"
end
 
task :gem => :github
 
# vim: syntax=Ruby