class Psych::Handler::DumperOptions

Configuration options for dumping YAML.

Attributes

canonical[RW]
indentation[RW]
line_width[RW]

Public Class Methods

new() click to toggle source
# File psych/lib/psych/handler.rb, line 19
def initialize
  @line_width  = 0
  @indentation = 2
  @canonical   = false
end