forked from senchalabs/jsduck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
349 lines (300 loc) · 10 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
require 'rubygems'
require 'rake'
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require 'jsduck/util/md5'
def os_is_windows?
RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/
end
require 'rspec'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.rspec_opts = ["--color"] unless os_is_windows?
spec.pattern = "spec/**/*_spec.rb"
end
def load_sdk_vars
if File.exists?("sdk-vars.rb")
require "./sdk-vars.rb"
else
puts "Error: sdk-vars.rb not found."
puts
puts "Please create file sdk-vars.rb and define in it:"
puts
puts " # where to output the docs"
puts " OUT_DIR='/path/to/ouput/dir'"
puts " # path to Ext JS 4 build"
puts " EXT_BUILD='/path/to/ext-4'"
puts " # path to Touch 2 build (for building Sencha Touch)"
puts " TOUCH_BUILD='/path/to/touch-2'"
puts " # path to SDK (for developers at Sencha)"
puts " SDK_DIR='/path/to/SDK'"
exit 1
end
end
# Compress JS/CSS file in-place
# Using a hackish way to access yui-compressor
def yui_compress(fname)
system "java -jar $(dirname $(which sencha))/bin/yuicompressor.jar -o #{fname} #{fname}"
end
# Reads in all CSS files referenced between BEGIN CSS and END CSS markers.
# Deletes those input CSS files and writes out concatenated CSS to
# resources/css/app.css
# Finally replaces the CSS section with <link> to that one CSS file.
def combine_css(html, dir)
css_section_re = /<!-- BEGIN CSS -->.*<!-- END CSS -->/m
css = []
css_section_re.match(html)[0].each_line do |line|
if line =~ /<link rel="stylesheet" href="(.*?)"/
file = $1
css << IO.read(dir + "/" + file)
end
end
fname = "#{dir}/resources/css/app.css"
File.open(fname, 'w') {|f| f.write(css.join("\n")) }
yui_compress(fname)
fname = JsDuck::Util::MD5.rename(fname)
html.sub(css_section_re, '<link rel="stylesheet" href="resources/css/' + File.basename(fname) + '" type="text/css" />')
end
# Same thing for JavaScript, result is written to: app.js
def combine_js(html, dir)
js_section_re = /<!-- BEGIN JS -->.*<!-- END JS -->/m
js = []
js_section_re.match(html)[0].each_line do |line|
if line =~ /<script .* src="(.*)">/
file = $1
js << IO.read(dir + "/" + file)
elsif line =~ /<script .*>(.*)<\/script>/
js << $1
end
end
fname = "#{dir}/app.js"
File.open(fname, 'w') {|f| f.write(js.join("\n")) }
yui_compress(fname)
fname = JsDuck::Util::MD5.rename(fname)
html.sub(js_section_re, '<script type="text/javascript" src="' + File.basename(fname) + '"></script>')
end
# Modifies HTML to link app.css.
def rewrite_css_links(dir, filename)
html = IO.read(dir + "/" + filename);
html = combine_css(html, dir)
File.open(dir + "/" + filename, 'w') {|f| f.write(html) }
end
# Compress JavaScript and CSS files of JSDuck
def compress
load_sdk_vars
# Clean up template-min/ left over from previous compress task
system("rm", "-rf", "template-min")
# Copy template/ files to template-min/
system("cp", "-r", "template", "template-min")
# Now do everything that follows in template-min/ dir
dir = "template-min"
# Create JSB3 file for Docs app
system("sencha", "create", "jsb", "-a", "http://localhost/docs/", "-p", "#{dir}/app.jsb3")
# Concatenate files listed in JSB3 file
system("sencha", "build", "-p", "#{dir}/app.jsb3", "-d", dir)
# Remove intermediate build files
system("rm", "#{dir}/app.jsb3")
system("rm", "#{dir}/all-classes.js")
# Replace app.js with app-all.js
system("mv", "#{dir}/app-all.js", "#{dir}/app.js")
# Remove the entire app/ dir
system("rm", "-r", "#{dir}/app")
# Change CSS links in print-template.html and index-template.html files
rewrite_css_links(dir, "print-template.html")
rewrite_css_links(dir, "index-template.html")
# Concatenate CSS and JS files referenced in template.html file
template_html = "#{dir}/template.html"
html = IO.read(template_html)
html = combine_css(html, dir)
html = combine_js(html, dir)
File.open(template_html, 'w') {|f| f.write(html) }
# Clean up SASS files
# (But keep prettify lib, which is needed for source files)
system "rm -rf #{dir}/resources/css/docs-ext.css"
system "rm -rf #{dir}/resources/css/viewport.css"
system "rm -rf #{dir}/resources/sass"
system "rm -rf #{dir}/resources/codemirror"
system "rm -rf #{dir}/resources/.sass-cache"
# Empty the extjs dir, leave only the main JS file and images
system "rm -rf #{dir}/extjs"
system "mkdir #{dir}/extjs"
system "cp template/extjs/ext-all.js #{dir}/extjs"
system "mkdir -p #{dir}/extjs/resources/themes/images"
system "cp -r template/extjs/resources/themes/images/default #{dir}/extjs/resources/themes/images"
end
class JsDuckRunner
def initialize
@options = []
load_sdk_vars
end
def add_options(*options)
@options += options
end
def add_comments(db_name, version)
add_options("--comments-url", "http://localhost:3000/auth")
add_options("--comments-domain", db_name+"/"+version)
end
def add_search(product, version)
add_options("--search-url", "http://support-test.sencha.com:8080/docsearch/search")
add_options("--search-domain", product+"/"+version)
end
def add_ext4
@options += [
"--title", "Sencha Docs - Ext JS 4.0",
"--footer", "Ext JS 4.0 Docs - Generated with <a href='https://github.com/senchalabs/jsduck'>JSDuck</a> {VERSION}." +
" <a href='http://www.sencha.com/legal/terms-of-use/'>Terms of Use</a>",
"--ignore-global",
"--warnings", "-all",
"--images", "#{EXT_BUILD}/docs/images",
"--local-storage-db", "ext-4",
"--output", "#{OUT_DIR}",
"#{EXT_BUILD}/src",
]
end
def add_debug
add_options(
"--extjs-path", "extjs/ext-all-debug.js",
"--template", "template"
)
add_options("--template-links") unless os_is_windows?
end
def run
# Pass multiple arguments to system, so we'll take advantage of the built-in escaping
system(*["ruby", "bin/jsduck"].concat(@options))
end
end
# Download ExtJS into template/extjs
task :get_extjs do
system "curl -o template/extjs.zip http://cdn.sencha.com/ext-4.1.1a-gpl.zip"
system "unzip template/extjs.zip -d template/"
system "rm -rf template/extjs"
system "mv template/ext-4.1.1a template/extjs"
system "rm template/extjs.zip"
end
# Auto-generate sdk-vars.rb config file
task :config_file do
if File.exists?("sdk-vars.rb")
puts "sdk-vars.rb already exists. Keeping it."
else
puts "Generating sdk-vars.rb with the following content:"
config = <<-EORUBY
# where to output the docs
OUT_DIR='#{Dir.pwd}/output'
# path to Ext JS 4 build
EXT_BUILD='#{Dir.pwd}/template/extjs'
EORUBY
puts
puts config
File.open("sdk-vars.rb", "w") {|h| h.write(config) }
end
end
desc "Download ExtJS and initialize sdk-vars.rb config file"
task :configure => [:get_extjs, :config_file]
# Run compass to generate CSS files
task :sass do
system "compass compile --quiet template/resources/sass"
end
def write_version_file(version)
File.open('./lib/jsduck/version.rb', 'w') do |f|
f.write(<<-EORUBY)
# This file is updated by rake bump task.
# Do not edit by hand.
module JsDuck
VERSION = "#{version}"
end
EORUBY
end
end
def commit_version(version)
system "git commit lib/jsduck/version.rb -m 'Up version to #{version}.'"
puts "Creating tag v#{version}"
system "git tag -a v#{version} -m 'Tagging #{version} release.'"
end
desc <<-EOTEXT
Bumps JSDuck minor version number up by one.
Or sets the specified version number, when invoked like:
rake bump['1.2.3']
Also commits and tags the change in git.
EOTEXT
task :bump, :new_version do |t, args|
require "./lib/jsduck/version.rb"
if args[:new_version]
new = args[:new_version]
puts "Bumping version from #{JsDuck::VERSION} to #{new}"
write_version_file(new)
commit_version(new)
else
if JsDuck::VERSION =~ /\A([0-9]+)\.([0-9]+)\.([0-9]+)\z/
new = "#{$1}.#{$2}.#{$3.to_i+1}"
puts "Bumping version from #{JsDuck::VERSION} to #{new}"
write_version_file(new)
commit_version(new)
else
puts "Unable to automatically bump the version: #{JsDuck::VERSION}"
exit 1
end
end
end
desc "Build JSDuck gem"
task :gem => :sass do
compress
system "gem build jsduck.gemspec"
end
desc "Run JSDuck on Docs app itself"
task :docs do
runner = JsDuckRunner.new
runner.add_ext4
runner.add_options(
"--builtin-classes",
"template/app"
)
runner.add_debug
runner.run
end
desc "Run JSDuck on official Ext JS 4 build"
task :ext4 => :sass do
runner = JsDuckRunner.new
runner.add_ext4
runner.add_debug
runner.run
system("ln -s #{EXT_BUILD} #{OUT_DIR}/extjs-build")
end
desc "Run JSDuck on Ext JS from SDK repo (for internal use at Sencha)"
task :sdk => :sass do
runner = JsDuckRunner.new
runner.add_options(
"--output", OUT_DIR,
"--config", "#{SDK_DIR}/extjs/docs/config.json",
"--examples-base-url", "extjs-build/examples/",
# "--import", "4.1.3:../docs.sencha.com/exports/extjs-4.1.3",
# "--import", "4.2",
"--seo"
)
runner.add_debug
runner.add_comments('ext-js', '4')
runner.add_search('Ext JS', '4.2.0')
runner.run
system("ln -s #{EXT_BUILD} #{OUT_DIR}/extjs-build")
end
desc "Run JSDuck on Sencha Touch 2 repo (for internal use at Sencha)"
task :touch2 => :sass do
runner = JsDuckRunner.new
runner.add_options(
"--output", OUT_DIR,
"--config", "#{SDK_DIR}/touch/docs/config.json",
"--examples-base-url", "touch-build/examples/production/",
# "--import", "1.1.0:../docs.sencha.com/exports/touch-1.1.0",
# "--import", "1.1.1:../docs.sencha.com/exports/touch-1.1.1",
# "--import", "2.0.0:../docs.sencha.com/exports/touch-2.0.0",
# "--import", "2.0.1:../docs.sencha.com/exports/touch-2.0.1",
# "--import", "2.1.0:../docs.sencha.com/exports/touch-2.1.0",
# "--import", "2.1.1:../docs.sencha.com/exports/touch-2.1.1",
# "--import", "2.2.0:../docs.sencha.com/exports/touch-2.2.0",
# "--import", "2.2.1",
"--seo"
)
runner.add_debug
runner.add_comments('touch', '2')
runner.run
system("ln -s #{TOUCH_BUILD} #{OUT_DIR}/touch-build")
end
task :default => :spec