Class: InspecTools::CKL
Overview
Methods for converting from CKL to various formats
Instance Method Summary collapse
-
#initialize(ckl) ⇒ CKL
constructor
A new instance of CKL.
- #to_csv ⇒ Object
- #to_inspec ⇒ Object
- #to_xccdf ⇒ Object
Constructor Details
#initialize(ckl) ⇒ CKL
Returns a new instance of CKL.
4 5 6 |
# File 'lib/inspec_tools/ckl.rb', line 4 def initialize(ckl) @ckl = ckl end |
Instance Method Details
#to_csv ⇒ Object
8 9 10 |
# File 'lib/inspec_tools/ckl.rb', line 8 def to_csv # TODO: to_csv end |
#to_inspec ⇒ Object
16 17 18 |
# File 'lib/inspec_tools/ckl.rb', line 16 def to_inspec # TODO: to_inspec end |
#to_xccdf ⇒ Object
12 13 14 |
# File 'lib/inspec_tools/ckl.rb', line 12 def to_xccdf # TODO: to_xccdf end |