Module: Git::Background::CLI

Extended by:
CLI
Included in:
CLI
Defined in:
lib/git/background/cli.rb

Instance Method Summary collapse

Instance Method Details

#startObject



9
10
11
12
13
14
15
16
# File 'lib/git/background/cli.rb', line 9

def start
  if ARGV.empty?
    STDERR.puts help
  else
    notifier = parse_notifier!
    Git::Background::Runner.new(notifier).run
  end
end