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
|
# -*- ruby -*-
require "rubygems"
require "hoe"
Hoe.plugin :isolate
Hoe.plugin :seattlerb
Hoe.plugin :rdoc
# Hoe.plugin :compiler
# Hoe.plugin :doofus
# Hoe.plugin :email
# Hoe.plugin :gem_prelude_sucks
# Hoe.plugin :history
# Hoe.plugin :inline
# Hoe.plugin :isolate
# Hoe.plugin :minitest
# Hoe.plugin :perforce
# Hoe.plugin :racc
# Hoe.plugin :rcov
# Hoe.plugin :rdoc
# Hoe.plugin :seattlerb
Hoe.spec "path_expander" do
developer "Ryan Davis", "ryand-ruby@zenspider.com"
license "MIT"
end
# vim: syntax=ruby
|