RELEASE_PROCESS 344 B

123456
  1. # edit version.rb
  2. git ci -am "version bump" # commit changes
  3. git tag X.X.X # tag the new version in the code base too
  4. gem build formtastic.gemspec # build the gem
  5. gem push formtastic-X.X.X.gem # publish the gem
  6. git push && git push --tags # push to remote