I have a gem that I want to rename. It is published on RubyGems. I am mostly concerned about people wanting to update it.
I see two paths, but would really like to hear from people who renamed their gem, how they did this.
1. turn the old one into a metapackage
- Create a new gem (named
smart-cropper) - Add
smart-cropper as dependency tocroptoelie` - Remove all lib, bins and other code from
croptoelie
A problem I see with this, is that it is too transparent, people might not be aware that the gem they use is no longer maintained.
Another problem is that versioning becomes harder: I would have to bump the version of the old "metapackage" each time I released a new version of the renamed (smart-cropper) gem, or people would never get a new version.
2. throw deprecation warnings
I could send out a release of the old gem that simply throws deprecation warnings with a message that people should install that new gem.
The problem I see with this is that it can be quite intrusive and might turn people[1] away from the gem altogether.
Are there other options? Is there something built into "RubyGems" to cater for the changing of the name?
[1] not that too many people are using it; because of the name it is hard to find. :)