Created
July 2, 2011 11:29
-
-
Save evolve2k/1059953 to your computer and use it in GitHub Desktop.
Updating your own authored gem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ git commit # commit your changes like usual | |
| $ rake version:bump:patch | |
| $ rake gemspec # to update version to new version number, etc. | |
| $ rake build # create the new gem package | |
| # Commit the new gemspec file. | |
| $ gem push pkg/<gemname_and_version>.gem # push to rubygems | |
| $ git push # so that the githubs are all up to date! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment