Sha256: c46c4c1cb7f2a26c4fc743e5ad15f7f4a29e076a8dc04812b8ee0616e4deec52
Contents?: true
Size: 353 Bytes
Versions: 28
Compression:
Stored size: 353 Bytes
Contents
module Overcommit::Hook::Shared # Shared code used by all BundleInstall hooks. Runs `bundle install` when a # change is detected in the repository's dependencies. # # @see http://bundler.io/ module BundleInstall def run result = execute(command) return :fail, result.stdout unless result.success? :pass end end end
Version data entries
28 entries across 26 versions & 2 rubygems