module Overcommit::Hook::Shared::BowerInstall

Shared code used by all BowerInstall hooks. Runs ‘bower install` when a change is detected in the repository’s dependencies.

@see bower.io/

Public Instance Methods

run() click to toggle source
# File lib/overcommit/hook/shared/bower_install.rb, line 9
def run
  result = execute(command)
  return :fail, result.stderr unless result.success?

  :pass
end