class Optimist::Parser

def legacy_width

def legacy_width
  # Support for older Rubies where io/console is not available
  `tput cols`.to_i
rescue Errno::ENOENT
  80
end