Sha256: 07649dfb4f12764ab62fcc496a71a0688a7cbe57fd2ce8d174ae8dddddfbe2f9

Contents?: true

Size: 306 Bytes

Versions: 6

Compression:

Stored size: 306 Bytes

Contents

#!/usr/bin/env sh

function gem_install {
  gem list -i $1 >/dev/null 2>&1
  rc=$?
  if [[ $rc != 0 ]]; then
    gem install $1
  fi
}

gem_install 'little-plugger'
gem_install 'loquacious'

rake gem:install_dependencies

gem_install 'bones-git'
gem_install 'bones-rspec'

# gem uninstall -a -I -x 'bones'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bones-3.9.0 script/bootstrap
bones-3.8.5 script/bootstrap
bones-3.8.4 script/bootstrap
bones-3.8.3 script/bootstrap
bones-3.8.2 script/bootstrap
bones-3.8.1 script/bootstrap