Skip to content

Instantly share code, notes, and snippets.

@manafire
Created January 10, 2013 19:25
Show Gist options
  • Save manafire/4505009 to your computer and use it in GitHub Desktop.
Save manafire/4505009 to your computer and use it in GitHub Desktop.
SublimeText2 Compass Build file with rbenv
{
"cmd": "cd '$project_path'; compass watch",
"working_dir": "$packages/Compass",
"selector": "source.sass, source.scss",
// "shell": "true",
"osx": {
// "watch" with SublimeOnSaveBuild package creates multiple ruby instances & memleaks, so we use "compile" instead
"cmd": ["/Users/bcarson/.rbenv/shims/compass", "compile", "$project_path"]
},
"windows":
{
"cmd": ["compasswatch.bat", "$project_path"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment