# File lib/rudy/global.rb, line 50 50: def initialize 51: postprocess 52: # These attributes MUST have values. 53: @verbose ||= 0 54: @nocolor = true unless @nocolor == "false" || @nocolor == false 55: @quiet ||= false 56: @parallel ||= false 57: @force ||= false 58: @format ||= :string # as in, to_s 59: @print_header = true if @print_header == nil 60: end