module RgGen::Core::InputBase::TOMLLoader
Private Instance Methods
load_toml(file)
click to toggle source
# File lib/rggen/core/input_base/toml_loader.rb, line 9 def load_toml(file) toml = File.binread(file) Tomlrb.parse(toml, symbolize_keys: true) end