Sha256: cea138b0e283411d5cf12ced65afe117106878fb93ecffe4adf16ea353461de7
Contents?: true
Size: 904 Bytes
Versions: 1
Compression:
Stored size: 904 Bytes
Contents
#!/usr/bin/env bash # Change to parent directory of this script SOURCE=${BASH_SOURCE[0]} while [ -L "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink DIR=$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd ) SOURCE=$(readlink "$SOURCE") [[ $SOURCE != /* ]] && SOURCE=$DIR/$SOURCE # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located done DIR=$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd ) cd "$DIR/.." || exit rm -f Gemfile.lock bundle bundle binstubs debase --force --path binstub <%- if @jekyll -%> bundle binstubs jekyll --force --path binstub <%- end -%> bundle binstubs rspec-core --force --path binstub bundle binstubs rubocop --force --path binstub bundle binstubs ruby-debug-ide --force --path binstub # Do any other automated setup that you need to do here
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nugem-0.8.1 | templates/common/gem_scaffold/bin/setup.tt |