Combining JavaScript Files - Juicer vs Sprockets
Currently working on a project that has well defined use of “namespaces” and structured use folders for its JavaScript files. I wanted to investigate the options for combining and minifying JavaScript files. I need a tool that: can be run from command line (my team uses many different editors and IDEs) will work on both Windows and Unix based platforms does not require huge, obscure configuration files can merge sources recursively has an acceptable software license (MIT / Apache / BSD) is thorougly tested is extensible can work with any JavaScript framework I settled for trying out Juicer and Sprockets, since both tools met the requirements and were the only high-quality tools on my radar. ...