class Example::Control
Public Class Methods
print(options)
click to toggle source
# File lib/inspec-plugin-example/control.rb, line 9 def self.print(options) Inspec::Log.debug 'Example::Control debugging message' puts "This used to be an example of creating a control, now it's just a subcommand example." puts 'I see your example option!' if options[:example] end