Class: Rack::Static
Overview
The Rack::Static middleware intercepts requests for static files (javascript files, images, stylesheets, etc) based on the url prefixes passed in the options, and serves them using a Rack::File object. This allows a Rack stack to serve both static and dynamic content.
Examples:
use Rack::Static, :urls => ["/media"]
will serve all requests beginning with /media from the "media" folder
located in the current directory (ie media/*).
use Rack::Static, :urls => ["/css", "/images"], :root => "public"
will serve all requests beginning with /css or /images from the folder
"public" in the current directory (ie public/css/* and public/images/*)
Direct Known Subclasses
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, options = {}) ⇒ Static
constructor
A new instance of Static.
Constructor Details
Instance Method Details
#call(env) ⇒ Object
26 27 28 29 30 31 32 33 34 35 |
# File 'lib/gems/rack-0.9.1/lib/rack/static.rb', line 26 def call(env) path = env["PATH_INFO"] can_serve = @urls.any? { |url| path.index(url) == 0 } if can_serve @file_server.call(env) else @app.call(env) end end |