我對編程相對比較陌生,因此我希望問題不是絕對愚蠢。要導入的文件找不到或無法讀取:bootstrap
我有一個關於我的rails應用程序的問題。
我嘗試使用引導程序。我創建了一個名爲「custom.css.scss」的文件,並在其中使用了「@import」bootstrap「」行。
問題是:每次我保存我的「custom.css.scss」文件時,會自動生成一個新文件「custom.css」,並且我收到以下消息:「custom.css.scss要導入的文件未找到或無法讀取:bootstrap「。
有趣的是:當我刪除文件「custom.css.scss」並刷新瀏覽器時,一切正常(這意味着:使用引導程序)。
你有什麼想法,可能是什麼原因?
最親切的問候 克里斯
PS:這是我安裝的寶石文件
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'bootstrap-sass', '2.1'
gem 'bcrypt-ruby', '3.0.1'
gem 'faker', '1.0.1'
gem 'will_paginate', '3.0.3'
gem 'bootstrap-will_paginate', '0.0.6'
gem 'jquery-rails', '2.0.2'
group :development, :test do
gem 'sqlite3', '1.3.5'
gem 'rspec-rails', '2.11.0'
# gem 'guard-rspec', '1.2.1'
# gem 'guard-spork', '1.2.0'
# gem 'spork', '0.9.2'
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
group :test do
gem 'capybara', '1.1.2'
gem 'factory_girl_rails', '4.1.0'
gem 'cucumber-rails', '1.2.1', :require => false
gem 'database_cleaner', '0.7.0'
gem 'launchy', '2.1.0'
# gem 'rb-fsevent', '0.9.1', :require => false
# gem 'growl', '1.0.3'
end
group :production do
gem 'pg', '0.12.2'
end
的custom.css.scss文件看起來像這樣
@import "bootstrap";
/* universal */
html {
overflow-y:scroll
}
body {
padding-top: 60px
}
section {
overflow: auto;
}
textarea {
resize: vertial;
}
.center {
text-align: center;
}
.center h1 {
margin-bottom: 10px;
}
/* typography */
h1, h2, h3, h4, h5, h6 {
line-height: 1
}
h1 {
font-size: 3em;
letter-spacing: -2px;
margin-bottom: 30px;
text-align: center;
}
h2 {
font-size: 1.7em;
letter-spacing: -1px;
margin-bottom: 30px;
text-align: center;
font-weight: normal;
color: #999;
}
p {
font-size: 1.1em;
line-height: 1.7em;
}
你能發佈什麼'custom.css.scss'看起來像你在做導入? – Zkoh
當然。它看起來像這樣: @import「bootstrap」; /*通用*/ HTML { \t溢出-γ:滾動 } 體{ \t填充頂:60像素 } 部{ \t溢出:汽車; } textarea { \t resize:vertial; } .center { \t text-align:center; } .center h1 { \t margin-bottom:10px; } /*排版*/ H1,H2,H3,H4,H5,H6 { \t行高:1 } H1 { \t字體大小:3EM; \t letter-spacing:-2px; \t margin-bottom:30px; \t text-align:center; } h2 { \t font-size:1.7em; \t letter-spacing:-1px; \t margin-bottom:30px; \t text-align:center; \t font-weight:normal; \t顏色:#999; } p { \t font-size:1.1em; \t line-height:1.7em; } – BiallaC
您是否:1)在編輯您的Gemfile後運行「bundle install」,2)重新啓動您的Rails服務器? –