forked from flavorjones/loofah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
68 lines (56 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
require 'rubygems'
gem 'hoe', '>= 2.3.0'
require 'hoe'
Hoe.plugin :git
Hoe.plugin :gemspec
Hoe.plugin :bundler
Hoe.plugin :debugging
Hoe.spec "loofah" do
developer "Mike Dalessio", "[email protected]"
developer "Bryan Helmkamp", "[email protected]"
self.extra_rdoc_files = FileList["*.rdoc"]
self.history_file = "CHANGELOG.rdoc"
self.readme_file = "README.rdoc"
extra_deps << ["nokogiri", ">=1.4.4"]
extra_dev_deps << ["rake", ">=0.8"]
extra_dev_deps << ["minitest", "~>2.2"]
extra_dev_deps << ["rr", "~>1.0"]
extra_dev_deps << ["json", ">=0"]
extra_dev_deps << ["hoe-gemspec", ">=0"]
extra_dev_deps << ["hoe-debugging", ">=0"]
extra_dev_deps << ["hoe-bundler", ">=0"]
extra_dev_deps << ["hoe-git", ">=0"]
end
task :gemspec do
system %q(rake debug_gem | grep -v "^\(in " > loofah.gemspec)
end
task :redocs => :fix_css
task :docs => :fix_css
task :fix_css do
better_css = <<-EOT
.method-description pre {
margin : 1em 0 ;
}
.method-description ul {
padding : .5em 0 .5em 2em ;
}
.method-description p {
margin-top : .5em ;
}
#main ul, div#documentation ul {
list-style-type : disc ! IMPORTANT ;
list-style-position : inside ! IMPORTANT ;
}
h2 + ul {
margin-top : 1em;
}
EOT
puts "* fixing css"
File.open("doc/rdoc.css", "a") { |f| f.write better_css }
end
desc "generate and upload docs to rubyforge"
task :doc_upload_to_rubyforge => :docs do
Dir.chdir "doc" do
system "rsync -avz --delete * rubyforge.org:/var/www/gforge-projects/loofah/loofah"
end
end