Sha256: 1c9bf13d729ea35d6baec4853163df64f3ab0dbd7fbe5de672d43fd91287ec17
Contents?: true
Size: 1.14 KB
Versions: 10
Compression:
Stored size: 1.14 KB
Contents
#!/bin/bash --login usage() { echo "USAGE: ${0} '<full name>' <email address> '<git commit comments>'" exit 1 } if (( $# == 3 )); then # Default Strategy is to merge codebase git config pull.rebase false git config commit.gpgsign true git pull git add . --all echo 'Updating Gems to Latest Versions in Gemfile...' ./find_latest_gem_versions_per_Gemfile.sh pwn_autoinc_version # Tag for every 100 commits (i.e. 0.1.100, 0.1.200, etc) tag_this_version_bool=`ruby -r 'pwn' -e 'if PWN::VERSION.split(".")[-1].to_i % 100 == 0; then print true; else print false; end'` if [[ $tag_this_version_bool == 'true' ]]; then this_version=`ruby -r 'pwn' -e 'print PWN::VERSION'` echo "Tagging: ${this_version}" git tag $this_version last_tag=$(git tag | tail -n 2 | head -n 1) this_tag=$(git tag | tail -n 1) git log $last_tag...$this_tag --oneline > CHANGELOG_BETWEEN_TAGS.txt fi git commit -a -S --author="${1} <${2}>" -m "${3}" ./update_pwn.sh latest_gem=$(ls pkg/*.gem) if [[ $latest_gem != "" ]]; then echo "Pushing ${latest_gem} to RubyGems.org..." rvmsudo gem push $latest_gem --debug fi else usage fi
Version data entries
10 entries across 10 versions & 1 rubygems