Class: Awfy::CLI
Constant Summary collapse
- CONTROL_MARKER =
"[c]"
- TEST_MARKER =
"[*]"
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.exit_on_failure? ⇒ Boolean
20 |
# File 'lib/awfy/cli.rb', line 20 def self.exit_on_failure? = true |
Instance Method Details
#ips(group = nil, report = nil, test = nil) ⇒ Object
45 46 47 48 49 50 |
# File 'lib/awfy/cli.rb', line 45 def ips(group = nil, report = nil, test = nil) say "Running IPS for:" say "> #{requested_tests(group, report, test)}..." run_pref_test(group) { run_ips(_1, report, test) } end |
#list(group = nil) ⇒ Object
40 41 42 |
# File 'lib/awfy/cli.rb', line 40 def list(group = nil) run_pref_test(group) { list_group(_1) } end |