2010-10-03 21:00:33 +00:00
= Guard
2010-10-08 13:00:36 +00:00
Guard is a command line tool to easly handle events on files modifications.
== Features
2010-10-26 19:24:04 +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)
2010-10-21 18:56:09 +00:00
- {Inotify}[http://en.wikipedia.org/wiki/Inotify] support on Linux ({rb-inotify gem, >= 0.5.1}[https://rubygems.org/gems/rb-inotify] required)
2010-10-17 19:42:40 +00:00
- Polling for others (help us to support more systems)
- Super fast change detection (when polling not used)
2010-10-08 13:00:36 +00:00
- Automatic files modifications detection (even new files are detected)
2010-10-21 18:56:09 +00:00
- Growl notification ({growlnotify}[http://growl.info/documentation/growlnotify.php] & {growl gem}[https://rubygems.org/gems/growl] required)
- Libnotify notification ({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:
gem install guard
Add it to your Gemfile (inside test group):
gem 'guard'
Generate an empty Guardfile with:
guard init
Add guard(s) you need (see available guards below)
2010-10-19 19:49:54 +00:00
=== On Mac OS X
Install rb-fsevent for {FSEvent}[http://en.wikipedia.org/wiki/FSEvents] support
gem install rb-fsevent
Install growl for Growl notification support
gem install growl
2010-10-25 19:36:45 +00:00
And add it to you Gemfile
gem 'growl'
2010-10-19 19:49:54 +00:00
=== On Linux
Install rb-inotify for {inotify}[http://en.wikipedia.org/wiki/Inotify] support
gem install rb-inotify
Install libnotify for libonity notification support
gem install libnotify
2010-10-25 19:36:45 +00:00
And add it to you Gemfile
gem 'libnotify'
2010-10-08 13:00:36 +00:00
== Usage
Just launch Guard inside your ruby/rails project with:
guard
2010-10-17 19:42:40 +00:00
Shell can be cleared after each change with:
guard -c
2010-10-08 13:00:36 +00:00
Options list is available with:
2010-10-17 19:42:40 +00:00
guard help [TASK]
2010-10-08 13:00:36 +00:00
Signal handlers are used to interact with Guard:
- Ctrl-C - Quit Guard (call stop guard(s) method before)
- Ctrl-\ - Call run_all guard(s) method
- Ctrl-Z - Call reload guard(s) method
== Available Guards
2010-10-26 19:47:36 +00:00
- {guard-bundler}[http://github.com/guard/guard-bundler] by {Yann Lugrin}[http://github.com/yannlugrin]
- {guard-coffeescript}[http://github.com/guard/guard-coffeescript] by {Michael Kessler}[http://github.com/netzpirat]
2010-10-31 19:48:29 +00:00
- {guard-compass}[http://github.com/guard/guard-compass] by {Olivier Amblet}[http://github.com/oliamb]
- {guard-cucumber}[http://github.com/guard/guard-cucumber] by {Michael Kessler}[http://github.com/netzpirat]
2010-11-11 07:22:35 +00:00
- {guard-ego}[http://github.com/guard/guard-ego] by {Fabio Kuhn}[http://github.com/mordaroso]
- {guard-jammit}[http://github.com/guard/guard-jammit] by {Pelle Braendgaard}[http://github.com/pelle]
2010-10-31 19:48:29 +00:00
- {guard-livereload}[http://github.com/guard/guard-livereload] by {Thibaud Guillaume-Gentil}[http://github.com/thibaudgg]
- {guard-minitest}[http://github.com/guard/guard-minitest] by {Yann Lugrin}[http://github.com/yannlugrin]
2010-10-28 09:00:18 +00:00
- {guard-nanoc}[http://github.com/guard/guard-nanoc] by {Yann Lugrin}[http://github.com/yannlugrin]
2010-10-31 19:48:29 +00:00
- {guard-passenger}[http://github.com/guard/guard-passenger] by {Fabio Kuhn}[http://github.com/mordaroso]
- {guard-rspec}[http://github.com/guard/guard-rspec] by {Thibaud Guillaume-Gentil}[http://github.com/thibaudgg]
- {guard-sass}[http://github.com/guard/guard-sass] by {Joshua Hawxwell}[http://github.com/hawx]
- {guard-shell}[http://github.com/guard/guard-shell] by {Joshua Hawxwell}[http://github.com/hawx]
2010-11-11 07:22:35 +00:00
- {guard-spork}[http://github.com/guard/guard-spork] by {Thibaud Guillaume-Gentil}[http://github.com/thibaudgg]
2010-10-31 19:48:29 +00:00
- {guard-test}[http://github.com/guard/guard-test] by {Rémy Coutable}[http://github.com/rymai]
2010-10-08 13:00:36 +00:00
=== Add a guard to your Guardfile
Add it to your Gemfile (inside test group):
gem '<guard-name>'
2010-10-17 19:42:40 +00:00
Add guard definition to your Guardfile by running this command:
2010-10-08 13:00:36 +00:00
guard init <guard-name>
You are good to go!
== Create a guard
Create a new guard is very easy, just create a new gem with this basic structure:
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
lib/guard/guard-name.rb inherit from guard/guard and should overwrite at least one of the five guard methods. Example:
require 'guard'
require 'guard/guard'
module Guard
class GuardName < Guard
2010-10-27 20:14:21 +00:00
def initialize(watchers = [], options = {})
super
# init stuff here, thx!
end
2010-10-08 13:00:36 +00:00
# ================
# = Guard method =
# ================
2010-10-27 13:18:00 +00:00
# If one of those methods raise an exception, the Guard instance
# will be removed from the active guard.
2010-10-08 13:00:36 +00:00
# Call 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
2010-10-27 13:18:00 +00:00
# Call with Ctrl-C signal (when Guard quit)
2010-10-08 13:00:36 +00:00
def stop
true
end
# Call with 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
# Call with 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
# Call on file(s) modifications
def run_on_change(paths)
true
end
end
end
Looks at available guards code for more concrete example.
== Guardfile DSL
2010-10-08 13:06:37 +00:00
Guardfile DSL consists of just two simple methods: guard & watch. Example:
2010-10-08 13:00:36 +00:00
guard 'rspec', :version => 2 do
2010-11-25 23:56:18 +00:00
watch('^spec/(.*)_spec\.rb')
watch('^lib/(.*)\.rb') { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('^spec/spec_helper\.rb') { "spec" }
watch('^spec/models/.*\.rb') { ["spec/models", "spec/acceptance"] }
watch('^spec/spec_helper\.rb') { `say hello` }
2010-10-08 13:00:36 +00:00
end
- "guard" method allow to add a guard with an optional options hash
- "watch" method allow to define which files are supervised per this guard. A optional block can be added to overwrite path sending to run_on_change guard method or launch simple command.
== TODO
2010-10-27 20:14:21 +00:00
- Add more specs! Shame on me :)
2010-10-08 13:00:36 +00:00
== Development
- Source hosted at {GitHub}[http://github.com/guard/guard]
- Report issues/Questions/Feature requests on {GitHub Issues}[http://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.
== Authors
2010-10-08 13:03:45 +00:00
{Thibaud Guillaume-Gentil}[http://github.com/thibaudgg]