Skip to content

Instantly share code, notes, and snippets.

@hsbt
Forked from defunkt/gist:162535
Created February 29, 2012 03:10
Show Gist options
  • Save hsbt/1937272 to your computer and use it in GitHub Desktop.
Save hsbt/1937272 to your computer and use it in GitHub Desktop.
desc "Shrink the js"
task :minimize_js, :roles => :app, :except => { :no_release => true } do
require 'lib/js_minimizer'
paths = []
paths += Dir['public/javascripts/jquery.*.js'].sort
paths += Dir['public/javascripts/github.*.js'].sort
paths = paths.flatten
put JSMinimizer.minimize_files(*paths), "#{release_path}/public/javascripts/bundle.js"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment