New to rails. Just trying to understand these two files in the \\assests directory.
For example, the application.js file has lines such as:
//= require j
To understand it, you have to look at Sprockets, which is used for compiling and serving web assets.
You can find these files using gem which. Here is an example with bootstrap-sass:
~ gem which bootstrap-sass
/Users/andr/.rbenv/versions/1.9.3-p194/lib/ruby/gems/1.9.1/gems/bootstrap-sass-2.3.0.1/lib/bootstrap-sass.rb
The explanation of @import 'bootstrap': https://github.com/thomas-mcdonald/bootstrap-sass#css and there is an open issue with comments.