Last active
August 29, 2015 14:07
-
-
Save daymun/45db0b939c1767930462 to your computer and use it in GitHub Desktop.
Sublime Text 3 settings for https://github.com/maltize/sublime-text-2-ruby-tests
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
[ | |
{ "keys": ["super+b"], "command": "run_single_ruby_test", | |
"context": [ { "key": "selector", "operator": "equal", | |
"operand": "source.ruby, source.rspec, text.gherkin.feature" | |
} ] | |
}, | |
{ "keys": ["super+shift+b"], "command": "run_all_ruby_test", | |
"context": [ { "key": "selector", "operator": "equal", | |
"operand": "source.ruby, source.rspec, text.gherkin.feature" | |
} ] | |
}, | |
{ "keys": ["super+escape"], "command": "run_last_ruby_test" }, | |
{ "keys": ["super+shift+x"], "command": "show_test_panel" } | |
] |
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
{ | |
"run_rspec_command": "export PATH=~/.rbenv/shims:$PATH; spring rspec --format=doc --format=Nc {relative_path}", | |
"run_single_rspec_command": "export PATH=~/.rbenv/shims:$PATH; spring rspec --format=doc --format=Nc {relative_path}:{line_number}", | |
"save_on_run": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment