I have followed the "Ruby on Rails Tutorial" by Michael Hartl to "5.1.2 Bootstrap and custom CSS." Basically, I added bootstrap-sass gem on my Gemfile, installed it; added config.assets.precompile += %w(*.png *.jpg *.jpeg *.gif) to config/application.rb; created the file: app/assets/stylesheets/custom.css.scss, and added the line: @import "bootstrap"; to custom.css.scss.
However, when I tried to run my rails home page on my local rails server, I got the following error:
ActionView::Template::Error (No such file or directory - /Users/boss/Documents/Aptana/vendor (in /Users/boss/Documents/Aptana/test3/app/assets/stylesheets/custom.css.scss)):
2: <html>
3: <head>
4: <title><%= full_title(yield(:title)) %></title>
5: <%= stylesheet_link_tag "application.css", media: "all", "data-turbolinks-track" => true %>
6: <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7: <%= csrf_meta_tags %>
8: <!--[if lt IE 9]>
app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3756317890019596621_70094001398520'
Any ideas why I get the error?