# Set architecture flags export ARCHFLAGS="-arch x86_64" # Ensure user-installed binaries take precedence (note it's exported at beginning of # path export PATH=/usr/local/bin:$PATH # Load .bashrc if it exists test -f ~/.bashrc && source ~/.bashrc #To activate bash completion, add the following to your ~/.bash_profile: if [ -f $(brew --prefix)/etc/bash_completion ]; then source $(brew --prefix)/etc/bash_completion fi if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi export PATH="$HOME/.rbenv/bin:$PATH" eval "$(rbenv init -)"