Method: Gitlab::CLI.start
- Defined in:
- lib/gitlab/cli.rb
permalink .start(args) ⇒ Object
Starts a new CLI session.
18 19 20 21 22 23 24 25 |
# File 'lib/gitlab/cli.rb', line 18 def self.start(args) command = begin args.shift.strip rescue StandardError 'help' end run(command, args) end |