由于此错误,我无法打开我的应用程序,我尝试添加// *= require "bootstrap-responsive"
,但这不起作用,我也尝试从自定义中删除代码并将其添加到应用程序中,然后将应用程序重命名为application.css.scss
,我尝试将自定义重命名为custom.scss
only 但我找不到任何有效的解决方案。我可以做什么 ?
Sass::SyntaxError at /
File to import not found or unreadable: bootstrap-responsive.
Load paths:
Sass::Rails::Importer(/home/dexter/Desktop/Sherif/Triton/app/assets/stylesheets/custom.css.scss)
/home/dexter/.rvm/gems/ruby-1.9.3-p194/gems/bootstrap-sass-3.0.2.1/vendor/assets/stylesheets
(in /home/dexter/Desktop/Sherif/Triton/app/assets/stylesheets/custom.css.scss)
自定义.css.scss
// Example using 'Spruce' bootswatch
//
// First import variables
@import "bootswatch/cerulean/variables";
// Then bootstrap itself
@import "bootstrap";
// Bootstrap body padding for fixed navbar
body { padding-top: 60px; }
// Responsive styles go here in case you want them
@import "bootstrap-responsive";
// And finally bootswatch style itself
@import "bootswatch/cerulean/bootswatch";
....
应用程序.css
/*
* 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 vendor/assets/stylesheets of plugins, if any, 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 top of the
* compiled file, but it's generally better to create a new file per style scope.
*
*= require_self
*= require jquery.ui.all
*= require bootstrap-datepicker
*= require bootstrap-timepicker
*= require bootstrap_form
*= require style-metro
*= require login
*= require font
*= require_tree .
*/
Gemfile(我试图将引导程序移出资产组,但我也没有解决错误)
group :assets do
gem 'sass-rails', '3.2.4'
gem 'bootstrap-sass', '~> 3.0.2.0'
...
end
我的错误只是在我将我的项目推送到 github 然后再次克隆它以使用它之后发生