class Guard::Dsl
def ignore_paths(*paths)
- See: Guard::Listener -
Parameters:
-
paths
(Array
) -- the list of paths to ignore
Other tags:
- Example: Ignore some paths -
def ignore_paths(*paths) UI.info "Ignoring paths: #{ paths.join(', ') }" ::Guard.listener.ignore_paths.push(*paths) end