Jorge::Config - Configuration package to interface with Config::YAML file


Jorge documentation Contained in the Jorge distribution.

Index


Code Index:

NAME

Top

Jorge::Config - Configuration package to interface with Config::YAML file

VERSION

Top

Version 0.01

SYNOPSIS

Top

It is not expected accessing to this package directly. So, move to main Jorge docs for reference.

AUTHORS

Top

Mondongo, <mondongo at gmail.com> Did the important job and started this beauty.

Julian Porta, <julian.porta at gmail.com> took the code and tried to make it harder, better, faster, stronger.

BUGS

Top

Please report any bugs or feature requests to bug-jorge at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Jorge. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Jorge




You can also look for information at:

* Github Project Page

http://github.com/Porta/Jorge/tree/master

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Jorge

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Jorge

* CPAN Ratings

http://cpanratings.perl.org/d/Jorge

* Search CPAN

http://search.cpan.org/dist/Jorge/

ACKNOWLEDGEMENTS

Top

Mondongo <mondongo at gmail.com> For starting this.

COPYRIGHT & LICENSE

Top


Jorge documentation Contained in the Jorge distribution.
package Jorge::Config;

use Config::YAML;
use warnings;
use strict;

our $VERSION     = '0.01';
our $CONFIG_FILE = 'config/jorge.yml';

sub new {
    my $class = shift;
    my $obj = bless {}, $class;
    -e ($CONFIG_FILE) || warn 'config file not found on ' . $CONFIG_FILE;
    my $c;
    $c = Config::YAML->new( config => $CONFIG_FILE );
    return $c;
}

1;    # End of Jorge::Config