forked from typekit/webfontloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
266 lines (212 loc) · 6.74 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
require 'rubygems'
require 'rake'
require 'date'
#############################################################################
#
# Helper functions
#
#############################################################################
def name
@name ||= Dir['*.gemspec'].first.split('.').first
end
def version
line = File.read("lib/#{name}.rb")[/^\s*VERSION\s*=\s*.*/]
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
end
def date
Date.today.to_s
end
def gemspec_file
"#{name}.gemspec"
end
def gem_file
"#{name}-#{version}.gem"
end
def replace_header(head, header_name)
head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"}
end
#############################################################################
#
# Standard tasks
#
#############################################################################
desc "Open an irb session preloaded with this library"
task :console do
sh "irb -rubygems -r ./lib/#{name}.rb"
end
#############################################################################
#
# Custom tasks (add your own tasks here)
#
#############################################################################
require 'rake/clean'
$LOAD_PATH.unshift File.dirname(__FILE__) + "/lib"
require 'webfontloader'
#
# Setup
#
# Build targets (remove with `rake clean`)
CLEAN.include("target")
CLEAN.include("tmp")
# JsCompiler
JsCompilerJar = "tools/compiler/compiler.jar"
# JS Source dependencies
AllJs = FileList["{src,src-test}/**/*"]
SourceJs = FileList["src/**/*"]
# JS Source loader
@modules = WebFontLoader::Modules.new
#
# Build
#
directory "target"
directory "tmp"
desc "Compile the JavaScript into target/webfont.js"
task :compile, [:modules] => "target/webfont.js"
file "webfontloader.js" => "target/webfont.js" do
cp "target/webfont.js", "webfontloader.js"
end
file "target/webfont.js", [:modules] => SourceJs + ["target"] do |t, args|
args.with_defaults(:modules => 'custom google typekit monotype fontdeck')
modules = args[:modules].split ' '
output_marker = "%output%"
output_wrapper = @modules.js_output_wrapper(output_marker, version)
args = [
["-jar", JsCompilerJar],
["--compilation_level", "ADVANCED_OPTIMIZATIONS"],
["--js_output_file", t.name],
["--output_wrapper", %("#{output_wrapper}")],
["--warning_level", "VERBOSE"],
["--summary_detail_level", "3"],
"--define goog.DEBUG=false"
]
args.concat modules.map { |m| "--define INCLUDE_" + m.upcase + "_MODULE" }
# Extra args to add warnings.
args.concat([
["--warning_level", "VERBOSE"],
["--summary_detail_level", "1"]
])
source = @modules.all_source_files
args.concat source.map { |f| ["--js", f] }
output = `java #{args.flatten.join(' ')} 2>&1`
$?.success? ? (puts output) : (fail output)
end
desc "Creates debug version into target/webfont.js"
task :debug, [:modules] => "target/webfont_debug.js"
file "target/webfont_debug.js", [:modules] => SourceJs + ["target"] do |t, args|
args.with_defaults(:modules => 'custom google typekit monotype fontdeck')
modules = args[:modules].split ' '
output_marker = "%output%"
output_wrapper = @modules.js_output_wrapper(output_marker, version)
args = [
["-jar", JsCompilerJar],
["--compilation_level", "ADVANCED_OPTIMIZATIONS"],
["--js_output_file", t.name],
["--output_wrapper", %("#{output_wrapper}")],
["--warning_level", "VERBOSE"],
["--summary_detail_level", "3"],
"--debug=true",
"--formatting=PRETTY_PRINT",
"--formatting=PRINT_INPUT_DELIMITER"
]
args.concat modules.map { |m| "--define INCLUDE_" + m.upcase + "_MODULE" }
# Extra args to add warnings.
args.concat([
["--warning_level", "VERBOSE"],
["--summary_detail_level", "1"]
])
source = @modules.all_source_files
args.concat source.map { |f| ["--js", f] }
output = `java #{args.flatten.join(' ')} 2>&1`
$?.success? ? (puts output) : (fail output)
end
#
# Run
#
desc "BrowserStack tests"
task :bstest do |t|
exec "browserstack-test -u $BROWSERSTACK_USERNAME -p $BROWSERSTACK_PASSWORD -k $BROWSERSTACK_KEY -b browsers.json -t 300 http://localhost:9999/spec/index.html"
end
desc "Test everything"
task :default => [:clean, :gzipbytes, :test]
desc "Run all tests"
task :test do |t|
exec "phantomjs tools/jasmine-phantomjs/jasmine-phantomjs.js spec/index.html"
end
desc "Start the demo server"
task :demo => "target/webfont.js" do |t|
js = t.prerequisites.first
exec "bin/webfontloader-demos -F --compiled_js #{js}"
end
desc "Start the demo server for development"
task :demodev do
exec "bin/webfontloader-demos -F -L --modules"
end
desc "Find out how many bytes the source is"
task :bytes => [:clean, "target/webfont.js"] do |t|
js = t.prerequisites.last
bytes = File.read(js).size
puts "#{bytes} bytes uncompressed"
end
desc "Find out how many bytes the source is when gzipped"
task :gzipbytes => [:clean, "target/webfont.js"] do |t|
require 'zlib'
js = t.prerequisites.last
bytes = Zlib::Deflate.deflate(File.read(js)).size
puts "#{bytes} bytes gzipped"
end
#############################################################################
#
# Packaging tasks
#
#############################################################################
task :release => [:build] do
unless `git branch` =~ /^\* master$/
puts "You must be on the master branch to release!"
exit!
end
sh "git add webfontloader.js"
sh "git commit --allow-empty -a -m 'Release #{version}'"
sh "git tag -a v#{version}"
sh "git push --tags origin master"
sh "gem push pkg/#{name}-#{version}.gem"
end
task :build => :gemspec do
Rake::Task["target/webfont.js"].execute
Rake::Task["webfontloader.js"].execute
sh "mkdir -p pkg"
sh "gem build #{gemspec_file}"
sh "mv #{gem_file} pkg"
end
task :gemspec => :validate do
# read spec file and split out manifest section
spec = File.read(gemspec_file)
head, manifest, tail = spec.split(" # = MANIFEST =\n")
# replace name version and date
replace_header(head, :name)
replace_header(head, :version)
replace_header(head, :date)
# determine file list from git ls-files
files = `git ls-files`.
split("\n").
sort.
reject { |file| file =~ /^\./ }.
reject { |file| file =~ /^(rdoc|pkg)/ }.
map { |file| " #{file.gsub(/\s/, '\ ')}" }.
join("\n")
# piece file back together and write
manifest = " s.files = %w[\n#{files}\n ]\n"
spec = [head, manifest, tail].join(" # = MANIFEST =\n")
File.open(gemspec_file, 'w') { |io| io.write(spec) }
puts "Updated #{gemspec_file}"
end
task :validate do
libfiles = Dir['lib/*'] - ["lib/#{name}.rb", "lib/#{name}"]
unless libfiles.empty?
puts "Directory `lib` should only contain a `#{name}.rb` file and `#{name}` dir."
exit!
end
unless Dir['VERSION*'].empty?
puts "A `VERSION` file at root level violates Gem best practices."
exit!
end
end