rails gem programming - How do I try it before pushing to gemcutter?
I'm developing a new gem (fork of nifty-generators).
Right now my "deployment" consists on the following:
- I make changes on the gem's source code
- I commit to github
- I update the gemspec lower numer (i.e. go from 0.1.1 to 0.1.2)
- Build the gem and push it to gemcutter (gem build, gem push)
- Install the new gem (sudo gem install mygem)
- Then y try t开发者_JAVA技巧he new gem.
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 :)
if you're using jeweler, try this
rake install
(rake --tasks will tell you more)
launch all test unit or rspec test.
You can try in our project after install it on your system.
精彩评论