Skip to content

Commit

Permalink
update docs; bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jrockway committed Jan 14, 2008
1 parent 5dd7485 commit 8db003e
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions lib/Catalyst/Plugin/ConfigLoader/Environment.pm
Expand Up @@ -12,11 +12,11 @@ application with environment variables.
=head1 VERSION
Version 0.02
Version 0.03
=cut

our $VERSION = '0.02';
our $VERSION = '0.03';

=head1 SYNOPSIS
Expand Down Expand Up @@ -87,7 +87,7 @@ Let's translate a YAML config file:
Model::Bar:
root: "/etc"
Model::DBIC:
connect_info: [ "dbi:Pg:dbname=foo" ]
connect_info: [ "dbi:Pg:dbname=foo", "username", "password" ]
into environment variables that would setup the same configuration:
Expand All @@ -96,7 +96,7 @@ into environment variables that would setup the same configuration:
MYAPP_View__Foo_EXTENSION=tt
MYAPP_View__Foo_EVAL_PERL=1
MYAPP_Model__Bar_root=/etc
MYAPP_Model__DBIC_connect_info=["dbi:Pg:dbname=foo"]
MYAPP_Model__DBIC_connect_info=["dbi:Pg:dbname=foo", "username", "password"]
Double colons are converted into double underscores. For
compatibility's sake, support for the 0.01-style use of
Expand Down Expand Up @@ -175,10 +175,6 @@ L<mailto:catalyst@lists.rawmode.org>.
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-Plugin-ConfigLoader-Environment>
=item * My Trac site
L<http://trac.jrock.us/cpan_modules/>
=back
=head1 COPYRIGHT & LICENSE
Expand Down

0 comments on commit 8db003e

Please sign in to comment.