Class: Pdfh::RunOptions
- Inherits:
-
Object
- Object
- Pdfh::RunOptions
- Defined in:
- lib/pdfh/models/run_options.rb
Overview
Runtime options for the application
Instance Method Summary collapse
- #dry? ⇒ Boolean
- #initialize(verbose: false, dry: false) ⇒ RunOptions constructor
- #verbose? ⇒ Boolean
Constructor Details
#initialize(verbose: false, dry: false) ⇒ RunOptions
9 10 11 12 |
# File 'lib/pdfh/models/run_options.rb', line 9 def initialize(verbose: false, dry: false) @verbose = verbose @dry = dry end |
Instance Method Details
#dry? ⇒ Boolean
18 |
# File 'lib/pdfh/models/run_options.rb', line 18 def dry? = @dry |
#verbose? ⇒ Boolean
15 |
# File 'lib/pdfh/models/run_options.rb', line 15 def verbose? = @verbose |