I've started a new Rails (4.2.2) app, only with some basic functionality. But the javascript and css files aren't rendered:
I have installed the sprockets gem and I've tried explicitly adding the 'sprockets' gem to my Gemfile (and running bundle install), but it didn't help.
Here is my application.js:
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require_tree .
And these two lines are in my application.html.erb
<%= stylesheet_link_tag 'default', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'default', 'data-turbolinks-track' => true %>
I have Ruby 2.1.6p336 installed on Windows 8.1 Does somebody know where to look for answers or know what is going wrong? I'm pretty new to rails.