in reply to Which name for a new cpan module?

Somebody here can probably suggest a method by which you could put an Ivy.pm shell in that would automatically call the corresponding Net::Ivy code, to migrate your current users.

Replies are listed 'Best First'.
Re: Some Autoloader Magic?
by simonm (Vicar) on Nov 25, 2003 at 22:11 UTC
    Somebody here can probably suggest a method by which you could put an Ivy.pm shell in that would automatically call the corresponding Net::Ivy code, to migrate your current users.

    Yup; as described above, it's as simple as this:

    package Ivy; use Net::Ivy; *{"Ivy::"} = *{"Net::Ivy::"}; 1;