Class: Guard::Stitch

Inherits:
Guard
  • Object
show all
Defined in:
lib/guard/stitch.rb

Instance Method Summary collapse

Constructor Details

#initialize(watchers = [], options = {}) ⇒ Stitch

Returns a new instance of Stitch.



9
10
11
12
# File 'lib/guard/stitch.rb', line 9

def initialize(watchers = [], options = {})
  super(watchers, options)
  @output = options.delete(:output)
end

Instance Method Details

#reloadObject



18
19
20
# File 'lib/guard/stitch.rb', line 18

def reload
  stitch
end

#run_allObject



22
23
24
# File 'lib/guard/stitch.rb', line 22

def run_all
  stitch
end

#run_on_change(paths) ⇒ Object



26
27
28
# File 'lib/guard/stitch.rb', line 26

def run_on_change(paths)
  stitch
end

#startObject



14
15
16
# File 'lib/guard/stitch.rb', line 14

def start
  stitch
end