Skip to content

Commit

Permalink
Edited README.md via GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémy Coutable committed Sep 28, 2011
1 parent db949bf commit 309ecc7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -338,7 +338,7 @@ Here is an example scaffold for `lib/guard/guard-name.rb`:
module Guard
class GuardName < Guard

def initialize(watchers=[], options={})
def initialize(watchers = [], options = {})
super
# init stuff here, thx!
end
Expand Down Expand Up @@ -378,6 +378,11 @@ Here is an example scaffold for `lib/guard/guard-name.rb`:
true
end

# Called on file(s) deletions
def run_on_deletion(paths)
true
end

end
end

Expand Down

0 comments on commit 309ecc7

Please sign in to comment.