Class: Guard::Bower

Inherits:
Plugin
  • Object
show all
Defined in:
lib/guard/bower.rb

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Bower

Returns a new instance of Bower.



6
7
8
# File 'lib/guard/bower.rb', line 6

def initialize(options = {})
  super
end

Instance Method Details

#reloadObject



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

def reload
  bower_install
end

#run_on_changes(paths) ⇒ Object



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

def run_on_changes(paths)
  bower_install
end

#startObject



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

def start
  bower_install
end