Hi
I am using rails(4.2). I included js and css files as per documentation. But sprockets not able to find css and js files. When I changed file inclusion to following lines then it's start working.
# app/assets/stylesheets/application.css.scss
require dataTables/jquery.dataTables.bootstrap3
# app/assets/javascripts/application.js
//= require dataTables/jquery.dataTables
//= require dataTables/jquery.dataTables.bootstrap3
Would there be a mistake in documentation or am I doing anything wrong?