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

Version Path
shiprocket_api-0.8.0 bin/setup
shiprocket_api-0.7.0 bin/setup
shiprocket_api-0.6.0 bin/setup
shiprocket_api-0.5.3 bin/setup
shiprocket_api-0.5.2 bin/setup
shiprocket_api-0.5.1 bin/setup
shiprocket_api-0.5.0 bin/setup
shiprocket_api-0.4.4 bin/setup
shiprocket_api-0.4.3 bin/setup
shiprocket_api-0.4.2 bin/setup
shiprocket_api-0.4.1 bin/setup
shiprocket_api-0.4.0 bin/setup
shiprocket_api-0.3.1 bin/setup
shiprocket_api-0.3.0 bin/setup
shiprocket_api-0.2.0 bin/setup
shiprocket_api-0.1.0 bin/setup