This commit is contained in:
Chris Wanstrath 2009-12-07 21:28:32 -08:00
Родитель 187144a591
Коммит 977e195bfe
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -8,6 +8,7 @@ class Hub
PUBLIC = 'git://github.com/%s/%s.git'
USER = `git config --global github.user`.chomp
REPO = `basename $(pwd)`.chomp
VERSION = '0.1.0'
attr_reader :args, :after
def initialize(*args)
@ -42,6 +43,11 @@ class Hub
end
end
def version
puts "hub version %s" % VERSION
end
alias_method "--version", :version
def execute
if @args.empty?
@args[0] = 'help'