Skip to content

Instantly share code, notes, and snippets.

View pivotalcommon's full-sized avatar

Pivotal Labs Common Effort Role Account pivotalcommon

View GitHub Profile
@pivotal-chorus
pivotal-chorus / gist:5437004
Created April 22, 2013 17:39
Run Jasmine specs from RubyMine. Create the shell script below as an external tool in RubyMine then bind it to a key.
#!/bin/sh
JASMINE_URL="http://localhost:8888/?spec="
if [ -z "$1" ]; then
echo "Opening $JASMINE_URL to run all the tests"
open "$JASMINE_URL"
exit 0
fi