Method: Toolshed::Commands::SCP::Download.cli_options

Defined in:
lib/toolshed/commands/scp/download.rb

.cli_optionsObject

rubocop:disable MethodLength



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/toolshed/commands/scp/download.rb', line 8

def self.cli_options # rubocop:disable MethodLength
  {
    banner: 'Usage: scp download [options]',
    options: {
      remote_host: {
        short_on: '-r'
      },
      remote_path: {
        short_on: '-d'
      },
      local_path: {
        short_on: '-s'
      },
      username: {
        short_on: '-u'
      },
      password: {
        short_on: '-p'
      },
      verbose_output: {
        short_on: '-v'
      }
    }
  }
end