Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dannyben/yamlcon
YAML Configuration File Loader
https://github.com/dannyben/yamlcon
gem ruby yaml yaml-configuration
Last synced: 27 days ago
JSON representation
YAML Configuration File Loader
- Host: GitHub
- URL: https://github.com/dannyben/yamlcon
- Owner: DannyBen
- License: mit
- Created: 2016-03-08T22:03:24.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-01-29T08:21:05.000Z (11 months ago)
- Last Synced: 2024-11-18T03:02:13.366Z (about 2 months ago)
- Topics: gem, ruby, yaml, yaml-configuration
- Language: Ruby
- Size: 32.2 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
YAMLCon - YAML Config Loader
==================================================[![Gem Version](https://badge.fury.io/rb/yamlcon.svg)](https://badge.fury.io/rb/yamlcon)
[![Build Status](https://github.com/DannyBen/yamlcon/workflows/Test/badge.svg)](https://github.com/DannyBen/yamlcon/actions?query=workflow%3ATest)
[![Maintainability](https://api.codeclimate.com/v1/badges/532084393e9f979d4381/maintainability)](https://codeclimate.com/github/DannyBen/yamlcon/maintainability)---
A utility for loading and saving YAML files with dot.notation.
Install
--------------------------------------------------Add to your gemfile
```ruby
gem 'yamlcon'
```Usage
--------------------------------------------------Load a single file
```ruby
config = YAML.load_config 'path/to/config.yml'
puts config.any_option.or_nested
```You can then modify and save the file
```ruby
config.some_setting = 'value'
YAML.save_config 'filename.yml', config
```Load multiple files by providing a glob pattern. In this case, each loaded
file will get its own prefix, using the basename of the file.For example, given two files `config/one.yml` and `config/two.yml`, you can
do this:```ruby
config = YAML.load_config 'config/*.yml'
puts config.one.option
puts config.two.option
```