Edited README.rdoc via GitHub

This commit is contained in:
Rémy Coutable 2011-03-03 12:51:16 -08:00
parent b3d61c251c
commit 072e639128

View File

@ -8,9 +8,9 @@ Guard is a command line tool that easily handle events on files modifications.
- {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)
- Tested on Ruby 1.8.6, 1.8.7 & 1.9.2
- 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).
- Tested on Ruby 1.8.6, 1.8.7 & 1.9.2.
== Install
@ -86,9 +86,9 @@ Options list is available with:
Signal handlers are used to interact with Guard:
- 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.
- <tt>Ctrl-C</tt> - Calls each guard's <tt>stop</tt> method, in the same order they are declared in the Guarfile, and then quits Guard itself.
- <tt>Ctrl-\</tt> - Calls each guard's <tt>run_all</tt> method, in the same order they are declared in the Guarfile.
- <tt>Ctrl-Z</tt> - Calls each guard's <tt>reload</tt> method, in the same order they are declared in the Guarfile.
== Available Guards