Class: Git::Nebenan::Commands::Jira

Inherits:
Thor
  • Object
show all
Defined in:
lib/git/nebenan/commands/jira.rb

Instance Method Summary collapse

Instance Method Details

#checkoutObject



18
19
20
21
22
23
24
# File 'lib/git/nebenan/commands/jira.rb', line 18

def checkout(*)
  if options[:help]
    invoke :help, ['checkout']
  else
    Git::Nebenan::Commands::Checkout.new(options).execute
  end
end

#configObject



9
10
11
12
13
14
15
# File 'lib/git/nebenan/commands/jira.rb', line 9

def config(*)
  if options[:help]
    invoke :help, ['config']
  else
    Git::Nebenan::Commands::Config.new(options).execute
  end
end

#openObject



27
28
29
30
31
32
33
# File 'lib/git/nebenan/commands/jira.rb', line 27

def open(*)
  if options[:help]
    invoke :help, ['open']
  else
    Git::Nebenan::Commands::Open.new(options).execute
  end
end