Sha256: 42cb3ecdac6462a4382f3d9b95ef64b234aadc74a2275263146c0ae1e0414011
Contents?: true
Size: 247 Bytes
Versions: 1
Compression:
Stored size: 247 Bytes
Contents
module Yamls class YamlLoad def initialize(filepath, loader: YAML) @filepath = filepath @loader = loader end def load loader.load_file(filepath) end private attr_reader :filepath, :loader end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
yamls-0.1.0 | lib/yamls/yaml_load.rb |