Sha256: 73ffee07b8b734b87f0a1d29445c7cf85fe04fb94d21c27ce850ffa322421e58
Contents?: true
Size: 551 Bytes
Versions: 16
Compression:
Stored size: 551 Bytes
Contents
#!/usr/bin/env bash set -euo pipefail IFS=$'\n\t' set -vx bundle install # Do any other automated setup that you need to do here filename=".env" if [ ! -f $filename ]; then touch $filename echo "SHIPROCKET_API_USERNAME=" >>$filename echo "SHIPROCKET_API_PASSWORD=" >>$filename fi filename=".pryrc" if [ ! -f $filename ]; then touch $filename echo " Pry.commands.alias_command 'c', 'continue' Pry.commands.alias_command 's', 'step' Pry.commands.alias_command 'n', 'next' Pry.commands.alias_command 'f', 'finish' " >>$filename fi
Version data entries
16 entries across 16 versions & 1 rubygems