From: Brian Cassidy Date: Thu, 23 Aug 2007 15:02:04 +0000 (+0000) Subject: updated README X-Git-Tag: v0.08^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=commitdiff_plain;h=ea01144d5f17c8aa6391605034769f8bd49def91 updated README --- diff --git a/README b/README index cef9105..132ee9c 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME transparently VERSION - This document describes Config::Any version 0.0.7 + This document describes Config::Any version 0.0.8 SYNOPSIS use Config::Any; @@ -35,7 +35,7 @@ DESCRIPTION INTERFACE load_files( ) - Config::Any->load_files({files => \@files]}); + Config::Any->load_files({files => \@files}); Config::Any->load_files({files => \@files, filter => \&filter}); Config::Any->load_files({files => \@files, use_ext => 1}); @@ -61,6 +61,13 @@ INTERFACE forcing it to be offered to a particular parser. It is not compatible with 'use_ext'. + You can supply a "driver_args" hashref to pass special options to a + particular parser object. Example: + + Config::Any->load_files( { files => \@files, driver_args => { + General => { -LowerCaseNames => 1 } + } ) + load_stems( ) Config::Any->load_stems({stems => \@stems]}); Config::Any->load_stems({stems => \@stems, filter => \&filter});