This project provides integration of Guard into the Sublime Text 2 editor. I wrote this as a convenience tool to help improve my daily workflow while deving on numerous projects using BDD and TDD.
This plugin provides an interface for controlling Guard and viewing Guards output within the Sublime Text 2 editor. Not having to switch between a terminal and an editor to see Red/Green states improves workflow drastically.
All of the commands are available via the command palette (super+shift+p).
When performing some operations in Sublime Text 2, like search, it hides the Guard output. Therefore, this plugin provides a default key binding (super+shift+c) to show or reshow the Guard output. It also has an auto show feature that shows or reshows the Guard output automatically when any new content comes in from the Guard process.
-
Commands available when Guard is NOT running
- Start Guard
-
Commands available all of the time
- Hide Guard Output (disable auto show)
- Show Guard Output (enable auto show) (super+shift+c)
-
Commands available when Guard IS running
- Stop Guard
- Run all Tests
- Reload Guard
- Toggle Notifications
- Pause/Unpause
- Output Help
This plugin is available via Sublime Package Control. To install using the Sublime Package Control perform the following steps:
- Open the Command Palette using super+shift+p and select
Package Control: Install Package
- Select
Guard
from the popup menu and press return - Wait for the status bar in the lower left conrner to notify you the install is complete.
If installed via Sublime Package Control. The plugin will be upgraded to the latest version automatically at Sublime Text 2 startup. Therefore, if you want to force an upgrade of the plugins simply Quit Sublime Text 2 and start it up again.
To install this Sublime Text 2 plugin, simply run the following commands:
cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/
git clone git://github.com/cyphactor/sublime_guard.git Guard
To upgrade to the latest version, simply run the following commands:
cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/Guard
git pull
As mentioned above the primary way of using this plugin is via the command palette (super+shift+p). Once the command palette is up, fuzzy match the intendend command, and press the return key.
If Guard is not currently running, start Guard using the "Start Guard" command. It will bring up a pane at the bottom of the screen and show the output of Guard as it runs.
The Guard output can be shown and hidden using the "Show Guard Output" and "Hide Guard Output" command respectively. The "Show Guard Output" command is also available via the default key binding (super+shift+c).
A few of my favorites commands are "Run all Tests", "Reload Guard", and "Pause/Unpause". The "Run all Tests" command will simply request that Guard run all of the tests. The "Reload Guard" command is useful if changes have been made to Rails config initializers or something else that requires reloading. The "Pause/Unpause" command is primarily useful when switching branches or rebasing. It will temporarily prevent Guard from monitoring the project files for changes.
This plugin supports RVM out of the box. Basically, it means that it first checks to see if RVM is installed and loads it. Once RVM is loaded it then looks to see if any of the top level folders in Sublime Text 2 contain a project specific .rvmrc. If one does it will load that .rvmrc and attempt to run Guard on that project.
In the case where it can't find RVM it simply tries to run Guard assuming it is installed as a system gem.
Yes.
This error message is a result of the project currently loaded in Sublime Text 2 missing either the Guardfile, the Gemfile, or both. Currently, this plugin requires a Guardfile and a Gemfile to be present in the projects root path to run Guard.
The best place to find out about Guardfiles is the Guard project page.
The best place to find out about Gemfiles is the Bundler project.
Please report all bugs/issues via the Issues tab.
All feature requests or change requests should be made via the Issues tab.
As with all of my Open Source Projects I am open to contributions. There are numerous ways one can contribute.
- Contribute Code/Documentation - If you would like to contribute code or documentation changes please fork the repository and submit a pull request.
- Feature Requests/Bug Reports - If you would like to contribute by submitting either a feature request or a bug report you may do so via the Issues tab.