【发布时间】:2016-06-04 13:34:57
【问题描述】:
我是 Rails 新手,所以一直在关注构建项目的在线视频教程。
我一直在尝试添加 Bootstrap,但即使在之后
- 添加宝石,
- 进行捆绑安装,
- 重启mysql服务器,然后
- 将 scss @bootsrap 导入添加到 application.css.scss 文件中,
它仍然没有拉到我的索引页面。
我有什么遗漏吗?
这是我的 application.css.scss
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require_self
*/
// Custom bootstrap variables must be set or imported before bootstrap itself.
@import "bootstrap-sprockets";
@import "bootstrap";
这是我的 gem 文件:
source 'https://rubygems.org'
gem 'rails', '4.2.6'
gem 'sqlite3'
gem 'simple_form', '>= 3.2.1'
gem 'bootstrap-sass', '~> 3.3.6'
gem 'sass-rails', '>= 3.2'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
group :development, :test do
gem 'byebug'
end
group :development do
gem 'web-console', '~> 2.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
谢谢!
【问题讨论】:
-
你能给我们看看你的
application.css吗?
标签: ruby-on-rails ruby twitter-bootstrap rubygems