forked from sinatra/sinatra.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
155 lines (129 loc) · 4.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# encoding: utf-8
require 'rake/clean'
require 'rdoc'
require 'rdoc/encoding'
require 'rdoc/markup/to_html'
require 'rdoc/options'
require 'uri'
require 'nokogiri'
require 'kramdown'
def cleanup(html)
html_doc = Nokogiri::HTML(html)
html_doc.xpath("//h1").first.remove # Removes Sinatra Heading
html_doc.xpath("//ul").first.remove # Removes the ToC in Markdown
toc_header = html_doc.xpath("//h2").first
toc_header.remove if toc_header.inner_html == "Table of Contents"
html_doc.to_html
end
def readme(pattern = "%s", &block)
return readme(pattern).each(&block) if block_given?
%w[en de es fr hu ja zh ru ko pt-br pt-pt].map do |lang|
pattern % "README#{lang == "en" ? "" : ".#{lang}"}"
end
end
def contrib(pattern = "%s", &block)
return contrib(pattern).each(&block) if block_given?
%w[
sinatra-config-file
sinatra-multi-route
sinatra-content-for
sinatra-namespace
sinatra-cookies
sinatra-reloader
sinatra-decompile
sinatra-respond-with
sinatra-extension
sinatra-streaming
sinatra-json
sinatra-link-header
].map do |extension|
pattern % extension
end
end
# generates Table of Contents
def with_toc(src)
toc = "<div class='toc'>\n"
last_level = 1
src = src.gsub(/<h(\d)>(.*)<\/h\d>/) do |line|
level, heading = $1.to_i, $2.strip
aname = URI.escape(heading)
toc << "\t"*last_level << "<ol class='level-#{level-1}'>\n" if level > last_level
toc << "\t"*level << "</ol>"*(last_level - level) << "\n" if level < last_level
toc << "\t"*level << "<li><a href='##{aname}'>#{heading}</a></li>\n"
last_level = level
"<a name='#{aname}'></a>\n" << line
end
toc << "\t" << "</ol>"*(last_level-1) << "\n</div>\n"
toc + src
end
task :default => ['_sinatra', '_contrib', :build]
desc "Build outdated static files and API docs"
task :build => [:pull, 'build:static']
desc "Build outdated static files"
task 'build:static' => readme("_includes/%s.html") + contrib("_includes/%s.html")
desc "Build anything that's outdated and stage changes for next commit"
task :regen => [:build] do
sh 'git add api _includes'
puts "\nPrebuilt files regenerated and staged in your index. Commit with:"
puts " git commit -m 'Regen prebuilt files'"
end
desc 'Pull in the latest from the sinatra and sinatra-contrib repos'
task :pull => ['pull:sinatra', 'pull:contrib']
directory "_sinatra" do
puts 'Cloning sinatra repo'
sh "git clone git://github.com/sinatra/sinatra.git _sinatra"
end
desc 'Pull in the latest from the sinatra repo'
task 'pull:sinatra' => "_sinatra" do
puts 'Pulling sinatra.git'
sh "cd _sinatra && git pull &>/dev/null"
end
directory "_contrib" do
puts 'Cloning sinatra-contrib repo'
sh "git clone git://github.com/sinatra/sinatra-contrib.git _contrib"
end
desc 'Pull in the latest from the sinatra-contrib repo'
task 'pull:contrib' => "_contrib" do
puts 'Pulling sinatra-contrib.git'
sh "cd _contrib && git pull &>/dev/null"
end
readme("_sinatra/%s.md") { |fn| file fn => '_sinatra' }
file 'AUTHORS' => '_sinatra'
readme do |fn|
file "_includes/#{fn}.html" => ["_sinatra/#{fn}.md", "Rakefile"] do |f|
markdown_string = File.read("_sinatra/#{fn}.md").encode('UTF-16le', :invalid => :replace, :replace => "").encode("UTF-8")
markdown_string.gsub!(/```(\s?(\w+\n))?/) do |match|
match =~ /```\s?\n/ ? "~~~~~\n" : match.sub(/```\s?/, "~~~~")
end
markdown = Kramdown::Document.new(markdown_string, :fenced_code_blocks => true, :coderay_line_numbers => nil, :auto_ids => false)
html = cleanup(markdown.to_html)
File.open(f.name, 'w') { |io| io.write with_toc(html) }
end
end
desc 'Build contrib docs'
task 'build:contrib_docs' => 'pull:contrib' do
puts 'Building sinatra-contrib docs'
sh "cd _contrib && rake doc &>/dev/null"
end
contrib("_contrib/doc/%s.rdoc") { |fn| file fn => '_contrib' }
contrib do |fn|
file "_includes/#{fn}.html" => ["build:contrib_docs", "_contrib/doc/#{fn}.rdoc", "Rakefile"] do |f|
html =
RDoc::Markup::ToHtml.new(RDoc::Options.new)
.convert(File.read("_contrib/doc/#{fn}.rdoc"))
File.open(f.name, 'wb') { |io| io.write html }
end
end
desc 'Rebuild site under _site with Jekyll'
task :jekyll do
rm_rf '_site'
sh 'jekyll build'
end
desc 'Start the Jekyll server on http://localhost:4000/'
task :server do
rm_rf '_site'
puts 'jekyll serve --watch'
exec 'jekyll serve --watch'
end
CLEAN.include '_site', "_includes/*.html"
CLOBBER.include "_contrib", "_sinatra"