Class: YmlLoader

Inherits:
FileLoader show all
Defined in:
lib/pokotarou/file_loader.rb

Class Method Summary collapse

Class Method Details

.load(filepath) ⇒ Object



11
12
13
14
# File 'lib/pokotarou/file_loader.rb', line 11

def load filepath
  # convert 'str_key' to 'symbol_key'
  YAML.load_file(filepath).deep_symbolize_keys!
end