Created
February 8, 2011 20:47
-
-
Save mileszs/817200 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| desc "Minify JS and CSS, commit the results, and push it all" | |
| task :minify_assets do | |
| `jammit` | |
| status_output = `git status` | |
| unless status_output =~ /nothing to commit/ && status_output !~ /public\/assets/ | |
| `git add public/assets/` | |
| `git commit -m "Re-minify JS and CSS before deployment"` | |
| `git push origin master` | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment