5

由于此错误,我无法打开我的应用程序,我尝试添加// *= require "bootstrap-responsive",但这不起作用,我也尝试从自定义中删除代码并将其添加到应用程序中,然后将应用程序重命名为application.css.scss,我尝试将自定义重命名为custom.scssonly 但我找不到任何有效的解决方案。我可以做什么 ?

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 然后再次克隆它以使用它之后发生

4

1 回答 1

18

自 Bootstrap 3.0 起,Bootstrap-responsive 已被移除。

3.0 是移动优先设计,现在是原生的响应能力。

删除那个 require 语句,现在不需要了。

添加

Dexter(OP) 终于通过回到 2.3 解决了这个问题。尽管这种情况很少见,但我认为可以吸取两个教训:

  1. 始终将版本添加到关键宝石。

  2. 始终使用bundle installbundle(默认安装)。仅bundle update在确实需要并且您已做好充分准备时使用。

于 2013-11-13T08:28:14.327 回答