Project

hashconfig

0.0
No commit activity in last 3 years
No release in over 3 years
Simple configuration mechanism through serialized hash
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Hashconfig

Extends the Ruby Hash class with a method (merge_with_serialized) that merges a hash instance with an serialized (YAML) instance of a hash. So it is a lightweight mechanism for configuration.

http://github.com/pboehm/hashconfig

Installation

Add this line to your application's Gemfile:

gem 'hashconfig'

And then execute:

$ bundle

Or install it yourself as:

$ gem install hashconfig

Usage

require 'hashconfig'

STANDARD_CONFIG = {
    :default_directory  => File.join(File.expand_path("~"), "Downloads"),
    :store_episode_info => false,
    :store_path         => File.join(CONFIG_DIR, "information_storage.yml"),
    :byte_count_for_md5 => 2048,
}

config = STANDARD_CONFIG.merge_with_serialized('path/to/yaml/file')

# config now holds the data from STANDARD_CONFIG updated with values from
# the yaml file

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request