Skip to content

Instantly share code, notes, and snippets.

View smithclay's full-sized avatar

Clay Smith smithclay

View GitHub Profile
@smithclay
smithclay / fd.sh
Created February 7, 2013 01:07
Run a Jenkins Build Task from the command line.
#!/usr/bin/env bash
JENKINS_URL=http://jenkins.postapp.com/job
if [ $# -eq 0 ]
then
echo "usage: fd <jenkins build task> [<jenkins build task> ...]"
fi
for var in "$@"
@smithclay
smithclay / upgrade-grunt.sh
Last active December 10, 2015 20:08
This script will prepare an package that uses grunt-0.3.x to use grunt-0.4.x. You may need to use superuser privileges to execute this script if you have grunt installed globally. Run this script in your grunt-0.3.x project directory that has been updated to use grunt-0.4.x.
#!/usr/bin/env bash
# Run this script in your grunt-0.3.x project directory that has been updated to use grunt-0.4.x
set -e
# Make sure node-0.8.x is installed
if node -v | grep ^v0.8.\* ; then
echo "You have node 0.8.x installed..."
else
@smithclay
smithclay / jake-minify.js
Created October 24, 2012 00:50
Example of a Minify Task using Jake
desc('Minify javascript.');
task('minify', function (params) {
var task = this, startTime = +new Date(), minifiedCount = 0,
targetPath = process.env.JS_BUILD_DIR || './';
debugFiles = barkeep.fileListRecursive(path.join(BUILD_GLOBALS.output, targetPath), BUILD_GLOBALS.debugExpr),
uglifyBin = path.join(__dirname, 'node_modules', 'uglify-js', 'bin', 'uglifyjs');
console.log('Minifying javascript files...'.green);
barkeep.directory(BUILD_GLOBALS.output); // Create build directory (if it doesn't exist).
async.forEach(debugFiles, function (fileName, callback) {
var extension = path.extname(fileName);
<target name="js-compile-all" description="Compile JavaScript files with Closure" unless="skip-js-compile">
<echo>Compiling JS files in ${input.scripts.dir} in closure...</echo>
<apply executable="java" dest="${output.scripts.dir}">
<arg value="-jar"/>
<arg path="${jar.lib.dir}/closure-compiler.jar"/>
<arg line="--js"/>
<srcfile/>
<arg line="--js_output_file"/>
<targetfile/>
<fileset dir="${output.scripts.dir}" includes="**/*-main.debug.js" />