Skip to content

Instantly share code, notes, and snippets.

@flanger001
Last active October 18, 2017 22:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flanger001/50e5f51e13cc916e74d284b6369859a5 to your computer and use it in GitHub Desktop.
Save flanger001/50e5f51e13cc916e74d284b6369859a5 to your computer and use it in GitHub Desktop.
Rubcop git hook
#! /usr/bin/env ruby
if system('bundle exec rubocop')
puts 'Rubocop is pleased.'
else
puts 'Rubocop demands penance.'
exit(1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment