=================== WebResourceBundler gem README ============================ Content: 1. Purpose 2. Functional description 3. Installation 4. Usage =================== 1. Purpose =============================================== The main purpose of WebResourceBundler gem is to minimize request & response round-trips count. This could be done by bundling particular resource (css or js) in one file. Encoding images in base64 and putting then in css directly. =================== 2. Functional description ================================ WebResourceBundler parse your head html block, finding all css and js resource files. It can bundle resource of particular type in one single file. Base64 filter encodes images in base64 putting them in css directly. Separate files for IE and other browsers created. Conditional comments (like <% end %> Notice: For Rails < 3 you should use <% web_resource_bundler_process do %> And For Rails >= 3 use <%= web_resource_bundler_process do %> And as result you'll have !!! Don't forget to clean your cache directory after deploy to clean old bundles To disable bundling and see raw results add no_bundler param mysite.com/?no_bundler=1