Sha256: c03f0177ef313ab24980b8414101cecbe12a15e64f43793445d22c12964454aa

Contents?: true

Size: 1.22 KB

Versions: 57

Compression:

Stored size: 1.22 KB

Contents

#!/usr/bin/env bash

# This is an RVM Project .rvmrc file, used to automatically load the ruby
# development environment upon cd'ing into the directory

ruby_string="ree-1.8.7"
gemset_name="active_fedora_3.1"

# Install rubies when used instead of only displaying a warning and exiting
rvm_install_on_use_flag=1

# Specify our desired <ruby>[@<gemset>], the @gemset name is optional.
environment_id="${ruby_string}@${gemset_name}"

# First, attempt to load the desired environment directly from the environment
# file. This is very fast and efficient compared to running through the entire
# CLI and selector. If you want feedback on which environment was used then
# insert the word 'use' after --create as this triggers verbose mode.
#
if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \
  && -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]] ; then
  \. "${rvm_path:-$HOME/.rvm}/environments/$environment_id"
else
  # If the environment file has not yet been created, use the RVM CLI to select.
  rvm --create "$environment_id"
fi

# Ensure that Bundler is installed, install it if it is not.
if ! (command -v bundle > /dev/null) ; then
  printf "The rubygem 'bundler' is not installed, installing it now.\n"
  gem install bundler
fi

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
active-fedora-4.0.0.rc20 .rvmrc
active-fedora-4.0.0.rc19 .rvmrc
active-fedora-4.0.0.rc18 .rvmrc
active-fedora-4.0.0.rc17 .rvmrc
active-fedora-4.0.0.rc16 .rvmrc
active-fedora-4.0.0.rc15 .rvmrc
active-fedora-4.0.0.rc14 .rvmrc
active-fedora-4.0.0.rc13 .rvmrc
active-fedora-4.0.0.rc12 .rvmrc
active-fedora-4.0.0.rc11 .rvmrc
active-fedora-4.0.0.rc10 .rvmrc
active-fedora-4.0.0.rc9 .rvmrc
active-fedora-4.0.0.rc8 .rvmrc
active-fedora-4.0.0.rc7 .rvmrc
active-fedora-4.0.0.rc6 .rvmrc
active-fedora-4.0.0.rc5 .rvmrc
active-fedora-4.0.0.rc4 .rvmrc
active-fedora-4.0.0.rc3 .rvmrc
active-fedora-4.0.0.rc2 .rvmrc
active-fedora-4.0.0.rc1 .rvmrc