From d2f2c2ed19c82fd7356a66dc9476901e72d8f7d4 Mon Sep 17 00:00:00 2001 From: Wlodek Bzyl Date: Fri, 5 Jun 2009 20:37:10 +0200 Subject: [PATCH] Updated README. --- README.markdown | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.markdown b/README.markdown index 9845f51..e4d7a34 100644 --- a/README.markdown +++ b/README.markdown @@ -122,10 +122,14 @@ In order to use include the following in a Sinatra application: Or, if subclassing `Sinatra::Base`, include helpers manually: + gem 'emk-sinatra-url-for' + require 'sinatra/url_for' + gem 'wbzyl-sinatra-static-assets' require 'sinatra/static_assets' class Summer < Sinatra::Base + helpers Sinatra::UrlForHelper helpers Sinatra::StaticAssets # ... end