简体   繁体   English

bootstrap:要导入的文件未找到或不可读

[英]bootstrap :File to import not found or unreadable

I have found already some topics about my problem but I didnt understand how it should be fixed. 我已经找到了一些关于我的问题的主题,但我不明白应该如何修复它。

I was following http://ruby.railstutorial.org/chapters/filling-in-the-layout#fnref-5_5 tutorial and stuck by importing the bootstrap in app/assets/stylesheets/custom.css.scss. 我正在关注http://ruby.railstutorial.org/chapters/filling-in-the-layout#fnref-5_5教程,并在app / assets / stylesheets / custom.css.scss中导入引导程序。

That is my Gemfile: 那是我的Gemfile:

source 'https://rubygems.org'
gem 'bootstrap-sass', '2.0.4'
gem 'rails', '3.2.8'

group :development, :test do
gem 'sqlite3', '1.3.5'
gem 'rspec-rails', '2.11.0'
end

Gems used only for assets and not required
in production environments by default.
group :assets do
gem 'sass-rails', '3.2.5'
gem 'coffee-rails', '3.2.2'
gem 'uglifier', '1.2.3'
end

gem 'jquery-rails', '2.0.2'

group :test do
gem 'capybara', '1.1.2'
end

group :production do
gem 'pg', '0.12.2'
end

And what error I get on localhost/sample_app/home 我在localhost / sample_app / home上遇到了什么错误

Sass::SyntaxError in Static_pages#home

Showing c:/Users/katja/Arbeit/rails_projects/sample_app/app/views/layouts/application.html.erb where line #5 raised:

File to import not found or unreadable: bootstrap.
Load path: Sass::Rails::Importer(c:/Users/katja/Arbeit/rails_projects/sample_app/app/assets/stylesheets/custom.css.scss)
(in c:/Users/katja/Arbeit/rails_projects/sample_app/app/assets/stylesheets/custom.css.scss)
Extracted source (around line #5):

2: 
3:

4: <%= full_title(yield(:title)) %>
5: <%= stylesheet_link_tag "application", media: "all" %>
6: <%= javascript_include_tag "application" %>
7: <%= csrf_meta_tags %>
8: <!--[if lt IE 9]>
Rails.root: c:/Users/katja/Arbeit/rails_projects/sample_app
Application Trace | Framework Trace | Full Trace
app/assets/stylesheets/custom.css.scss:1
app/views/layouts/application.html.erb:5:in `app_views_layouts_application_html_erb_16020705_20168520'

I am using Windows and GitBash. 我正在使用Windows和GitBash。 I ahve already tried to delete tmp/cache, it didnt help. 我已经尝试删除tmp / cache,它没有帮助。 Everything runs perfect but when I add @import "bootstrap"; 一切都运行得很完美,但是当我添加@import“bootstrap”时; to a cusom.css.scss, I get an error. 到cusom.css.scss,我收到一个错误。

重新启动Web服务器“rails s”。

i had to restart the server ps aux | 我不得不重新启动服务器ps aux | grep rails kill -9 12345 grep rails kill -9 12345

where 12345 is the process number 其中12345是进程号

(not sure if there is another way to restart rails? (不确定是否有其他方法可以重启rails?

  source 'https://rubygems.org'
  gem 'rails', '3.2.8'

  group :development, :test do
  gem 'sqlite3', '1.3.5'
  gem 'rspec-rails', '2.11.0'
  end

  Gems used only for assets and not required
  in production environments by default.
  group :assets do
  gem 'sass-rails', '3.2.5'
  gem 'bootstrap-sass', '2.0.4'
  gem 'coffee-rails', '3.2.2'
  gem 'uglifier', '1.2.3'
  end

  gem 'jquery-rails', '2.0.2'

  group :test do
  gem 'capybara', '1.1.2'
  end

  group :production do
  gem 'pg', '0.12.2'
  end

add your bootstrap-sass gem into the assets block 将bootstrap-sass gem添加到资产块中

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 要导入的文件未找到或不可读:bootstrap - File to import not found or unreadable: bootstrap 找不到要导入的文件或不可读的文件:引导链轮 - File to import not found or unreadable: bootstrap-sprockets 找不到导入文件或文件不可读:引导程序错误行#5 - File to import not found or unreadable: bootstrap error line #5 要导入的文件未找到或无法读取:bootstrap(Bootstrap、Rails、Sass 错误) - File to import not found or unreadable: bootstrap (Bootstrap, Rails, Sass error) Rails + Twitter Bootstrap:导入未找到或不可读的文件:twitter / bootstrap - Rails + Twitter Bootstrap: File to import not found or unreadable: twitter/bootstrap Bootstrap-Saas:找不到导入文件或不可读:bootstrap - Bootstrap-Saas: File to import not found or unreadable: bootstrap Ruby on Rails-导入Bootstrap错误“找不到文件或无法读取文件” - Ruby on Rails - import Bootstrap error “File not found or unreadable” 错误:找不到导入文件或不可读:引导链轮? - Error: File to import not found or unreadable: bootstrap-sprockets? 错误:找不到导入文件或不可读:bootstrap-sprockets - Error: File to import not found or unreadable: bootstrap-sprockets Sass::SyntaxError:找不到或无法读取要导入的文件:bootstrap-sprockets - Sass::SyntaxError: File to import not found or unreadable: bootstrap-sprockets
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM