module Guard::Git::DslExtensions

Public Instance Methods

watch(pattern, &action) click to toggle source
Calls superclass method
# File lib/guard/git/dsl_extensions.rb, line 8
def watch(pattern, &action)
  super(ChangedFilesMatcher.new(pattern), &action)
end