mirror of
https://github.com/tomgi/git_stats.git
synced 2024-11-16 16:48:34 +01:00
11 lines
261 B
Ruby
Executable file
11 lines
261 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"
|
|
|
|
cli = GitStats::CLI.new
|
|
cli.start(*ARGV)
|