class AwsRotate::CLI

Public Instance Methods

completion(*params) click to toggle source
# File lib/aws_rotate/cli.rb, line 32
def completion(*params)
  Completer.new(CLI, *params).run
end
completion_script() click to toggle source
# File lib/aws_rotate/cli.rb, line 38
def completion_script
  Completer::Script.generate
end
key() click to toggle source
# File lib/aws_rotate/cli.rb, line 15
def key
  Backup.new(options).run
  Key.new(options).run
end
keys() click to toggle source
# File lib/aws_rotate/cli.rb, line 25
def keys
  Backup.new(options).run
  Keys.new(options).run
end
list() click to toggle source
# File lib/aws_rotate/cli.rb, line 8
def list
  List.new(options).run
end
version() click to toggle source
# File lib/aws_rotate/cli.rb, line 43
def version
  puts VERSION
end