Skip to content

Instantly share code, notes, and snippets.

@j-mcnally
Created October 7, 2013 17:01
Show Gist options
  • Save j-mcnally/6871312 to your computer and use it in GitHub Desktop.
Save j-mcnally/6871312 to your computer and use it in GitHub Desktop.
Rspec Sublime Build System
{
"cmd": ["/bin/bash", "-l", "-c", "echo 'Running RSPEC for $file'; source .rvmrc && bundle exec rspec $file"],
"working_dir": "${project_path:${folder:${file_path}}}",
"selector": "source.ruby",
"variants": [
{ "cmd": ["/bin/bash", "-l", "-c", "echo 'Running entire RSPEC Suite'; source .rvmrc && bundle exec rspec"],
"name": "Run",
"working_dir": "${project_path:${folder:${file_path}}}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment