Skip to content

Instantly share code, notes, and snippets.

View wayneeseguin's full-sized avatar
🤪

Wayne E Seguin wayneeseguin

🤪
View GitHub Profile
#rvm_trust_rvmrcs=1 # <= This goes in ~/.rvmrc
create_file ".rvmrc", "rvm --create 1.9.2@#{appname}"
# Note I removed --pre since Bundler is 1.0.0 now.
# Also note that by default `` and system() runs via 'sh' not bash, hence the
# bash -l -c...
run "/bin/bash -l -c 'cd path/to/new/app; gem install bundler ; bundle install'"
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/[\1]/'
}
PS1="\u@\h \w \$(parse_git_branch)$ "
if [[ -f ~/.bashrc ]] ; then source ~/.bashrc ; fi
#!/usr/bin/env bash
cloop () {
# First parameter is $1, second is $2, etc...
# If you want to capture all arguments use "$@"
# Here we declare a local variable promoting clarity
local command="$@"
# ':' denotes true in shell scripting.
while : ; do
function rvm_require_ruby
{
if ! rvm list strings | grep -q "^$1" ; then
echo "ERROR: Requires Ruby Version: '$1'"
return 1
fi
return 0
}
#!/bin/bash
#
# Copyright (c) 2007 Bradley Taylor, bradley@railsmachine.com
#
# Modifications by Wayne E. Seguin
#
# mongrel_cluster Startup script for Mongrel clusters.
#
# chkconfig: - 85 15
# description: mongrel_cluster manages multiple Mongrel processes for use \
What Makoto Abe wrote:
----------------------------------------------------------------
Hi,
Please distribute the following announcement amongst your
Meetup members. If you have any questions, please let me know.
Thanks and regards,
Makoto Abe
export RUBY_HEAP_MIN_SLOTS=1000000
export RUBY_HEAP_SLOTS_INCREMENT=1000000
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
export RUBY_GC_MALLOC_LIMIT=1000000000
export RUBY_HEAP_FREE_MIN=500000
@wayneeseguin
wayneeseguin / .rvmrc
Created October 29, 2010 00:45 — forked from anonymous/.rvmrc
#!/usr/bin/env bash
# Remove from .gitignore and check this into your repo!!!
if [[ "Linux" = "$(uname)" ]] ; then
# Production
gemset_name="mindworx"
else
# Development
gemset_name="othergemsetname"
tar jxf bdsm-0.0.6.tar.bz2
cd bdsm-0.0.6
sudo ./install
sudo -i -u test
bdsm bdsmrc
Name: Wayne E. Seguin
Email: wayneeseguin@gmail.com
url: http://rvm.beginrescueend.com/
Mike,
Forums and blog posts are not the place to discuss features and bugs, but rather by joining #rvm in irc.freenode.net during the daytime EDT and work it out with me in *real time*.
Yes this is in opposition to some time lagged forum / email thread that will be outdated and mislead users in the future who think it is the most recent on the topic (There IS a community google group for the community by the community for RVM, however IRC is the proper means of communication for RVM).