我在OSX 10.9.4上使用RVM v1.25.30(稳定版)安装了Ruby。我能够让一切工作正常,但每当我关闭终端并重新打开它并尝试使用命令bundle exec spork
运行之前运行的命令时,我就会收到错误:
bundler: command not found: spork
Install missing gem executables with 'bundle install'
我可以完成捆绑安装和解决问题的过程,主要是建设nokogiri
缺少libiconv
,但每次都很烦人。
我的.bash_profile
文件如下:
# Setting PATH for Python 3.4
# The orginal version is saved in .bash_profile.pysave
PATH="/usr/local/bin:~/bin:~/.rvm/rubies/ruby-2.0.0-p481/bin/gem:/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
export PATH
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
source ~/.profile
我的.profile
文件如下:
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
这里有一些注意事项。我使用Ruby v2.0.0p481
,Rails v4.0.8
,rvm v1.25.30
,Bundler v1.6.2
。我也遵循Michael Hartl的Rails教程。我在这里缺少什么?