Sha256: b712400d059fa891f0b85409ca3cc994e7528f4d656c55027de7d04a4d909a2a

Contents?: true

Size: 1.21 KB

Versions: 15

Compression:

Stored size: 1.21 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"

# 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

15 entries across 15 versions & 1 rubygems

Version Path
active-fedora-3.0.7 .rvmrc
active-fedora-3.0.6 .rvmrc
active-fedora-3.0.5 .rvmrc
active-fedora-3.0.4 .rvmrc
active-fedora-3.0.3 .rvmrc
active-fedora-3.0.1 .rvmrc
active-fedora-3.0.0 .rvmrc
active-fedora-2.3.7 .rvmrc
active-fedora-2.3.4 .rvmrc
active-fedora-2.3.3 .rvmrc
active-fedora-2.3.1 .rvmrc
active-fedora-2.3.0 .rvmrc
active-fedora-2.2.3 .rvmrc
active-fedora-2.2.2 .rvmrc
active-fedora-2.2.1 .rvmrc