Project

keep

0.0
No commit activity in last 3 years
No release in over 3 years
A standardized library to persist config information to disk.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Keep

It makes keeping config information pretty easy.

Install

gem install keep

Usage

require 'keep'
keep = Keep.new('config/settings.yml')
keep.set(:password,'Ellen Page')
keep.get(:password)

Just tell Keep where to keep things, then tell it a key and what the value is.

Keep currently serializes to YAML (although different backends are likely to come next- pull requests welcome).

More

keep = Keep.new('config/settings.yml')
keep.present?(:password) # => 'Ellen Page'

keep.keys # => ['Ellen Page']

Other important information

Nothing else is important.