http://www.perlmonks.org?node_id=1016301


in reply to Re^2: namespace clash : how do I rename my module safely
in thread namespace clash : how do I rename my module safely

The complete list ( of files and locations in each file ) could be prohibitively long.

I have had to change module names a couple of times and I generally create a new module with the correct name and paste in the functions from my old module.

If not the list of things to change will include the POD, README, first line of "Changes" ...

Even after this you will have to edit all your tests and make sure examples in your POD reflect the change!

  • Comment on Re^3: namespace clash : how do I rename my module safely

Replies are listed 'Best First'.
Re^4: namespace clash : how do I rename my module safely
by gideondsouza (Pilgrim) on Jan 31, 2013 at 12:30 UTC
    Hey yea! This seems like a much nicer approach. Don't know why I didn't think of this.! Thank you!