• Sign In



  • Categories

    Extension Details



    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