RailsAssetPackager

Rails Asset Packager provides an easy way to combine and compress stylesheets and Javascript files to improve performance for production environments. The packager also provides a convenient way to push those packed files, along with any other static assets to Amazon S3.

Description

When it comes time to deploy your new web application, instead of sending down a dozen JavaScript and CSS files full of formatting and comments, this Rails plugin makes it simple to merge and compress JavaScript and CSS down into one or more files, increasing speed and saving bandwidth.

When in development, it allows you to use your original versions and retain formatting and comments for readability and debugging.

This code is released under the MIT license (like Ruby). You’re free to rip it up, enhance it, etc. And if you make any enhancements, I’d like to know so I can add them back in. Thanks!

Credit

This gem is derived directly from the work of Scott Becker and Katherine G Pe on the AssetPackager plugin for Rails.

Key Features

  • Merges and compresses JavaScript and CSS when running in production.

  • Uses uncompressed originals when running in development.

  • Can generate packages on demand in production

  • Provides Rake tasks to pre-package and push static resources to Amazon S3

Components

  • Rake tasks for managing packages and pushing to S3

  • Helper functions for including these JavaScript and CSS files in your views.

  • YAML configuration file for mapping JavaScript and CSS files to packages.

  • Section in YAML configuration for declaring folders of static assets to be pushed to Amazon S3.

  • Rake Task for auto-generating the YAML file from your existing JavaScript files.

Updates

January 2011:

  • Ported to be packaged as a Gem

  • Leveraging Railties capabilities in Rails 3

  • Added S3 publishing support

How to Use:

  1. Add the gem to your Gemfile gem “rails_asset_packager”

  2. Run the rake task “asset:packager:create_yml” to generate the /config/asset_packages.yml

file the first time. You will need to reorder files under ‘base’ so dependencies are loaded in correct order. Feel free to rename or create new file packages.

IMPORTANT: JavaScript files can break once compressed if each statement doesn’t end with a semi-colon. The minifier puts multiple statements on one line, so if the semi-colon is missing, the statement may no longer makes sense and cause a syntax error.

Examples of config/asset_packages.yml

Example from a fresh rails app after running the rake task. (Stylesheets is blank because a default rails app has no stylesheets yet.):


javascripts:

  • base:

    • prototype

    • effects

    • dragdrop

    • controls

    • application

stylesheets:

  • base: []

uploads:

  • images

Multiple packages:


javascripts:

  • base:

    • prototype

    • effects

    • controls

    • dragdrop

    • application

  • secondary:

    • foo

    • bar

stylesheets:

  • base:

    • screen

    • header

  • secondary:

    • foo

    • bar

uploads:

  • images

  1. Run the rake task “asset:packager:build_all” to generate the compressed, merged versions

for each package. Whenever you rearrange the yaml file, you’ll need to run this task again.

Merging and compressing is expensive, so this is something we want to do once, not every time your app starts. Thats why its a rake task. You can run this task via Capistrano when deploying to avoid an initially slow request the first time a page is generated.

Note: The package will be generated on the fly if it doesn’t yet exist, so you don’t need to run the rake task when deploying, its just recommended for speeding up initial requests.

  1. Run the rake task “rake asset:cache:production” to push your static assets and compressed

packages up to Amazon S3.

Note: You need to have a file at config/s3.yml that defines your Amazon S3 access credentials.

  1. Use the helper functions whenever including these files in your application. See below for examples.

  2. Potential warning: css compressor function currently removes CSS comments. This might blow

away some CSS hackery. To disable comment removal, comment out /lib/synthesis/asset_package.rb line 176.

JavaScript Examples

Example call (based on above /config/asset_packages.yml):

<%= javascript_include_merged :base %>

In development, this generates:

<script type="text/javascript" src="/javascripts/prototype.js?1228027240"></script>
<script type="text/javascript" src="/javascripts/effects.js?1228027240"></script>
<script type="text/javascript" src="/javascripts/controls.js?1228027240"></script>
<script type="text/javascript" src="/javascripts/dragdrop.js?1228027240"></script>
<script type="text/javascript" src="/javascripts/application.js?1228027240"></script>

In production, this generates:

<script type="text/javascript" src="/javascripts/base_packaged.js?123456789"></script>

Stylesheet Examples

Example call:

<%= stylesheet_link_merged :base %>

In development, this generates:

<link href="/stylesheets/screen.css?1228027240" media="screen" rel="Stylesheet" type="text/css" />
<link href="/stylesheets/header.css?1228027240" media="screen" rel="Stylesheet" type="text/css" />

In production this generates:

<link href="/stylesheets/base_packaged.css?1228027240" media="screen" rel="Stylesheet" type="text/css" />

Different CSS Media

All options for stylesheet_link_tag still work, so if you want to specify a different media type:

<%= stylesheet_link_merged :secondary, 'media' => 'print' %>

Rake tasks

rake asset:packager:build_all # Merge and compress assets rake asset:packager:create_yml # Generate asset_packages.yml from existing assets rake asset:packager:delete_all # Delete all asset builds rake asset:cache:s3 # update s3 rake asset:cache:production # cache assets and update s3 for production

License

Copyright © 2006-2008 Scott Becker - synthesis.sbecker.net Copyright © 2011 James Thompson - [email protected] Contact via Github for change requests, etc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.