This commit is contained in:
2014-05-17 15:31:36 -04:00
parent 3ece042f1a
commit b54a821928
25 changed files with 311 additions and 5077 deletions

View File

@@ -73,3 +73,15 @@ function run_quirk() {
quirk
}
function bump_gem_version {
if [[ $# -eq 0 ]]; then
echo "usage: $0 <version>"
else
echo "Committing version bump"
git add . && git commit -m "Version ${1}"
echo "Creating tag v$1"
git tag -a v${1} -m "Tagging v${1}"
git push origin && git push origin --tags
fi
}