The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Confman - Perl library to interface with Confman

SYNOPSIS

  use Confman;
  my $confman = Confman->default;
  $confman->load_conf_set('config', 'development:config');
  $confman->load_conf_set('config2', 'development:config2');

  print $confman->config->some_config_variable;
  print $confman->config->some_config_variable2;

  print $confman->config2->my_api_key;

  # Updating configs. To update configs you have to have a key
  # with update permissions
  $confman->config2->update_pairs(my_api_key => '23456');

DESCRIPTION

TODO

SEE ALSO

http://www.synctree.com

AUTHOR

Masahji Stewart, <masahji@synctree.com>

COPYRIGHT AND LICENSE

Copyright (C) 2013 by Synctree Inc