0.0
No commit activity in last 3 years
No release in over 3 years
This gem provides simple sequence management functionality.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

steenzout-cfg

Code Climate Gem Version steenzout-cfg API Documentation

steenzout-cfg is a gem to manage configurations.

convention

On your YAML configuration files, the gem name should be the first element.

gem1:
  (...)
  property: value

gem2:
  (...)
  property: value

usage

require 'rubygems
require 'steenzout-cfg'

# load the configuration
Steenzout::ConfigurationManager.load 'configuration.yaml'

# access a specific gem configuration
config = Steenzout::ConfigurationManager.configuration_for_gem 'steenzout-cfg'