Sha256: fec4ff308410a9c0ad8fecbfd1b568c37b9f8b8c1ce3a0c5cddcfc8c8af56654
Contents?: true
Size: 1.39 KB
Versions: 7
Compression:
Stored size: 1.39 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="1.9.3" rubygems_version="1.8.24" gemset_name="hyhead-4.0" # 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 # Use the specified rubygems_version if [[ -n "${rubygems_version}" && ("$(gem --version)" != ${rubygems_version}) ]] ; then rvm rubygems "${rubygems_version}" 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
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
hydra-head-4.1.3 | .rvmrc |
hydra-head-4.1.2 | .rvmrc |
hydra-head-4.1.1 | .rvmrc |
hydra-head-4.1.0 | .rvmrc |
hydra-head-4.0.3 | .rvmrc |
hydra-head-4.0.2 | .rvmrc |
hydra-head-4.0.1 | .rvmrc |