module Bones::Plugins::Git

def post_load

def post_load
  have?(:git) {
    Dir.entries(Dir.pwd).include?('.git') and
    system("git --version 2>&1 > #{DEV_NULL}")
  }
end