Sha256: 4d37e04952152460204475b85503a524acf4d48c127f5727c2bc10caa500502d
Contents?: true
Size: 514 Bytes
Versions: 22
Compression:
Stored size: 514 Bytes
Contents
#!/usr/bin/env ruby lib = File.expand_path(File.dirname(__FILE__) + '/../lib') $LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib) require 'rubygems' require 'caboodle' require 'caboodle/command' args = ARGV.dup ARGV.clear command = args.shift.strip rescue 'help' git_path = `which git` if git_path.blank? puts "Sorry - you don't appear to have git installed or in your path" puts "Please set up git and try again: http://github.com" else Caboodle::Command.run(command, args) end
Version data entries
22 entries across 22 versions & 1 rubygems