Sha256: c12f7ee79ab86e6388c0b63d8c74b5da9a523623815219cf43253a300004234f

Contents?: true

Size: 549 Bytes

Versions: 5

Compression:

Stored size: 549 Bytes

Contents

#!/bin/bash --login

# This script is called by our weekly dependency update job in Jenkins after updating Ruby and other deps

# Switch to Ruby 3.1 for Globus::Client (3.0 is default in Jenkinsfile)
rvm use 3.1.2@globus_client --create &&
    gem install bundler &&
    bundle install --gemfile Gemfile

standardrb --fix > globus_client_standard.txt

retVal=$?

git commit -am "Update to latest standard style guide"

if [ $retVal -ne 0 ]; then
    echo "ERROR UPDATING RUBY TO STANDARD STYLE (globus_client)"
    cat globus_client_standard.txt
fi

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
globus_client-0.3.2 .autoupdate/postupdate
globus_client-0.3.1 .autoupdate/postupdate
globus_client-0.3.0 .autoupdate/postupdate
globus_client-0.2.1 .autoupdate/postupdate
globus_client-0.2.0 .autoupdate/postupdate