这是当我尝试运行 Rails 服务器时在浏览器中遇到的错误:
[couldn't find file 'bootstrap' with type 'text/css']
Run Code Online (Sandbox Code Playgroud)
我的 gemfile 中有这个:
gem 'bootstrap-sass', '~> 3.3.5.1'
Run Code Online (Sandbox Code Playgroud)
这是我的 application.css.scss 文件:
*= require bootstrap
*= require_tree .
*= require_self
*/
@import "bootstrap";
Run Code Online (Sandbox Code Playgroud)
有谁知道如何启动并运行它?
这是链接https://github.com/Gtar69/games
我遇到了问题 
我已完成采购如下
在Gemfile中:
gem "bootstrap-sass"
Run Code Online (Sandbox Code Playgroud)
在终端
bundle install
Run Code Online (Sandbox Code Playgroud)
在 app/assets/stylesheets/application.css
*= require bootstrap
Run Code Online (Sandbox Code Playgroud)
但是本地服务器仍然无法显示引导程序形成,因为它说它无法找到引导程序...
谢谢你的帮助〜