Sha256: c6f9d2135b0a8de7e05f2f5bfe37b47754b4247dec8d4a0126dd7219725f47fe
Contents?: true
Size: 626 Bytes
Versions: 11
Compression:
Stored size: 626 Bytes
Contents
#!/bin/zsh --login set -e set -a DEFAULT_BRANCH='development' bundle_install () { REPO=${1} BRANCH=${2:-$DEFAULT_BRANCH} cd "${WORKBENCH}/${REPO}" rvm_ruby_and_gemset_use "${REPO}" pretty_echo "Checking out git branch: " "${BRANCH}..." pretty_echo "Bundling gems in: " "${WORKBENCH}/${REPO}" pretty_echo "Git branch: " "$(git status)" pretty_echo "Bundling with: " "${RORO_RVM_RUBY_AND_GEMSET}" pretty_echo "Current directory: " "${PWD}" pretty_echo "Current directory: " "${REPO}" rvm_ruby_and_gemset_create "${REPO}" gem install bundler bundle install }
Version data entries
11 entries across 6 versions & 1 rubygems