master/lib/guard/guard.rb
Thibaud Guillaume-Gentil 4d3744ff43 Initial commit
2010-10-03 23:00:33 +02:00

34 lines
467 B
Ruby

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