class FMPVC::Configuration

Attributes

ddr_basedir[RW]
ddr_dirname[RW]
ddr_filename[RW]
quiet[RW]
show_record_info[RW]
text_dirname[RW]
tree_filename[RW]
yaml[RW]

Public Class Methods

new() click to toggle source
# File lib/fmpvc/configuration.rb, line 6
def initialize
  # set default config settings
  @quiet               = false               # don't print progress to stdout
  @yaml                = true                # append full YAML to text files
  @ddr_filename        = 'Summary.xml'       # name of primary DDR file to open
  @ddr_dirname         = 'fmp_ddr'           # directory containing DDR
  @ddr_basedir         = './'                # base directory (containing fmp_ddr, fmp_text)
  @text_dirname        = 'fmp_text'          # text file base directory
  @tree_filename       = 'tree.txt'          # set to nil to disable tree file generation
  @show_record_info    = true                # show record info in DDR by default
end