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

Version Path
roro-0.3.30 lib/roro/stacks/stories_v1/templates/roro/scripts/base/bundler.sh
roro-0.3.28 lib/roro/stacks/stories_v1/templates/roro/scripts/base/bundler.sh
roro-0.3.28 lib/roro/stacks/catalog/unstoppable/developer_styles/sashimi/stories/roro/templates/scripts/base/bundler.sh
roro-0.3.27 lib/roro/stacks/stories_v1/templates/roro/scripts/base/bundler.sh
roro-0.3.27 lib/roro/stacks/catalog/unstoppable/developer_styles/sashimi/stories/roro/templates/scripts/base/bundler.sh
roro-0.3.25 lib/roro/stacks/stories_v1/templates/roro/scripts/base/bundler.sh
roro-0.3.25 lib/roro/stacks/catalog/unstoppable/developer_styles/sashimi/stories/roro/templates/scripts/base/bundler.sh
roro-0.3.24 lib/roro/stacks/stories_v1/templates/roro/scripts/base/bundler.sh
roro-0.3.24 lib/roro/stacks/catalog/unstoppable/developer_styles/sashimi/stories/roro/templates/scripts/base/bundler.sh
roro-0.3.23 lib/roro/stacks/catalog/unstoppable/developer_styles/sashimi/stories/roro/templates/scripts/base/bundler.sh
roro-0.3.23 lib/roro/stacks/stories_v1/templates/roro/scripts/base/bundler.sh