in reply to Some Autoloader Magic?
in thread 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.
Yup; as described above, it's as simple as this:
package Ivy; use Net::Ivy; *{"Ivy::"} = *{"Net::Ivy::"}; 1;
|
|---|