I'm experimenting with Rails 3.1 which uses Sprokets 2.0 as its "asset pipeline" and trying to set it up to use CDN-hosted libraries when in production, but local hosted file for development.
I.e., in development:
jquery.js is loaded as part of application.js
but in production:
http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js is loaded instead.
Bonus question: any reason why I should not do this?
use_remotecall inside of the target file. This allowed automatic dependency resolution along with taking advantage of CDN hosted scripts. You can checkout the project for some ideas - javascripto.org. I've stopped working on this project since the introduction of the asset pipeline, but thought it was relevant. Hope the asset pipeline will support something like this. I'd also like to see something like my concept of packages. – Blake Taylor Aug 30 '11 at 0:46