启动项目报错: Could not find gem 'sass-rails (~> 4.0.3) ruby' in any of the gem sources listed in your Gemfile or installed on this machine. Run `bundle install` to install missing gems. 是什么原因
2015-04-26
最新回答 / vaevau
http://stackoverflow.com/questions/34420554/there-was-an-error-while-trying-to-load-the-gem-uglifier-bundlergemrequire 看看这个,也许能解决
2015-04-26
最赞回答 / zhong999
创建项目时,如果你是用 Bundle (Rails 项目)修改你的 Gemfile 将 http://rubygems.org 改为 http://ruby.taobao.org/然后进入项目目录,运行命令:$bundle install即可
2015-04-19
最赞回答 / weychen
好的,因为的我的web server 默认绑定的IP是127.0.0.1,把它改为0.0.0.0就行了 rails s 改为 rails s -b 0.0.0.0 就ok了
2015-03-31
@orangebattle 感谢,确实错了,在视频02:50 处。 视频笔记 http://happypeter.github.io/rails10/04_staticpage.html 中刚刚更正过来了。
2015-03-21