-
Notifications
You must be signed in to change notification settings - Fork 45
Gem development workflow
Jonathan Abbett edited this page Jan 5, 2017
·
2 revisions
git clone ...
cd abraham
gem install bundler
bundle install
Before releasing, remembering to increase the version number in version.rb
# If you're not signed into rubygems yet, run this and enter your credentials
gem push
# Run all the tests
rails t
# Make sure the gem builds
rake install
# Finish & squash the branch
git flow feature finish --squash
# Create the git flow release
git flow release start VERSION
git flow release finish
rake release