master/lib/guard/guard.rb

34 lines
467 B
Ruby
Raw Normal View History

2010-10-03 21:00:33 +00:00
module Guard
class Guard
attr_accessor :watchers, :options
def initialize(watchers = [], options = {})
@watchers, @options = watchers, options
end
# ================
# = Guard method =
# ================
def start
true
end
def stop
true
end
def reload
true
end
def run_all
true
end
def run_on_change(paths)
true
end
end
end