mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
9 lines
264 B
Ruby
9 lines
264 B
Ruby
require 'rubygems'
|
|
require 'closure-compiler'
|
|
|
|
desc 'Use the Closure Compiler to compress Underscore.string'
|
|
task :build do
|
|
File.open('dist/underscore.string.min.js', 'w').write \
|
|
Closure::Compiler.new.compile(File.open('lib/underscore.string.js', 'r'))
|
|
end
|