Method: Jigit::Init#run

Defined in:
lib/jigit/commands/init.rb

#runObject



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/jigit/commands/init.rb', line 34

def run
  ui.say "\nOK, thanks #{ENV['LOGNAME']}, have a seat and we'll get you started.\n".yellow
  ui.pause 1

  show_todo_state
  ui.pause 1.4

  return unless setup_access_to_jira
  return unless setup_jigitfile
  return unless setup_post_checkout_hook
  return unless setup_gitignore

  info
  thanks
end