Class: Psych::Config

Inherits:
Object show all
Defined in:
ext/psych/lib/psych.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



715
716
717
718
719
# File 'ext/psych/lib/psych.rb', line 715

def initialize
  @load_tags = {}
  @dump_tags = {}
  @domain_types = {}
end

Instance Attribute Details

#domain_typesObject

Returns the value of attribute domain_types.



714
715
716
# File 'ext/psych/lib/psych.rb', line 714

def domain_types
  @domain_types
end

#dump_tagsObject

Returns the value of attribute dump_tags.



714
715
716
# File 'ext/psych/lib/psych.rb', line 714

def dump_tags
  @dump_tags
end

#load_tagsObject

Returns the value of attribute load_tags.



714
715
716
# File 'ext/psych/lib/psych.rb', line 714

def load_tags
  @load_tags
end