Method: InspecTools::PDF#initialize
- Defined in:
- lib/inspec_tools/pdf.rb
#initialize(pdf, profile_name, debug = false) ⇒ PDF
Returns a new instance of PDF.
15 16 17 18 19 20 21 |
# File 'lib/inspec_tools/pdf.rb', line 15 def initialize(pdf, profile_name, debug = false) raise ArgumentError if pdf.nil? @pdf = pdf @name = profile_name @debug = debug end |