Class Uttk::Loaders::Yaml
In: lib/uttk/loaders/Yaml.rb
Parent: Loader

Methods

load  

Included Modules

Concrete

Public Instance methods

[Source]

# File lib/uttk/loaders/Yaml.rb, line 16
      def load ( aString, symtbl=nil )
        tree = YAML::parse(aString)
        return nil unless tree
        tree.uttk_loader_yaml_transform
      end

[Validate]