Sha256: 806ea6e052b5240e42e360df7a988967aba22a88dd0a27408973cc101b040787
Contents?: true
Size: 781 Bytes
Versions: 2
Compression:
Stored size: 781 Bytes
Contents
git status # check you have a clean working directory rake version:bump:minor # or patch or major, commits the change rake gemspec # to generate the new gemspec file git add formtastic.gemspec # stage changes git commit -am "new gemspec" # commit and describe the reason for the new gem git tag -am "0.2.3" 0.2.3 # tag the new version in the code base too git log 0.2.2..0.2.3 # check the log since last tag gem build formtastic.gemspec # build the gem gem push formtastic-0.2.3.gem # publish the gem git push # push to github git push --tags # push the tags up to remote too
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jintastic-1.1.0 | vendor/plugins/formtastic/RELEASE_PROCESS |
jintastic-1.0.2 | vendor/plugins/formtastic/RELEASE_PROCESS |