Sha256: e6da10612ef8a8eb2a62232fd82ace7168e0b8da4f49e76465f850da3da846a3

Contents?: true

Size: 481 Bytes

Versions: 4

Compression:

Stored size: 481 Bytes

Contents

ruby_string="ree"
gemset_name="johnny_cache"

if rvm list strings | grep -q "${ruby_string}" ; then

  rvm use "${ruby_string}@${gemset_name}" --create

  # Complain if bundler isn't installed
  if [[ -z "`gem which bundler 2>&1 | grep -v ERROR`" ]]; then
    echo "You need bundler:"
    echo ""
    echo "    gem install bundler"
    echo ""
  fi
else
  echo "${ruby_string} was not found, please run 'rvm install ${ruby_string}' and then cd back into the project directory."
fi

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
method_cacheable-0.0.3 .rvmrc
method_cacheable-0.0.2 .rvmrc
method_cacheable-0.0.1 .rvmrc
johnny_cache-0.0.1 .rvmrc