Skip to content

Instantly share code, notes, and snippets.

@defunkt
Created August 5, 2009 06:01
Show Gist options
  • Save defunkt/162535 to your computer and use it in GitHub Desktop.
Save defunkt/162535 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