class Guard::Flog

Public Instance Methods

reload() click to toggle source
# File lib/guard/flog.rb, line 13
def reload; end
run_all() click to toggle source
# File lib/guard/flog.rb, line 15
def run_all; end
run_on_changes(paths) click to toggle source
# File lib/guard/flog.rb, line 17
def run_on_changes(paths)
  Flogger.new.flog paths
end
start() click to toggle source
# File lib/guard/flog.rb, line 8
def start
  UI.info 'Guard::Flog is running'
  run_all if options[:all_on_start]
end