I have two questions.
Am I making a wrong assumption that all my javascripts should be compressed into application.js by default in rails 3.1 even in development mode?
If not, then why does my tag have all 30 of my javascripts and take forver to load?
My application.js file looks like this:
//= require jquery
//= require jquery_ujs
//= require jquery-ui
//= require_tree .
And in the browser it is rendered as:
// This is a manifest file that'll be compiled into including all the files listed below.
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
// be included in the compiled file accessible from http://example.com/assets/application.js
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
;
While all my other javascripts are rendered in full.
Thank a bunch!