由于国内网络原因(你懂的),导致 rubygems.org 存放在 Amazon S3 上面的资源文件间歇性连接失败,翻不了墙的可以换成阿里的源。
gem sources --add https://ruby.taobao.org/ --remove https://rubygems.org/
安装RVM
$ bash <<(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
$ rvm install 2.1.5
# 查看是否安装成功
$ rvm list
$ gem install bundler
$ bundle install
$ gem install nokogiri -v '1.6.6.3'
# 都完成后表示ruby已经安装完成
# 启动
$ bin/rails c 或者 irb