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

NAME

Rose::Conf::Root - Recommended way to set the Rose file-based configuration file root directory.

SYNOPSIS

    use Rose::Conf::Root '/path/to/your/conf/root';

    # or...

    use Rose::Conf::Root;
    Rose::Conf::Root->conf_root('/path/to/your/conf/root');

DESCRIPTION

Rose::Conf::Root is the recommended way to set the Rose file-based configuration module root directory. Simply use the module with a single argument that specifies the path to the configuration root directory, or call the conf_root() class method with the same argument.

See the Rose::Conf and Rose::Conf::FileBased documentation for more information on configuration modules and the file-based configuration module root directory.

CLASS METHODS

conf_root [PATH]

Get or set the Rose file-base configuration module root directory. If present, the PATH argument should not end with a path separator character (e.g., "/")

AUTHOR

John C. Siracusa (siracusa@mindspring.com)

COPYRIGHT

Copyright (c) 2004 by John C. Siracusa. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.