NAME

Catmandu - a data toolkit

VERSION

Version 0.0103

SYNOPSIS

use Catmandu;

Catmandu->load;
Catmandu->load('/config/path', '/another/config/path');

Catmandu->store->bag('projects')->count;

Catmandu->config;
Catmandu->config->{foo} = 'bar';

use Catmandu -all;
use Catmandu qw(config store);
use Catmandu -load;
use Catmandu -all -load => [qw(/config/path' '/another/config/path)];

EXPORTS

config

Same as Catmandu->config.

store

Same as Catmandu->store.

importer

Same as Catmandu->importer.

exporter

Same as Catmandu->exporter.

export

Same as Catmandu->export.

export_to_string

Same as Catmandu->export_to_string.

-all/:all

Import everything.

-load/:load
use Catmandu -load;
use Catmandu -load => [];
# is the same as
Catmandu->load;

use Catmandu -load => ['/config/path'];
# is the same as
Catmandu->load('/config/path');

METHODS

default_load_path

default_load_path('/default/path')

load

load('/path', '/another/path')

config

default_store

store

importer

exporter

export

export_to_string

AUTHOR

Nicolas Steenlant, <nicolas.steenlant at ugent.be>

SEE ALSO

Catmandu::Introduction

LICENSE AND COPYRIGHT

Copyright 2012 Ghent University Library

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.