YAMLCon - YAML Config Loader
A utility for loading and saving YAML files with dot.notation.
Install
Add to your gemfile
gem 'yamlcon'
Usage
# Load
config = YAML.load_config 'path/to/config.yml'
puts config.any_option.or_nested
# Modify and save
config.some_setting = 'value'
YAML.save_config 'filename.yml', config