Sha256: 5afec92c00e079c9fe54a047753c5c393ce5d8a0295f4a087680433adcf588ea
Contents?: true
Size: 509 Bytes
Versions: 20
Compression:
Stored size: 509 Bytes
Contents
#!/bin/sh printf "\n\nRUNNER SCRIPT: Running as `whoami`" printf "\n\nRUNNER SCRIPT: Running in directory `pwd`" printf "\n\nRUNNER SCRIPT: Environment Variables..." printf "\n\n`printenv`" printf "\n\nRUNNER SCRIPT: Installing Gems...\n" source ~/.bash_profile rbenv local 2.0.0-p353 bin/setup errcode=$? if [ "$errcode" != 0 ] then printf "\n\nRUNNER SCRIPT: Gem installation failed!" exit $errcode fi printf "\n\nRUNNER SCRIPT: Running specs...\n" VCR_RECORD=all bundle exec rake rspec-rerun:spec
Version data entries
20 entries across 20 versions & 1 rubygems