在 Rails 中更快地加载 CSS 和 JS。您的资源已受到保护。
= AssetHat
Load CSS and JS faster. Your assets are covered.
With Rails' default asset caching, CSS and JS are concatenated (not even minified) at runtime when that bundle is first requested. Not good enough. To make your pages load faster, AssetHat can automatically:
After setup, you can use this in your layouts and views:
'application' %> ['plugins', 'common'] %>
Which expands into:
Don't have your own copy of jQuery? AssetHat detects this and knows how to load jQuery from Google's CDN instead, whether you're in development or production.
Add this to your deploy script, and your CSS/JS will be optimized automatically:
rake asset_hat:minify
Tested with Rails 3 and Rails 2.3.x (with Bundler). For a quick overview, see {the AssetHat website}[http://mintdigital.github.com/asset_hat/]. To see how AssetHat performs in production, {check some stats}[http://logicalfriday.com/2011/05/06/assethat-0-4-load-css-and-js-faster-your-assets-are-covered/]. For the gritty details, check the {complete docs}[http://mintdigital.github.com/asset_hat/doc/] and {change history}[http://mintdigital.github.com/asset_hat/doc/files/HISTORY.html].
== Installation
=== Rails 3.x
=== Rails 2.3.x
Add the gem:
If you're using {Bundler 0.9+}[http://github.com/carlhuda/bundler]:
If you're using Rails 2.3.x's config.gem:
Add to your app's Rakefile: require 'asset_hat/tasks'
== Quick start & configuration
In all of your layouts and views, change stylesheet_link_tag to include_css, and change javascript_include_tag to include_js. (Don't worry, these helpers use the same arguments as Rails' helpers. Nothing will break.)
Create the default config file:
rake asset_hat:config
In your app, open the new file at config/assets.yml, and set up your CSS/JS bundles according to that file's example.
In your layouts and views, switch to the new bundles. For example, if you originally had this:
Then you'll now have:
css: bundles: application: ['reset', 'application']
'application' %>
Add this to your deployment script:
rake asset_hat:minify
This minifies all of the CSS/JS files listed in config/assets.yml, concatenates the minified code into bundle files, and adds CDN asset hosts and cache-busting commit IDs to image URLs in your CSS.
Any previously minified bundles are overwritten; your original CSS/JS files remain untouched. Bundles are created as new files in public/stylesheets/bundles/ and public/javascripts/bundles/.
If you're using a CSS/JS layer like SASS or CoffeeScript, be sure to compile/transpile to regular CSS/JS before running rake asset_hat:minify. (When AssetHat is ready for Rails 3.1, rake asset_hat:minify will automatically start with rake assets:precompile.)
=== Advanced configuration
If you manage deployments with Capistrano[http://www.capify.org/], see the gem's packaged example at lib/asset_hat/capistrano.rb[https://github.com/mintdigital/asset_hat/blob/master/lib/asset_hat/capistrano.rb].
If your stack uses Unicorn[http://unicorn.bogomips.org/], you'll want to configure it so that assets' commit IDs are precached only once. See the gem's packaged example at lib/asset_hat/unicorn.rb[https://github.com/mintdigital/asset_hat/blob/master/lib/asset_hat/unicorn.rb].
If you want shorter output during deployments, you can use
rake asset_hat:minify FORMAT=short (one output line per bundle) or
FORMAT=dot (one output line total) in your deploy script.
Additional settings are supported in config/assets.yml:
engine: Indicates how CSS and JS are minified; omit this setting to use the defaults. By default, CSS is minified with rgrove/cssmin[http://github.com/rgrove/cssmin] (a Ruby port of Lecomte's YUI Compressor and Schlueter's PHP cssmin), and JS is minified with rgrove/jsmin[http://github.com/rgrove/jsmin] (a Ruby port of Crockford's JSMin).
If you'd prefer to have slightly more readable code for debugging purposes, you can switch both the CSS and JS engines to weak. However, the weak engines don't save as many bytes.
vendors: Configures third-party JS that's loaded from a CDN or other external source. The following example configures jQuery and jQuery UI for use throughout the app:
js: vendors: jquery: version: 1.5.2 jquery_ui: version: 1.8.12 remote_url: http://cdn.example.com/js/jquery-ui-1.8.12.min.js remote_ssl_url: https://cdn-ssl.example.com/js/jquery-ui-1.8.12.min.js
Configuration keys per vendor:
A full list of supported vendors is in the AssetHat::JS::Vendors module.
=== SSL configuration
When you request a page via SSL, some browsers (euphemism for "IE") show errors if any assets -- stylesheets, JS files, images -- are served without SSL.
AssetHat plays well with SSL pages that load assets from a CDN. Put this in config/environments/production.rb or similar:
config.action_controller.asset_host = Proc.new do |source, request| "#{request.protocol}cdn#{source.hash % 4}.example.com" # => 'http://cdn0.example.com', 'https://cdn1.example.com', etc. end
This switches to a different CDN URL if the request used SSL. When you run rake asset_hat:minify at deploy time, AssetHat detects this configuration, and generates special SSL versions of each stylesheet that also load images from CDN via SSL. (Non-SSL pages still get non-SSL stylesheets.)
== Usage
In your layouts and views, instead of these:
'screen,projection', :cache => 'bundles/application' %> 'bundles/application' %>
Use these:
'application' %> 'application' %>
These turn into:
Have an enormous app? You can integrate gradually, using AssetHat alongside Rails' default asset caching.
If your environment has config.action_controller.perform_caching set to true (e.g., in production), the layout/view will include minified bundle files. Otherwise, the separate, unminified files will be included, based on the bundle contents you define in config/assets.yml.
If your environment has config.action_controller.asset_host pointing to a CDN, your CSS/JS files will load from there. If your configuration supports using the CDN via SSL (see the section "SSL configuration"), SSL requests will also load CSS/JS files via SSL.
=== Advanced usage
You can also include single files as expected:
Or include multiple bundles at once:
%w[plugins common] %>
When including multiple bundles at once, this yields one or
What a hassle. With AssetHat, just set up a bundle in config/assets.yml:
js: bundles: app: - common - search - app
Ready to go. Here's how to load jQuery and your bundle normally:
'app' %>
And here's how to switch on LABjs mode:
'app', :loader => :lab_js %>
Add your preferred jQuery and LABjs versions to the config file if you haven't already, and that's it. If you don't have a copy of LABjs locally, AssetHat knows how to instead load it from {cdnjs}[http://cdnjs.com/], which uses high-speed Amazon Cloudfront servers.
This is just the most common LABjs use case. If you want to fine-tune it even further, you can have the best of both worlds:
In this example, common is not a dependency for search, so allow either to execute as soon as possible -- whichever happens to load first -- rather than always forcing common to execute first.
=== Bundle tips
Don't go overboard with huge bundles:
== More info
=== Contributing
Have an idea, problem, or bug report?
{Send a pull request}[http://help.github.com/send-pull-requests/]! Please base
pull requests on the development branch, not the master branch.
Contributors:
== {What is best in AssetHat?}[http://www.youtube.com/watch?v=V30tyaXv6EI]
暂无开放 Issues,或尚未同步最近议题。