Method: Arrow::Config::YamlLoader#load

Defined in:
lib/arrow/config-loaders/yaml.rb

#load(filename) ⇒ Object

Load and return configuration values from the YAML file specified.



47
48
49
50
# File 'lib/arrow/config-loaders/yaml.rb', line 47

def load( filename )
  self.log.info "Loading YAML-format configuration from '%s'" % filename
  return YAML.load_file( filename )
end