master/README.rdoc

242 lines
8.6 KiB
Plaintext
Raw Normal View History

2010-10-03 21:00:33 +00:00
= Guard
Guard is a command line tool that easily handle events on files modifications.
2010-10-08 13:00:36 +00:00
== Features
2011-03-03 20:44:02 +00:00
- {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).
- 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)
2010-10-18 19:45:31 +00:00
- Tested on Ruby 1.8.6, 1.8.7 & 1.9.2
2010-10-08 13:00:36 +00:00
== Install
Install the gem:
2011-03-03 20:44:02 +00:00
$ gem install guard
2010-10-08 13:00:36 +00:00
2011-03-03 20:44:02 +00:00
Add it to your Gemfile (inside the <tt>test</tt> group):
2010-10-08 13:00:36 +00:00
gem 'guard'
Generate an empty Guardfile with:
2011-03-03 20:44:02 +00:00
$ guard init
2010-10-08 13:00:36 +00:00
2011-03-03 20:44:02 +00:00
Add the guards you need to your Guardfile (see the existing guards below).
2010-10-08 13:00:36 +00:00
=== On Mac OS X
2011-03-03 20:44:02 +00:00
Install the rb-fsevent gem for {FSEvent}[http://en.wikipedia.org/wiki/FSEvents] support:
2011-03-03 20:44:02 +00:00
$ gem install rb-fsevent
2011-03-03 20:44:02 +00:00
Install the Growl gem if you want notification support:
2011-03-03 20:44:02 +00:00
$ gem install growl
And add it to you Gemfile:
2010-10-25 19:36:45 +00:00
gem 'growl'
=== On Linux
2011-03-03 20:44:02 +00:00
Install the rb-inotify gem for {inotify}[http://en.wikipedia.org/wiki/Inotify] support:
2011-03-03 20:44:02 +00:00
$ gem install rb-inotify
2011-03-03 20:44:02 +00:00
Install the Libnotify gem if you want notification support:
2011-03-03 20:44:02 +00:00
$ gem install libnotify
And add it to you Gemfile:
2010-10-25 19:36:45 +00:00
gem 'libnotify'
2010-10-08 13:00:36 +00:00
== Usage
2010-12-17 17:14:33 +00:00
Just launch Guard inside your Ruby / Rails project with:
2010-10-08 13:00:36 +00:00
2011-03-03 20:44:02 +00:00
$ guard [start]
2010-10-08 13:00:36 +00:00
2010-12-17 17:14:33 +00:00
or if you use Bundler, to run the Guard executable specific to your bundle:
2011-03-03 20:44:02 +00:00
$ bundle exec guard
== Command line options
Shell can be cleared after each change with:
2011-03-03 20:44:02 +00:00
$ guard --clear
$ guard -c # shortcut
2010-12-17 17:14:33 +00:00
2011-03-03 20:44:02 +00:00
The guards to start can be specified by group (see the Guardfile DSL below) specifying the <tt>--group</tt> (or <tt>-g</tt>) option:
2010-12-17 17:14:33 +00:00
2011-03-03 20:44:02 +00:00
$ guard --group group_name another_group_name
$ guard -g group_name another_group_name # shortcut
2010-10-08 13:00:36 +00:00
Options list is available with:
2011-03-03 20:44:02 +00:00
$ guard help [TASK]
2010-10-08 13:00:36 +00:00
== Signal handlers
2010-10-08 13:00:36 +00:00
Signal handlers are used to interact with Guard:
2011-03-03 20:49:31 +00:00
- Ctrl-C - Call each guard's <tt>stop</tt> method, in the same order they are declared in the Guarfile, and then quits Guard itself.
- Ctrl-\ - Call each guard's <tt>run_all</tt> method, in the same order they are declared in the Guarfile.
- Ctrl-Z - Call each guard's <tt>reload</tt> method, in the same order they are declared in the Guarfile.
2010-10-08 13:00:36 +00:00
== Available Guards
2010-11-30 21:46:52 +00:00
- {guard-bundler}[https://github.com/guard/guard-bundler] by {Yann Lugrin}[https://github.com/yannlugrin]
- {guard-coffeescript}[https://github.com/guard/guard-coffeescript] by {Michael Kessler}[https://github.com/netzpirat]
- {guard-compass}[https://github.com/guard/guard-compass] by {Olivier Amblet}[https://github.com/oliamb]
- {guard-cucumber}[https://github.com/guard/guard-cucumber] by {Michael Kessler}[https://github.com/netzpirat]
- {guard-ego}[https://github.com/guard/guard-ego] by {Fabio Kuhn}[https://github.com/mordaroso]
- {guard-jammit}[https://github.com/guard/guard-jammit] by {Pelle Braendgaard}[https://github.com/pelle]
2011-01-26 13:03:56 +00:00
- {guard-krl}[https://github.com/guard/guard-krl] by {Michael Farmer}[https://github.com/mikefarmer]
2011-01-05 08:04:54 +00:00
- {guard-less}[https://github.com/guard/guard-less] by {Brendan Erwin}[https://github.com/brendanjerwin]
2010-11-30 21:46:52 +00:00
- {guard-livereload}[https://github.com/guard/guard-livereload] by {Thibaud Guillaume-Gentil}[https://github.com/thibaudgg]
- {guard-minitest}[https://github.com/guard/guard-minitest] by {Yann Lugrin}[https://github.com/yannlugrin]
- {guard-nanoc}[https://github.com/guard/guard-nanoc] by {Yann Lugrin}[https://github.com/yannlugrin]
- {guard-passenger}[https://github.com/guard/guard-passenger] by {Fabio Kuhn}[https://github.com/mordaroso]
2011-02-25 20:08:04 +00:00
- {guard-pusher}[https://github.com/guard/guard-pusher] by {Klaus Hartl}[https://github.com/carhartl]
2010-11-30 21:46:52 +00:00
- {guard-rspec}[https://github.com/guard/guard-rspec] by {Thibaud Guillaume-Gentil}[https://github.com/thibaudgg]
- {guard-sass}[https://github.com/guard/guard-sass] by {Joshua Hawxwell}[https://github.com/hawx]
- {guard-shell}[https://github.com/guard/guard-shell] by {Joshua Hawxwell}[https://github.com/hawx]
- {guard-soca}[https://github.com/guard/guard-soca] by {Luke Amdor}[https://github.com/rubbish]
- {guard-spork}[https://github.com/guard/guard-spork] by {Thibaud Guillaume-Gentil}[https://github.com/thibaudgg]
- {guard-stendhal}[https://github.com/guard/guard-stendhal] by {Josep Mª Bach}[https://github.com/txus]
- {guard-test}[https://github.com/guard/guard-test] by {Rémy Coutable}[https://github.com/rymai]
2010-10-08 13:00:36 +00:00
=== Add a guard to your Guardfile
2011-03-03 20:44:02 +00:00
Add it to your Gemfile (inside the <tt>test</tt> group):
2010-10-08 13:00:36 +00:00
gem '<guard-name>'
2011-03-03 20:44:02 +00:00
Insert default guard's definition to your Guardfile by running this command:
2010-10-08 13:00:36 +00:00
2011-03-03 20:44:02 +00:00
$ guard init <guard-name>
2010-10-08 13:00:36 +00:00
You are good to go!
== Guardfile DSL
2011-03-03 20:44:02 +00:00
The Guardfile DSL consists of just three simple methods: <tt>guard</tt>, <tt>watch</tt> & <tt>group</tt>.
Required:
2011-03-03 20:44:02 +00:00
- The <tt>guard</tt> method allows you to add a guard with an optional hash of options.
- The <tt>watch</tt> 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 <tt>run_on_change</tt> guard method or to launch any arbitrary command.
Optional:
2011-03-03 20:44:02 +00:00
- The <tt>group</tt> method allows you to group several guards together. Groups to be run can be specified with the Guard DSL option <tt>--group</tt> (or <tt>-g</tt>). This comes in handy especially when you have a huge Guardfile and want to focus your development on a certain part.
Example:
group 'backend' do
guard 'bundler' do
2010-12-17 17:14:33 +00:00
watch('Gemfile')
end
2011-01-19 22:06:18 +00:00
2011-03-03 20:44:02 +00:00
guard 'rspec', :cli => '--color --format doc' do
2010-12-17 17:14:33 +00:00
# Regexp watch patterns are matched with Regexp#match
2011-03-03 20:44:02 +00:00
watch(%r{^spec/.+_spec\.rb})
2010-12-17 17:14:33 +00:00
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
2011-03-03 20:44:02 +00:00
watch(%r{^app/coffeescripts/.+\.coffee})
2010-12-17 17:14:33 +00:00
end
2011-01-19 22:06:18 +00:00
2010-12-17 17:14:33 +00:00
guard 'livereload' do
2011-03-03 20:44:02 +00:00
watch(%r{^app/.+\.(erb|haml)})
end
end
2011-03-03 20:44:02 +00:00
== Create a new guard
2010-10-08 13:00:36 +00:00
2011-03-03 20:44:02 +00:00
Creating a new guard is very easy, just create a new gem (<tt>bundle gem</tt> if you use Bundler) with this basic structure:
2010-10-08 13:00:36 +00:00
2010-10-08 13:03:45 +00:00
lib/
guard/
guard-name/
templates/
Guardfile (needed for guard init <guard-name>)
guard-name.rb
2010-10-08 13:00:36 +00:00
2011-03-03 20:44:02 +00:00
<tt>Guard::GuardName</tt> (in <tt>lib/guard/guard-name.rb</tt>) must inherit from <tt>Guard::Guard</tt> and should overwrite at least one of the five basic <tt>Guard::Guard</tt> instance methods. Example:
2010-10-08 13:00:36 +00:00
require 'guard'
require 'guard/guard'
2011-01-19 22:06:18 +00:00
2010-10-08 13:00:36 +00:00
module Guard
class GuardName < Guard
2011-01-19 22:06:18 +00:00
2011-03-03 20:44:02 +00:00
def initialize(watchers=[], options={})
2010-10-27 20:14:21 +00:00
super
# init stuff here, thx!
end
2011-01-19 22:06:18 +00:00
2010-10-08 13:00:36 +00:00
# ================
# = Guard method =
# ================
2011-01-19 22:06:18 +00:00
2011-03-03 20:44:02 +00:00
# If one of those methods raise an exception, the Guard::GuardName instance
# will be removed from the active guards.
2011-01-19 22:06:18 +00:00
2011-03-03 20:44:02 +00:00
# Called once when Guard starts
2010-10-27 20:14:21 +00:00
# Please override initialize method to init stuff
2010-10-08 13:00:36 +00:00
def start
true
end
2011-01-19 22:06:18 +00:00
2011-03-03 20:44:02 +00:00
# Called on Ctrl-C signal (when Guard quits)
2010-10-08 13:00:36 +00:00
def stop
true
end
2011-01-19 22:06:18 +00:00
2011-03-03 20:44:02 +00:00
# Called on Ctrl-Z signal
2010-10-27 20:14:21 +00:00
# This method should be mainly used for "reload" (really!) actions like reloading passenger/spork/bundler/...
2010-10-08 13:00:36 +00:00
def reload
true
end
2011-01-19 22:06:18 +00:00
2011-03-03 20:44:02 +00:00
# Called on Ctrl-/ signal
2010-10-27 20:14:21 +00:00
# This method should be principally used for long action like running all specs/tests/...
2010-10-08 13:00:36 +00:00
def run_all
true
end
2011-01-19 22:06:18 +00:00
2011-03-03 20:44:02 +00:00
# Called on file(s) modifications
2010-10-08 13:00:36 +00:00
def run_on_change(paths)
true
end
2011-01-19 22:06:18 +00:00
2010-10-08 13:00:36 +00:00
end
end
2011-03-03 20:44:02 +00:00
Please take a look at the existing guards' source code (see the list above) for more concrete example.
2010-10-08 13:00:36 +00:00
== Development
2011-03-03 20:44:02 +00:00
- Source hosted at {GitHub}[https://github.com/guard/guard].
- Report Issues/Questions/Feature requests on {GitHub Issues}[https://github.com/guard/guard/issues].
2010-10-08 13:00:36 +00:00
Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change
you make.
== Authors
2010-11-30 21:46:52 +00:00
{Thibaud Guillaume-Gentil}[https://github.com/thibaudgg]