I'm new to rails, so please excuse me for asking a likely-basic question. I know the /assets is for files that are automatically loaded on a page request. But doesn't this mean that the server will always send all the files in this folder? Something doesn't seem right to me here.
This issue came up because I have been loading my css files from the /public folder, but realized that when I run my app in Firefox, none of the classes are recognized.
Anyway, I know that convention over configuration is a big thing in rails, so what is the convention for specifying what css/javascript files I want to be loaded on a per-page basis?
public
and what lives inassets
? I tried my best, but not sure it's "correct".