I'm developing a new gem (fork of nifty-generators).
Right now my "deployment" consists on the following:
I'm sure there must be a more correct way of doing things. Right now, I'm uploading to gemcutter so that I can test my gem.. and that doesn't feel right.
What is the best way to "test your gem before uploading to gemcutter"?
Once you have your gemspec, you can run gem build yourgem.gemspec
. That will produce a .gem
file for you to install....try the following commands out to verify it:
gem install --local
gem spec
gem unpack
You have to push a built gem to RubyGems.org anyway, so you're pretty much there :)