in reply to Re: Using config::any
in thread Using config::any

Thanks for the reponse. But when i try load it says
Can't locate object method "load" via package "Config::Any" at caller. +pl line 15
Also is there any way to upvote answers which you feel are good like in stackoverflow?

Replies are listed 'Best First'.
Re^3: Using config::any
by kcott (Archbishop) on May 31, 2012 at 10:58 UTC

    load() is not a documented method of Config::Any. Developers provide an interface for you to interact with their modules (e.g. Config::Any's Interface) which you can generally expect to be stable across versions of a module: these are the only methods you should use. They may write other methods for the implementation of their modules: these may change at any time without notice. Perhaps load() was such a method at one time.

    Voting/Experience System explains about voting - there's a link to this in the panel on the right-hand side in the Information section.

    -- Ken

      Okay. Thanks.