2011-09-03 23:13:23 +00:00
Guard [![Build Status ](http://travis-ci.org/guard/guard.png )](http://travis-ci.org/guard/guard)
2011-04-25 18:44:18 +00:00
=====
Guard is a command line tool that easily handle events on files modifications.
2011-06-10 21:14:34 +00:00
If you have any questions please join us on our [Google group ](http://groups.google.com/group/guard-dev ) or on `#guard` (irc.freenode.net).
2011-06-01 15:10:54 +00:00
2011-04-25 18:44:18 +00:00
Features
--------
* [FSEvent ](http://en.wikipedia.org/wiki/FSEvents ) support on Mac OS X 10.5+ (without RubyCocoa!, [rb-fsevent gem, >= 0.3.5 ](https://rubygems.org/gems/rb-fsevent ) required).
* [Inotify ](http://en.wikipedia.org/wiki/Inotify ) support on Linux ([rb-inotify gem, >= 0.5.1](https://rubygems.org/gems/rb-inotify) required).
2011-05-07 17:00:21 +00:00
* [Directory Change Notification ](http://msdn.microsoft.com/en-us/library/aa365261\(VS.85\ ).aspx) support on Windows ([rb-fchange, >= 0.0.2](https://rubygems.org/gems/rb-fchange) required).
2011-04-25 18:44:18 +00:00
* Polling on the other operating systems (help us to support more OS).
* Automatic & Super fast (when polling is not used) files modifications detection (even new files are detected).
2011-09-03 17:05:50 +00:00
* Visual notifications on Mac OSX ([Growl](http://growl.info)), Linux ([Libnotify](http://developer.gnome.org/libnotify)) and Windows ([Notifu](http://www.paralint.com/projects/notifu)).
2011-08-14 18:25:57 +00:00
* Tested against Ruby 1.8.7, 1.9.2 and REE.
Screencast
----------
2011-09-03 17:05:50 +00:00
Ryan Bates made a Railscast on Guard, you can view it here: http://railscasts.com/episodes/264-guard
2011-04-25 18:44:18 +00:00
Install
-------
Install the gem:
2011-05-07 17:09:43 +00:00
``` bash
2011-05-07 22:58:19 +00:00
$ gem install guard
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
2011-09-03 17:05:50 +00:00
Or add it to your Gemfile (inside the `development` group):
2011-04-25 18:44:18 +00:00
``` ruby
gem 'guard'
```
2011-09-03 17:05:50 +00:00
and install it via Bundler:
2011-09-03 17:07:08 +00:00
2011-09-03 17:05:50 +00:00
``` bash
$ bundle install
```
2011-04-25 18:44:18 +00:00
Generate an empty Guardfile with:
2011-05-07 17:09:43 +00:00
``` bash
2011-05-07 22:58:19 +00:00
$ guard init
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
2011-06-21 18:43:30 +00:00
You may optionally place a .Guardfile in your home directory to use it across multiple projects.
2011-09-03 17:05:50 +00:00
Also note that if a `.guard.rb` is found in your home directory, it will be appended to the Guardfile.
2011-05-25 18:23:08 +00:00
2011-04-25 18:44:18 +00:00
Add the guards you need to your Guardfile (see the existing guards below).
### On Mac OS X
Install the rb-fsevent gem for [FSEvent ](http://en.wikipedia.org/wiki/FSEvents ) support:
2011-05-07 17:09:43 +00:00
``` bash
2011-05-07 22:58:19 +00:00
$ gem install rb-fsevent
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
2011-09-03 17:05:50 +00:00
You have two possibilities:
2011-04-25 18:44:18 +00:00
2011-09-03 17:05:50 +00:00
Use the [growl_notify gem ](https://rubygems.org/gems/growl_notify ) (recommended):
2011-04-25 18:44:18 +00:00
2011-05-07 17:09:43 +00:00
``` bash
2011-06-28 20:58:23 +00:00
$ gem install growl_notify
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
2011-09-03 18:30:44 +00:00
Use the [growlnotify ](http://growl.info/extras.php#growlnotify ) (cli tool for growl) + the [growl gem ](https://rubygems.org/gems/growl ).
2011-09-03 17:07:08 +00:00
2011-09-03 17:05:50 +00:00
``` bash
$ brew install growlnotify
2011-08-17 12:27:40 +00:00
$ gem install growl
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
2011-08-17 12:27:40 +00:00
And add them to your Gemfile:
2011-04-25 18:44:18 +00:00
``` ruby
2011-06-07 19:10:49 +00:00
gem 'rb-fsevent'
2011-09-03 17:05:50 +00:00
gem 'growl_notify' # or gem 'growl'
2011-04-25 18:44:18 +00:00
```
2011-09-03 20:40:06 +00:00
The difference between growl and growl_notify is that growl_notify uses AppleScript to
2011-08-17 12:57:20 +00:00
display a message, whereas growl uses the `growlnotify` command. In general the AppleScript
2011-09-03 21:38:07 +00:00
approach is preferred, but you may also use the older growl gem. Have a look at the
[Guard Wiki ](https://github.com/guard/guard/wiki/Use-growl_notify-or-growl-gem ) for more information.
2011-08-17 12:27:40 +00:00
2011-04-25 18:44:18 +00:00
### On Linux
2011-09-03 17:05:50 +00:00
Install the [rb-inotify gem ](https://rubygems.org/gems/rb-inotify ) for [inotify ](http://en.wikipedia.org/wiki/Inotify ) support:
2011-04-25 18:44:18 +00:00
2011-05-07 17:09:43 +00:00
``` bash
2011-05-07 22:58:19 +00:00
$ gem install rb-inotify
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
2011-09-03 17:05:50 +00:00
Install the [libnotify gem ](https://rubygems.org/gems/libnotify ) if you want visual notification support:
2011-04-25 18:44:18 +00:00
2011-05-07 17:09:43 +00:00
``` bash
2011-05-07 22:58:19 +00:00
$ gem install libnotify
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
2011-06-07 19:10:49 +00:00
And add them to your Gemfile:
2011-04-25 18:44:18 +00:00
``` ruby
2011-06-07 19:10:49 +00:00
gem 'rb-inotify'
2011-04-25 18:44:18 +00:00
gem 'libnotify'
```
2011-05-07 12:18:32 +00:00
### On Windows
2011-09-03 17:05:50 +00:00
Install the [rb-fchange gem ](https://rubygems.org/gems/rb-fchange ) for [Directory Change Notification ](http://msdn.microsoft.com/en-us/library/aa365261\(VS.85\ ).aspx) support:
2011-05-07 12:18:32 +00:00
2011-05-07 17:09:43 +00:00
``` bash
2011-05-07 22:58:19 +00:00
$ gem install rb-fchange
2011-05-07 17:09:43 +00:00
```
2011-05-07 12:18:32 +00:00
2011-09-03 17:05:50 +00:00
Install the [win32console gem ](https://rubygems.org/gems/win32console ) if you want colors in your terminal:
2011-08-11 10:27:41 +00:00
``` bash
$ gem install win32console
```
2011-09-03 17:05:50 +00:00
Install the [rb-notifu gem ](https://rubygems.org/gems/rb-notifu ) if you want visual notification support:
2011-06-07 16:05:11 +00:00
``` bash
$ gem install rb-notifu
```
2011-06-07 19:10:49 +00:00
And add them to your Gemfile:
2011-06-07 16:05:11 +00:00
``` ruby
2011-06-07 19:10:49 +00:00
gem 'rb-fchange'
2011-06-07 16:05:11 +00:00
gem 'rb-notifu'
2011-08-13 14:50:27 +00:00
gem 'win32console'
2011-06-07 16:05:11 +00:00
```
2011-04-25 18:44:18 +00:00
Usage
-----
Just launch Guard inside your Ruby / Rails project with:
2011-05-07 17:09:43 +00:00
``` bash
2011-05-07 22:58:19 +00:00
$ guard [start]
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
or if you use Bundler, to run the Guard executable specific to your bundle:
2011-05-07 17:09:43 +00:00
``` bash
2011-06-19 10:23:34 +00:00
$ bundle exec guard [start]
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
2011-06-21 18:43:30 +00:00
Guard will look for a Guardfile in your current directory. If it does not find one, it will look in your `$HOME` directory for a .Guardfile.
2011-05-25 18:23:08 +00:00
2011-04-25 18:44:18 +00:00
Command line options
--------------------
2011-08-11 10:27:41 +00:00
### `-c`/`--clear` option
2011-06-19 10:23:34 +00:00
Shell can be cleared after each change:
2011-04-25 18:44:18 +00:00
2011-05-07 17:09:43 +00:00
``` bash
$ guard --clear
$ guard -c # shortcut
```
2011-04-25 18:44:18 +00:00
2011-08-11 10:27:41 +00:00
### `-n`/`--notify` option
2011-06-19 10:23:34 +00:00
Notifications (growl/libnotify) can be disabled:
2011-04-25 18:44:18 +00:00
2011-05-07 17:09:43 +00:00
``` bash
$ guard --notify false
2011-05-10 19:22:25 +00:00
$ guard -n f # shortcut
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
2011-05-28 17:33:51 +00:00
Notifications can also be disabled globally by setting a `GUARD_NOTIFY` environment variable to `false`
2011-05-06 21:19:31 +00:00
2011-08-11 10:27:41 +00:00
### `-g`/`--group` option
2011-06-19 10:23:34 +00:00
Only certain guards groups can be run (see the Guardfile DSL below for creating groups):
2011-04-25 18:44:18 +00:00
2011-05-07 17:09:43 +00:00
``` bash
$ guard --group group_name another_group_name
$ guard -g group_name another_group_name # shortcut
```
2011-04-25 18:44:18 +00:00
2011-08-11 10:27:41 +00:00
### `-d`/`--debug` option
2011-06-19 10:23:34 +00:00
Guard can be run in debug mode:
2011-06-19 09:54:17 +00:00
``` bash
$ guard --debug
$ guard -d # shortcut
```
2011-08-11 10:27:41 +00:00
### `-w`/`--watchdir` option
Guard can watch in any directory (instead of the current directory):
``` bash
$ guard --watchdir ~/your/fancy/project
$ guard -w ~/your/fancy/project # shortcut
```
### `-G`/`--guardfile` option
Guard can use a Guardfile not located in the current directory:
``` bash
$ guard --guardfile ~/.your_global_guardfile
$ guard -G ~/.your_global_guardfile # shortcut
```
2011-06-19 09:54:17 +00:00
An exhaustive list of options is available with:
2011-04-25 18:44:18 +00:00
2011-05-07 17:09:43 +00:00
``` bash
2011-05-07 22:58:19 +00:00
$ guard help [TASK]
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
2011-09-03 20:40:06 +00:00
Interactions
------------
2011-04-25 18:44:18 +00:00
2011-09-04 16:29:18 +00:00
**From version >= 0.7.0 Posix Signal handlers are no more used to interact with Guard. If you're using a version < 0.7 , please refer to the [README in the v0.6 branch ](https://github.com/guard/guard/blob/v0.6/README.md ).**
2011-04-25 18:44:18 +00:00
2011-09-03 20:40:06 +00:00
When Guard do nothing you can interact with by entering a command + hitting enter:
2011-04-25 18:44:18 +00:00
2011-09-03 20:40:06 +00:00
* `stop|quit|exit|s|q|e + enter` - Calls each guard's `#stop` method, in the same order they are declared in the Guardfile, and then quits Guard itself.
* `reload|r|z + enter` - Calls each guard's `#reload` method, in the same order they are declared in the Guardfile.
* `pause|p + enter` - Toggle files modification listening. Useful when switching git branches.
* `just enter (no commands)` - Calls each guard's `#run_all` method, in the same order they are declared in the Guardfile.
2011-05-31 12:28:59 +00:00
2011-04-25 18:44:18 +00:00
Available Guards
----------------
2011-06-19 10:36:44 +00:00
A list of the available guards is present [in the wiki ](https://github.com/guard/guard/wiki/List-of-available-Guards ).
2011-04-25 18:44:18 +00:00
### Add a guard to your Guardfile
2011-06-19 10:23:34 +00:00
Add it to your Gemfile (inside the `development` group):
2011-04-25 18:44:18 +00:00
``` ruby
gem '< guard-name > '
```
2011-08-09 13:08:53 +00:00
You can list all guards installed on your system with:
``` bash
$ guard list
```
2011-04-25 18:44:18 +00:00
Insert default guard's definition to your Guardfile by running this command:
2011-05-07 17:09:43 +00:00
``` bash
$ guard init < guard-name >
```
2011-04-25 18:44:18 +00:00
2011-06-19 10:23:34 +00:00
You are good to go, or you can modify your guards' definition to suit your needs.
2011-04-25 18:44:18 +00:00
Guardfile DSL
-------------
2011-09-04 16:47:51 +00:00
The Guardfile DSL consists of the following methods:
2011-04-25 18:44:18 +00:00
2011-09-04 16:47:51 +00:00
* `#guard` : allows you to add a guard with an optional hash of options.
* `#watch` : allows you to define which files are supervised by this guard. An optional block can be added to overwrite the paths sent to the guard's `#run_on_change` method or to launch any arbitrary command.
* `#group` : allows you to group several guards together. Groups to be run can be specified with the Guard DSL option `--group` (or `-g` ). This comes in handy especially when you have a huge Guardfile and want to focus your development on a certain part. Guards that don't belong to a group are considered global and are always run.
* `#callback` : allows you to execute arbitrary code before or after any of the `start` , `stop` , `reload` , `run_all` and `run_on_change` guards' method. You can even insert more hooks inside these methods. Please [checkout the Wiki page ](https://github.com/guard/guard/wiki/Hooks-and-callbacks ) for more details.
* `#ignore_paths` : allows you to ignore top level directories altogether. This comes is handy when you have large amounts of non-source data in you project. By default .bundle, .git, log, tmp, and vendor are ignored. Currently it is only possible to ignore the immediate descendants of the watched directory.
2011-04-25 18:44:18 +00:00
Example:
``` ruby
2011-09-01 11:43:02 +00:00
ignore_paths 'foo', 'bar'
2011-04-25 18:44:18 +00:00
group 'backend' do
guard 'bundler' do
watch('Gemfile')
end
guard 'rspec', :cli => '--color --format doc' do
# Regexp watch patterns are matched with Regexp#match
2011-06-19 10:23:34 +00:00
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch(%r{^spec/models/.+\.rb$}) { ["spec/models", "spec/acceptance"] }
watch(%r{^spec/.+\.rb$}) { `say hello` }
2011-04-25 18:44:18 +00:00
# String watch patterns are matched with simple '=='
watch('spec/spec_helper.rb') { "spec" }
end
end
group 'frontend' do
guard 'coffeescript', :output => 'public/javascripts/compiled' do
2011-06-19 10:23:34 +00:00
watch(%r{^app/coffeescripts/.+\.coffee$})
2011-04-25 18:44:18 +00:00
end
guard 'livereload' do
2011-06-19 10:23:34 +00:00
watch(%r{^app/.+\.(erb|haml)$})
2011-04-25 18:44:18 +00:00
end
end
```
2011-09-04 16:47:51 +00:00
Using a Guardfile without the `guard` binary
--------------------------------------------
2011-06-19 10:36:44 +00:00
2011-05-28 17:33:51 +00:00
The Guardfile DSL can also be used in a programmatic fashion by calling directly `Guard::Dsl.evaluate_guardfile` .
Available options are as follow:
* `:guardfile` - The path to a valid Guardfile.
* `:guardfile_contents` - A string representing the content of a valid Guardfile
2011-06-19 10:23:34 +00:00
Remember, without any options given, Guard will look for a Guardfile in your current directory and if it does not find one, it will look for it in your `$HOME` directory.
2011-05-28 17:33:51 +00:00
For instance, you could use it as follow:
``` ruby
gem 'guard'
require 'guard'
Guard.setup
2011-06-19 10:23:34 +00:00
Guard::Dsl.evaluate_guardfile(:guardfile => '/your/custom/path/to/a/valid/Guardfile')
2011-05-28 17:33:51 +00:00
# or
Guard::Dsl.evaluate_guardfile(:guardfile_contents => "
guard 'rspec' do
2011-06-19 10:23:34 +00:00
watch(%r{^spec/.+_spec\.rb$})
2011-05-28 17:33:51 +00:00
end
")
```
2011-06-21 15:00:00 +00:00
### Listing defined guards/groups for the current project
You can list the defined groups and guards for the current Guardfile from the command line using `guard show` or `guard -T` :
``` bash
# guard -T
(global):
shell
Group backend:
bundler
2011-08-04 01:15:27 +00:00
rspec: cli => "--color --format doc"
2011-06-21 15:00:00 +00:00
Group frontend:
coffeescript: output => "public/javascripts/compiled"
livereload
```
2011-08-31 07:47:03 +00:00
User config file
----------------
2011-09-03 17:05:50 +00:00
If a `.guard.rb` is found in your home directory, it will be appended to
2011-08-31 07:47:03 +00:00
the Guardfile. This can be used for tasks you want guard to handle but
other users probably don't. For example, indexing your source tree with
[Ctags ](http://ctags.sourceforge.net ):
``` ruby
guard 'shell' do
watch(%r{^(?:app|lib)/.+\.rb$}) { `ctags -R` }
end
```
2011-04-25 18:44:18 +00:00
Create a new guard
------------------
2011-05-07 17:00:21 +00:00
Creating a new guard is very easy, just create a new gem (`bundle gem` if you use Bundler) with this basic structure:
2011-04-25 18:44:18 +00:00
2011-06-19 10:36:44 +00:00
```
.travis.yml # bonus point!
CHANGELOG.md # bonus point!
Gemfile
guard-name.gemspec
Guardfile
lib/
guard/
guard-name/
templates/
Guardfile # needed for `guard init <guard-name>`
version.rb
guard-name.rb
test/ # or spec/
README.md
```
2011-04-25 18:44:18 +00:00
2011-06-19 10:23:34 +00:00
`Guard::GuardName` (in `lib/guard/guard-name.rb` ) must inherit from `Guard::Guard` and should overwrite at least one of the five basic `Guard::Guard` instance methods.
Here is an example scaffold for `lib/guard/guard-name.rb` :
2011-04-25 18:44:18 +00:00
``` ruby
require 'guard'
require 'guard/guard'
module Guard
class GuardName < Guard
def initialize(watchers=[], options={})
super
# init stuff here, thx!
end
# =================
# = Guard methods =
# =================
# If one of those methods raise an exception, the Guard::GuardName instance
# will be removed from the active guards.
# Called once when Guard starts
# Please override initialize method to init stuff
def start
true
end
# Called on Ctrl-C signal (when Guard quits)
def stop
true
end
# Called on Ctrl-Z signal
# This method should be mainly used for "reload" (really!) actions like reloading passenger/spork/bundler/...
def reload
true
end
2011-05-27 12:13:39 +00:00
# Called on Ctrl-\ signal
2011-04-25 18:44:18 +00:00
# This method should be principally used for long action like running all specs/tests/...
def run_all
true
end
# Called on file(s) modifications
def run_on_change(paths)
true
end
end
end
```
2011-06-19 10:23:34 +00:00
Please take a look at the [existing guards' source code ](https://github.com/guard/guard/wiki/List-of-available-Guards ) for more concrete example and inspiration.
2011-04-25 18:44:18 +00:00
Alternatively, a new guard can be added inline to a Guardfile with this basic structure:
``` ruby
require 'guard/guard'
module ::Guard
2011-05-07 17:00:21 +00:00
class InlineGuard < ::Guard::Guard
2011-04-25 18:44:18 +00:00
def run_all
true
end
def run_on_change(paths)
true
end
end
end
```
2011-06-19 10:23:34 +00:00
Here is a very cool example by [@avdi ](https://github.com/avdi ) : http://avdi.org/devblog/2011/06/15/a-guardfile-for-redis
2011-04-25 18:44:18 +00:00
Development
-----------
* Source hosted at [GitHub ](https://github.com/guard/guard ).
2011-06-10 21:14:34 +00:00
* Report issues and feature requests to [GitHub Issues ](https://github.com/guard/guard/issues ).
2011-04-25 18:44:18 +00:00
2011-09-04 16:47:51 +00:00
Pull requests are very welcome! Please try to follow these simple "rules", though:
- Please create a topic branch for every separate change you make;
- Make sure your patches are well tested;
- Update the README (if applicable);
- Update the CHANGELOG (maybe not for a typo but don't hesitate!);
- Please **do not change** the version number.
2011-04-25 18:44:18 +00:00
2011-06-10 21:14:34 +00:00
For questions please join us on our [Google group ](http://groups.google.com/group/guard-dev ) or on `#guard` (irc.freenode.net).
2011-04-25 18:44:18 +00:00
Author
------
2011-04-25 18:45:48 +00:00
[Thibaud Guillaume-Gentil ](https://github.com/thibaudgg )
2011-05-07 17:00:21 +00:00
Contributors
2011-09-04 16:47:51 +00:00
------------
2011-05-07 17:00:21 +00:00
2011-05-25 18:23:08 +00:00
https://github.com/guard/guard/contributors