Support for the Ruby 2.4 series has ended. See here for reference.

In Files

  • psych/lib/psych/handler.rb

Parent

Methods

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