Sha256: 07f429fa31524fd36223d4cc24241f97ae97ffb905de43eccc4dec33c78e42bf

Contents?: true

Size: 445 Bytes

Versions: 3

Compression:

Stored size: 445 Bytes

Contents

#!/bin/bash -e

if [[ -z $1 ]]; then
  echo "Missing <TARGET>" >&2
  exit 1
fi

packager_bin() {
  local bin=$1
  local name=$(basename "$1")
  mkdir -p .packager/bin
  ln -s "../../$bin" ".packager/bin/$name"
}

TARGET=$1

cp -r "$PWD" "$TARGET"
cd "$TARGET"
bundle install --standalone --binstubs=binstubs --without=development test

rm -rf vendor/bundle/ruby/*/{bin,build_info,cache,doc,extensions,specifications}

packager_bin binstubs/cide

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cide-0.9.2 script/build
cide-0.9.1 script/build
cide-0.9.0 script/build