Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/tabry/cli/util/config.rb

Overview

Simple YAML configuration Example: require ‘tabry/cli/util/config’ module MyCli

Config = Tabry::CLI::Util::Config.new('~/.mycli.yml')

end

Instance Method Summary collapse

Instance Method Details

#to_openstructObject



15
16
17
# File 'lib/tabry/cli/util/config.rb', line 15

def to_openstruct
  JSON.parse to_json, object_class: OpenStruct
end