I found a neat trick that speeds up asset loading in development for
katello developers. Here's a simple patch:
but you basically add:
map("/assets"){ run Rails.application.assets }
to your config.ru file.
For me it sped up initial page asset loading (after a fresh rails start)
from around 50 seconds to around 5 seconds.
-Justin