Sha256: fa6fd00a639bdcd103da0ff2c6c527fb9fe0573cacb0263e932cb402372814ad

Contents?: true

Size: 542 Bytes

Versions: 6

Compression:

Stored size: 542 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 FolioClient (3.0 is default in Jenkinsfile)
rvm use 3.1.2@folio_client --create &&
    gem install bundler &&
    bundle install --gemfile Gemfile

standardrb --fix > folio_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 (folio_client)"
    cat folio_client_standard.txt
fi

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
folio_client-0.15.0 .autoupdate/postupdate
folio_client-0.14.0 .autoupdate/postupdate
folio_client-0.13.0 .autoupdate/postupdate
folio_client-0.12.0 .autoupdate/postupdate
folio_client-0.11.0 .autoupdate/postupdate
folio_client-0.10.1 .autoupdate/postupdate