master/README.markdown

315 lines
7.5 KiB
Markdown
Raw Normal View History

2011-04-25 18:44:18 +00:00
Guard
=====
![travis-ci](http://travis-ci.org/guard/guard.png)
2011-04-25 18:44:18 +00:00
Guard is a command line tool that easily handle events on files modifications.
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).
* Growl notifications ([growlnotify](http://growl.info/documentation/growlnotify.php) & [growl gem](https://rubygems.org/gems/growl) required).
* Libnotify notifications ([libnotify gem](https://rubygems.org/gems/libnotify) required).
2011-05-06 20:10:38 +00:00
* Tested on Ruby 1.8.7, 1.9.2 && ree.
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-05-07 17:00:21 +00:00
Add it to your Gemfile (inside the `test` group):
2011-04-25 18:44:18 +00:00
``` ruby
gem 'guard'
```
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
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
Install the Growl gem if you want notification support:
2011-05-07 17:09:43 +00:00
``` bash
2011-05-07 22:58:19 +00:00
$ gem install growl
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
And add it to you Gemfile:
``` ruby
gem 'growl'
```
### On Linux
Install the rb-inotify gem for [inotify](http://en.wikipedia.org/wiki/Inotify) support:
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
Install the Libnotify gem if you want notification support:
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
And add it to you Gemfile:
``` ruby
gem 'libnotify'
```
### On Windows
Install the rb-fchange gem for [Directory Change Notification](http://msdn.microsoft.com/en-us/library/aa365261\(VS.85\).aspx) support:
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-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-05-07 22:58:19 +00:00
$ bundle exec guard
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
Command line options
--------------------
Shell can be cleared after each change with:
2011-05-07 17:09:43 +00:00
``` bash
$ guard --clear
$ guard -c # shortcut
```
2011-04-25 18:44:18 +00:00
Notifications (growl/libnotify) can be disabled with:
2011-05-07 17:09:43 +00:00
``` bash
$ guard --notify false
$ guard -n f # shortcut
2011-05-07 17:09:43 +00:00
```
2011-04-25 18:44:18 +00:00
Notifications can also be disabled by setting a `GUARD_NOTIFY` environment variable to `false`
2011-05-07 17:00:21 +00:00
The guards to start can be specified by group (see the Guardfile DSL below) specifying the `--group` (or `-g`) option:
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
Options list is available with:
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
Signal handlers
---------------
Signal handlers are used to interact with Guard:
2011-05-07 17:00:21 +00:00
* `Ctrl-C` - Calls each guard's `stop` method, in the same order they are declared in the Guardfile, and then quits Guard itself.
* `Ctrl-\` - Calls each guard's `run_all` method, in the same order they are declared in the Guardfile.
* `Ctrl-Z` - Calls each guard's `reload` method, in the same order they are declared in the Guardfile.
2011-04-25 18:44:18 +00:00
Available Guards
----------------
[Available Guards list](https://github.com/guard/guard/wiki/List-of-available-Guards) (on the wiki now)
### Add a guard to your Guardfile
2011-05-07 17:00:21 +00:00
Add it to your Gemfile (inside the `test` group):
2011-04-25 18:44:18 +00:00
``` ruby
gem '<guard-name>'
```
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
You are good to go!
Guardfile DSL
-------------
2011-05-07 17:00:21 +00:00
The Guardfile DSL consists of just three simple methods: `guard`, `watch` & `group`.
2011-04-25 18:44:18 +00:00
Required:
2011-05-07 17:00:21 +00:00
* The `guard` method allows you to add a guard with an optional hash of options.
* The `watch` method allows you to define which files are supervised by this guard. An optional block can be added to overwrite the paths sent to the `run_on_change` guard method or to launch any arbitrary command.
2011-04-25 18:44:18 +00:00
Optional:
2011-05-07 17:00:21 +00:00
* The `group` method 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.
2011-04-25 18:44:18 +00:00
Example:
``` ruby
group 'backend' do
guard 'bundler' do
watch('Gemfile')
end
guard 'rspec', :cli => '--color --format doc' do
# Regexp watch patterns are matched with Regexp#match
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` }
# 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
watch(%r{^app/coffeescripts/.+\.coffee})
end
guard 'livereload' do
watch(%r{^app/.+\.(erb|haml)})
end
end
```
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
lib/
guard/
guard-name/
templates/
Guardfile (needed for guard init <guard-name>)
guard-name.rb
2011-05-07 17:00:21 +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. Example:
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
# Called on Ctrl-/ signal
# 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
```
Please take a look at the existing guards' source code (see the list above) for more concrete example.
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
```
Development
-----------
* Source hosted at [GitHub](https://github.com/guard/guard).
* Report Issues/Questions/Feature requests on [GitHub Issues](https://github.com/guard/guard/issues).
Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change
you make.
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
------
https://github.com/guard/guard/contributors