Class: Supermarket::SupermarketCLI
Class Method Summary
collapse
Instance Method Summary
collapse
default_options, detect, exec_options, exit_on_failure?, parse_reporters, profile_options, target_options, validate_reporters
Class Method Details
.banner(command, _namespace = nil, _subcommand = false) ⇒ Object
11
12
13
|
# File 'lib/bundles/inspec-supermarket/cli.rb', line 11
def self.banner(command, _namespace = nil, _subcommand = false)
"#{basename} #{subcommand_prefix} #{command.usage}"
end
|
.subcommand_prefix ⇒ Object
15
16
17
|
# File 'lib/bundles/inspec-supermarket/cli.rb', line 15
def self.subcommand_prefix
namespace
end
|
Instance Method Details
#exec(*tests) ⇒ Object
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# File 'lib/bundles/inspec-supermarket/cli.rb', line 32
def exec(*tests)
o = opts(:exec).dup
diagnose(o)
configure_logger(o)
tests = tests.map { |t| 'supermarket://' + t }
runner = Inspec::Runner.new(o)
tests.each { |target| runner.add_target(target) }
exit runner.run
rescue ArgumentError, RuntimeError, Train::UserError => e
$stderr.puts e.message
exit 1
end
|
#info(profile) ⇒ Object
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# File 'lib/bundles/inspec-supermarket/cli.rb', line 50
def info(profile)
supermarket_profiles = Supermarket::API.profiles
found = supermarket_profiles.select { |p|
profile == "#{p['tool_owner']}/#{p['slug']}"
}
if found.empty?
puts "#{mark_text(profile)} is not available on Supermarket"
return
end
info = Supermarket::API.info(profile)
puts "#{mark_text('name: ')} #{info['slug']}"
puts "#{mark_text('owner:')} #{info['owner']}"
puts "#{mark_text('url: ')} #{info['source_url']}"
puts
puts "#{mark_text('description: ')} #{info['description']}"
end
|
#profiles ⇒ Object
20
21
22
23
24
25
26
27
28
|
# File 'lib/bundles/inspec-supermarket/cli.rb', line 20
def profiles
supermarket_profiles = Supermarket::API.profiles
headline('Available profiles:')
supermarket_profiles.each { |p|
li("#{p['tool_name']} #{mark_text(p['tool_owner'] + '/' + p['slug'])}")
}
end
|