Posted By: BJ Dierkes
Date: 2007-09-05 06:50
Summary: rb-parseconfig-0.4.1 released!
Project: rb-parseconfig
rb-parseconfig version 0.4.1 marks the first release on RubyForge!
ParseConfig provides simple parsing of standard *nix style configuration files. Some documentation can be found here:
http://devel.5dollarwhitebox.org/rb-parseconfig/archive/v0.4.1/doc/
Using ParseConfig is simple:
---snip---
require('rubygems')
require('parseconfig')
config = ParseConfig.new('/path/to/config/file')
param1 = config.get_value('param1')
param2 = config.get_value('param2')
...
---end snip---
Have fun!
|
|