mirror of
https://github.com/tomgi/git_stats.git
synced 2024-11-17 17:15:22 +01:00
10 lines
246 B
Ruby
Executable file
10 lines
246 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# encoding: UTF-8
|
|
|
|
lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
|
|
$LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
|
|
|
|
# start up the CLI
|
|
require "git_stats/cli"
|
|
|
|
GitStats::CLI.start(ARGV)
|