Method: Autocuke::Runtime#watch_feature_files

Defined in:
lib/autocuke/runtime.rb

#watch_feature_filesObject

Adds each of the runtime’s files to EM’s file watch list



48
49
50
51
52
# File 'lib/autocuke/runtime.rb', line 48

def watch_feature_files
  files.each do |file|
    watch(file)
  end 
end