forked from seattlerb/hoe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
50 lines (35 loc) · 1.09 KB
/
Rakefile
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- ruby -*-
$:.unshift "lib"
require "./lib/hoe.rb"
Hoe.plugin :seattlerb
Hoe.plugin :isolate
Hoe.plugin :rdoc
Hoe.add_include_dirs "../../minitest/dev/lib"
Hoe.spec "hoe" do
developer "Ryan Davis", "[email protected]"
self.group_name = "seattlerb"
blog_categories << "Seattle.rb" << "Ruby"
license "MIT"
pluggable!
require_rubygems_version ">= 1.4"
dependency "rake", [">= 0.8", "< 13.0"] # FIX: to force it to exist pre-isolate
end
task :plugins do
puts `find lib/hoe -name \*.rb | xargs grep -h module.Hoe::`.
gsub(/module/, "*")
end
task :known_plugins do
dep = Gem::Dependency.new(/^hoe-/, Gem::Requirement.default)
fetcher = Gem::SpecFetcher.fetcher
spec_tuples = fetcher.find_matching dep
max = spec_tuples.map { |(tuple, _source)| tuple.first.size }.max
spec_tuples.each do |(tuple, source)|
spec = Gem::SpecFetcher.fetcher.fetch_spec(tuple, URI.parse(source))
puts "* %-#{max}s - %s (%s)" % [spec.name, spec.summary, spec.authors.first]
end
end
task :docs do
cp "Hoe.pdf", "doc"
sh "chmod ug+w doc/Hoe.pdf"
end
# vim: syntax=ruby