splitting into a multipackage, with a subpackage for the standalone
version (which embeds a version of nginx). The standalone version
operates much like other ruby webservers, serving a single ruby/rack
application.
Switch to using the gem version of passenger. Because the gem
installs into a versioned directory, setup symlinks to the
versioned directory so that nginx configuration files don't need
to be modified when the version is updated.
Rack::Cache is suitable as a quick drop-in component to enable HTTP
caching for Rack-based applications that produce freshness (Expires,
Cache-Control) and/or validation (Last-Modified, ETag) information.
Standards-based (see RFC 2616 / Section 13).
Freshness/expiration based caching
Validation
Vary support
Portable: 100% Ruby / works with any Rack-enabled framework.
Disk, memcached, and heap memory storage backends.
OK claudio@
Sprockets is a Ruby library for compiling and serving web assets. It
features declarative dependency management for JavaScript and CSS
assets, as well as a powerful preprocessor pipeline that allows you to
write assets in languages like CoffeeScript, Sass, SCSS and LESS.
OK claudio@
RDoc produces HTML and command-line documentation for Ruby projects.
RDoc includes the rdoc and ri tools for generating and displaying online
documentation.
OK claudio@
Lots of Ruby libraries utilize JSON parsing in some form, and everyone
has their favorite JSON library. In order to best support multiple JSON
parsers and libraries, multi_json is a general-purpose swappable JSON
backend library.
MultiJSON tries to have intelligent defaulting. That is, if you have any
of the supported engines already loaded, it will utilize them before
attempting to load any. When loading, libraries are ordered by speed.
First Yajl-Ruby, then the JSON gem, then JSON pure. If no JSON library
is available, MultiJSON falls back to a bundled version of OkJson.
OK claudio@