Class: S3Secure::CLI
Instance Method Summary
collapse
Methods inherited from Command
alter_command_description, command_help, dispatch, exit_on_failure?, website
Instance Method Details
#batch(*params) ⇒ Object
42
43
44
|
# File 'lib/s3_secure/cli.rb', line 42
def batch(*params)
Batch.new(*params).run
end
|
#completion(*params) ⇒ Object
48
49
50
|
# File 'lib/s3_secure/cli.rb', line 48
def completion(*params)
Completer.new(CLI, *params).run
end
|
#completion_script ⇒ Object
28
29
30
|
# File 'lib/s3_secure/cli.rb', line 28
def remediate_all(bucket)
RemediateAll.new(options.merge(bucket: bucket)).run
end
|
#summary ⇒ Object
36
37
38
|
# File 'lib/s3_secure/cli.rb', line 36
def summary
Summary.new(options).run
end
|
#version ⇒ Object
59
60
61
|
# File 'lib/s3_secure/cli.rb', line 59
def version
puts VERSION
end
|