Sha256: c199388957f3432f537885e7202123d97ef2cb059de454d2102873d69988bb3a
Contents?: true
Size: 1.65 KB
Versions: 8
Compression:
Stored size: 1.65 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 if [[ $? -ne 0 ]]; then echo 'ERROR: find_latest_gem_versions_per_Gemfile.sh failed!' exit 1 fi pwn_autoinc_version if [[ $? -ne 0 ]]; then echo 'ERROR: pwn_autoinc_version failed! Investigate and bump pwn version manually.' exit 1 fi # Generate RDoc JSONL for fine-tunning LLMs pwn_rdoc_to_jsonl --rdoc-root-dir '/opt/pwn/rdoc/PWN' --jsonl-results '/opt/pwn/third_party/pwn_rdoc.jsonl' # 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 + 1) % 100 == 0; then print true; else print false; end'` if [[ $tag_this_version_bool == 'true' ]]; then last_tag=$(git tag | tail -n 1) git log $last_tag.. --oneline > CHANGELOG_BETWEEN_TAGS.txt fi git commit -a -S --author="${1} <${2}>" -m "${3}" ./update_pwn.sh if [[ $? -ne 0 ]]; then echo 'ERROR: update_pwn.sh failed!' exit 1 fi latest_gem=$(ls pkg/*.gem) if [[ $latest_gem != "" ]]; then echo "Pushing ${latest_gem} to RubyGems.org..." rvmsudo gem push $latest_gem --debug fi if [[ $tag_this_version_bool == 'true' ]]; then this_version=`ruby -r 'pwn' -e 'print PWN::VERSION'` echo "Tagging: ${this_version}" git tag $this_version git push origin $this_version fi else usage fi
Version data entries
8 entries across 8 versions & 1 rubygems