Local::Config

Table of contents

NAME
Synopsis
Description
Constructor and initialization
Author
Copyright

NAME

Local::Config - Read the local config file, .htlocal.config.conf

Synopsis

        #!/usr/bin/env perl

        use strict;
        use warnings;

        use Local::Config;

        # ----------------

        my($config) = Local::Config -> new -> config;

        print map{"$_ => $$config{$_}. \n"} sort keys %$config;

Description

Local::Config is a pure Perl module. It uses Moose.

Constructor and initialization

Local::Config -> new -> config returns a hashref.

The contents of this hashref depend on the config file being read.

Author

Local::Config was written by Ron Savage in 2006.

Home page: http://savage.net.au/index.html

Copyright

Australian copyright © 2006, Ron Savage. All Programs of mine are 'OSI Certified Open Source Software'; you can redistribute them and/or modify them under the terms of The Artistic License, a copy of which is available at: http://www.opensource.org/licenses/index.html