Extension Details

- RSpec Runner
- by Matthew McGarvey
- 4 Recent Installs | 524 Total Installs
- Easily run your specs with keyboard shortcuts
- Repository
- Bug Reports
-
Read Files
-
Launch Subprocesses
-
This extension is allowed to:
Readme
RSpec Commands for Nova
Description
Provides three commands for running RSpec tests. Outputs any errors on their files.
Shortcuts
[
{
"title": "Run all specs",
"command": "rspec-runner.allSpecs",
"shortcut": "ctrl-r",
"when": "editorHasFocus"
},
{
"title": "Run specs in file",
"command": "rspec-runner.fileSpecs",
"shortcut": "ctrl-t",
"when": "editorHasFocus",
"filter": {
"syntaxes": ["ruby"]
}
},
{
"title": "Run specs on line",
"command": "rspec-runner.lineSpecs",
"shortcut": "ctrl-l",
"when": "editorHasFocus",
"filter": {
"syntaxes": ["ruby"]
}
}
]
Release Notes
0.3.0
- Better handling of file names and line numbers (#1)
0.2.0
- Add missing commands
- Add ability to run RSpec with Bundler
0.1.0
- Initial release