README.rdoc in guard-0.1.0 vs README.rdoc in guard-0.1.1
- old
+ new
@@ -11,11 +11,11 @@
- Growl notification (please install {growlnotify}[http://growl.info/documentation/growlnotify.php])
- Libnotify notification
== Install
-Only Mac OS X (10.5+) & Linux are supported. Tested on Ruby 1.8.7 & 1.9.2dev.
+Only Mac OS X (10.5+) & Linux are supported. Tested on Ruby 1.8.7 & 1.9.2.
Install the gem:
gem install guard
@@ -73,16 +73,16 @@
== Create a guard
Create a new guard is very easy, just create a new gem with this basic structure:
- - lib/
- - guard/
- - guard-name/
- - templates/
- - Guardfile (needed for guard init <guard-name>)
- - guard-name.rb
+ lib/
+ guard/
+ guard-name/
+ templates/
+ Guardfile (needed for guard init <guard-name>)
+ guard-name.rb
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'
@@ -124,11 +124,11 @@
Looks at available guards code for more concrete example.
== Guardfile DSL
-Guardfile DSL consists of just 2 simple methods: guard & watch. Example:
+Guardfile DSL consists of just two simple methods: guard & watch. Example:
guard 'rspec', :version => 2 do
watch('^spec/(.*)_spec.rb')
watch('^lib/(.*)\.rb') { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('^spec/spec_helper.rb') { "spec" }
@@ -150,6 +150,6 @@
Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change
you make.
== Authors
-{Thibaud Guillaume-Gentil}[http://github.com/thibaudgg].
+{Thibaud Guillaume-Gentil}[http://github.com/thibaudgg]
\ No newline at end of file