Created
July 28, 2011 17:11
-
-
Save hellectronic/1111986 to your computer and use it in GitHub Desktop.
RVM .rvmrc and redmine_inst.gems files for a Redmine installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 | |
# https://github.com/wayneeseguin/rvm-site/blob/master/.rvmrc | |
# First we specify our desired <ruby>[@<gemset>], the @gemset name is optional. | |
environment_id="ruby-1.8.7@redmine_inst" | |
# | |
# First we 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" | |
if [[ -s ".rvm/hooks/after_use" ]] | |
then | |
. ".rvm/hooks/after_use" | |
fi | |
else | |
# If the environment file has not yet been created, use the RVM CLI to select. | |
if ! rvm --create "$environment_id" | |
then | |
echo "Failed to create RVM environment '$environment_id'." | |
fi | |
fi | |
# | |
# If you use an RVM gemset file to install a list of gems (*.gems), you can have | |
# it be automatically loaded. Uncomment the following and adjust the filename if | |
# necessary. | |
# | |
filename="redmine_inst.gems" | |
if [[ -s "$filename" ]] | |
then | |
rvm gemset import "$filename" | grep -v already | grep -v listed | grep -v complete | sed '/^$/d' | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# redmine_inst.gems generated gem export file. Note that any env variable settings will be missing. Append these after using a ';' field separator | |
actionmailer -v2.3.11 | |
actionpack -v2.3.11 | |
activerecord -v2.3.11 | |
activeresource -v2.3.11 | |
activesupport -v2.3.11 | |
cgi_multipart_eof_fix -v2.5.0 | |
daemons -v1.1.4 | |
fastthread -v1.0.7 | |
gem_plugin -v0.2.3 | |
i18n -v0.4.2 | |
rack -v1.1.0 | |
rails -v2.3.11 | |
rake -v0.8.7 | |
sqlite3 -v1.3.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment