Having trouble with Bootstrap integration, encountering the error message:
Sprockets::FileNotFound in Home#index
Showing /Users/user/Ruby/app/views/layouts/application.html.erb where line #5 raised:
couldn't find file 'twitter/bootstrap/responsive'
(in /Users/user/Ruby/app/assets/stylesheets/application.css:16)
Here's the traceback:
app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1332549890933188692_2173263620'
This is the code I currently have for my stylesheet:
*
*= require twitter/bootstrap
*= require_self
*= require_tree .
*= require twitter/bootstrap/responsive
*/
As for the JavaScript file:
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require bootstrap
//= require_tree .
I've tried numerous tutorials and forum posts to no avail. Any advice would be greatly appreciated.
EDIT
My application.html.erb
<!DOCTYPE html>
<html>
<head>
<title>Dumpr</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<div class="container-narrow">
<div class="masthead">
<%= render 'layouts/user_header' %>
<h3 class="muted"><%= link_to "SimpleDevise", root_path %></h3>
<h5 class="muted">A demo of using SimpleDB with Devise</h5>
</div>
<hr />
<%= yield %>
</div>
</body>
</html>