public
Description: A Rails form builder plugin with semantically rich and accessible markup. It's deliciously close to 1.0!
Homepage:
Clone URL: git://github.com/justinfrench/formtastic.git
Click here to lend your support to: formtastic and make a donation at www.pledgie.com !
jgdavey (author)
Sun Oct 25 10:04:33 -0700 2009
justinfrench (committer)
Mon Oct 26 14:26:40 -0700 2009
formtastic / RELEASE_PROCESS
100644 12 lines (11 sloc) 0.781 kb
1
2
3
4
5
6
7
8
9
10
11
12
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