unset BASH_ENV

if [ -f /etc/profile ] ; then . /etc/profile; fi

if [ -f ~/.bash_profile ] ; then . ~/.bash_profile;
elif [ -f ~/.bash_login ] ; then . ~/.bash_login;
elif [ -f ~/.profile ] ; then . ~/.profile;
fi

if [[ "$HOME" != `pwd` ]] ; then
  [[ -f .rvmrc && -n $rvm_version ]] && source .rvmrc
fi

[[ -f ~/.aptanarc ]] && . ~/.aptanarc
