Skip to content

Instantly share code, notes, and snippets.

@evolve2k
Created July 2, 2011 11:29
Show Gist options
  • Select an option

  • Save evolve2k/1059953 to your computer and use it in GitHub Desktop.

Select an option

Save evolve2k/1059953 to your computer and use it in GitHub Desktop.
Updating your own authored gem
$ 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