sinatra/README.rdoc

1772 lines
49 KiB
Plaintext
Raw Normal View History

2008-03-25 00:20:58 +00:00
= Sinatra
Sinatra is a DSL for quickly creating web applications in Ruby with minimal
effort:
2008-03-25 00:20:58 +00:00
# myapp.rb
require 'sinatra'
2008-03-25 00:20:58 +00:00
get '/' do
'Hello world!'
end
Install the gem and run with:
2008-03-25 00:20:58 +00:00
gem install sinatra
ruby -rubygems myapp.rb
View at: http://localhost:4567
2011-02-20 18:05:02 +00:00
It is recommended to also run <tt>gem install thin</tt>, which Sinatra will
pick up if available.
== Routes
In Sinatra, a route is an HTTP method paired with a URL-matching pattern.
Each route is associated with a block:
2008-03-25 00:20:58 +00:00
get '/' do
.. show something ..
2008-03-25 00:20:58 +00:00
end
2008-03-25 00:20:58 +00:00
post '/' do
.. create something ..
end
2008-03-25 00:20:58 +00:00
put '/' do
2011-03-18 18:17:24 +00:00
.. replace something ..
end
patch '/' do
.. modify something ..
2008-03-25 00:20:58 +00:00
end
2008-03-25 00:20:58 +00:00
delete '/' do
.. annihilate something ..
end
2011-03-18 18:17:24 +00:00
options '/' do
.. appease something ..
end
Routes are matched in the order they are defined. The first route that
matches the request is invoked.
2008-03-25 01:28:24 +00:00
Route patterns may include named parameters, accessible via the
<tt>params</tt> hash:
2008-03-25 01:28:24 +00:00
get '/hello/:name' do
2009-05-20 17:56:58 +00:00
# matches "GET /hello/foo" and "GET /hello/bar"
I knew I shoulda taken that left turn at Hoboken This is a fairly large reworking of Sinatra's innards. Although most of the internal implementation has been modified, it provides the same basic feature set and is meant to be compatible with Sinatra 0.3.2. * The Event and EventContext classes have been removed. Sinatra applications are now defined within the class context of a Sinatra::Base subclass; each request is processed within a new instance. * Sinatra::Base can be used as a base class for multiple Rack applications within a single process and can be used as Rack middleware. * The routing and result type processing implementation has been simplified and enhanced a bit. There's a new route conditions system for things like :agent/:host matching and a request level #pass method has been added to allow an event handler to exit immediately, passing control to the next matching route. * Regular expressions may now be used in route patterns. Captures are available as an array from "params[:captures]". * The #body helper method now takes a block. The block is not evaluated until an attempt is made to read the body. * Options are now dynamically generated class attributes on the Sinatra::Base subclass (instead of OpenStruct); options are inherited by subclasses and may be overridden up the inheritance hierarchy. The Base.set manages all option related stuff. * The application file (app_file) detection heuristics are bit more sane now. This fixes some bugs with reloading and public/views directory detection. All thin / passenger issues of these type should be better now. * Error mappings are now split into to distinct layers: exception mappings and custom error pages. Exception mappings are registered with 'error(Exception)' and are run only when the app raises an exception. Custom error pages are registered with error(status_code) and are run any time the response has the status code specified. It's also possible to register an error page for a range of status codes: 'error(500..599)'. * The spec and unit testing extensions have been modified to take advantage of the ability to have multiple Sinatra applications. The Sinatra::Test module must be included within the TestCase in order to take advantage of these methods (unless the 'sinatra/compat' library has been required). * Rebuilt specs from scratch for better coverage and organization. Sinatra 3.2 unit tests have been retained under ./compat to ensure a baseline level of compatibility with previous versions; use the 'rake compat' task to run these. A large number of existing Sinatra idioms have been deprecated but continue to be supported through the 'sinatra/compat' library. * The "set_option" and "set_options" methods have been deprecated due to redundancy; use "set". * The "env" option (Sinatra::Base.env) has been renamed to "environment" and deprecated because it's too easy to confuse with the request-level Rack environment Hash (Sinatra::Base#env). * The request level "stop" method has been renamed "halt" and deprecated. This is for consistency with `throw :halt`. * The request level "entity_tag" method has been renamed "etag" and deprecated. Both versions were previously supported. * The request level "headers" method has been deprecated. Use response['Header-Name'] to access and modify response headers. * Sinatra.application is deprecated. Use Sinatra::Application instead. * Setting Sinatra.application = nil to reset an application is deprecated. You shouldn't have to reset objects anymore. * The Sinatra.default_options Hash is deprecated. Modifying this object now results in "set(key, value)" invocations on the Sinatra::Base subclass. * The "body.to_result" convention has been deprecated. * The ServerError exception has been deprecated. Any Exception is now considered a ServerError.
2008-12-13 21:06:02 +00:00
# params[:name] is 'foo' or 'bar'
"Hello #{params[:name]}!"
2008-03-25 01:28:24 +00:00
end
You can also access named parameters via block parameters:
get '/hello/:name' do |n|
"Hello #{n}!"
end
Route patterns may also include splat (or wildcard) parameters, accessible
via the <tt>params[:splat]</tt> array:
2008-03-25 01:28:24 +00:00
get '/say/*/to/*' do
# matches /say/hello/to/world
I knew I shoulda taken that left turn at Hoboken This is a fairly large reworking of Sinatra's innards. Although most of the internal implementation has been modified, it provides the same basic feature set and is meant to be compatible with Sinatra 0.3.2. * The Event and EventContext classes have been removed. Sinatra applications are now defined within the class context of a Sinatra::Base subclass; each request is processed within a new instance. * Sinatra::Base can be used as a base class for multiple Rack applications within a single process and can be used as Rack middleware. * The routing and result type processing implementation has been simplified and enhanced a bit. There's a new route conditions system for things like :agent/:host matching and a request level #pass method has been added to allow an event handler to exit immediately, passing control to the next matching route. * Regular expressions may now be used in route patterns. Captures are available as an array from "params[:captures]". * The #body helper method now takes a block. The block is not evaluated until an attempt is made to read the body. * Options are now dynamically generated class attributes on the Sinatra::Base subclass (instead of OpenStruct); options are inherited by subclasses and may be overridden up the inheritance hierarchy. The Base.set manages all option related stuff. * The application file (app_file) detection heuristics are bit more sane now. This fixes some bugs with reloading and public/views directory detection. All thin / passenger issues of these type should be better now. * Error mappings are now split into to distinct layers: exception mappings and custom error pages. Exception mappings are registered with 'error(Exception)' and are run only when the app raises an exception. Custom error pages are registered with error(status_code) and are run any time the response has the status code specified. It's also possible to register an error page for a range of status codes: 'error(500..599)'. * The spec and unit testing extensions have been modified to take advantage of the ability to have multiple Sinatra applications. The Sinatra::Test module must be included within the TestCase in order to take advantage of these methods (unless the 'sinatra/compat' library has been required). * Rebuilt specs from scratch for better coverage and organization. Sinatra 3.2 unit tests have been retained under ./compat to ensure a baseline level of compatibility with previous versions; use the 'rake compat' task to run these. A large number of existing Sinatra idioms have been deprecated but continue to be supported through the 'sinatra/compat' library. * The "set_option" and "set_options" methods have been deprecated due to redundancy; use "set". * The "env" option (Sinatra::Base.env) has been renamed to "environment" and deprecated because it's too easy to confuse with the request-level Rack environment Hash (Sinatra::Base#env). * The request level "stop" method has been renamed "halt" and deprecated. This is for consistency with `throw :halt`. * The request level "entity_tag" method has been renamed "etag" and deprecated. Both versions were previously supported. * The request level "headers" method has been deprecated. Use response['Header-Name'] to access and modify response headers. * Sinatra.application is deprecated. Use Sinatra::Application instead. * Setting Sinatra.application = nil to reset an application is deprecated. You shouldn't have to reset objects anymore. * The Sinatra.default_options Hash is deprecated. Modifying this object now results in "set(key, value)" invocations on the Sinatra::Base subclass. * The "body.to_result" convention has been deprecated. * The ServerError exception has been deprecated. Any Exception is now considered a ServerError.
2008-12-13 21:06:02 +00:00
params[:splat] # => ["hello", "world"]
end
get '/download/*.*' do
# matches /download/path/to/file.xml
I knew I shoulda taken that left turn at Hoboken This is a fairly large reworking of Sinatra's innards. Although most of the internal implementation has been modified, it provides the same basic feature set and is meant to be compatible with Sinatra 0.3.2. * The Event and EventContext classes have been removed. Sinatra applications are now defined within the class context of a Sinatra::Base subclass; each request is processed within a new instance. * Sinatra::Base can be used as a base class for multiple Rack applications within a single process and can be used as Rack middleware. * The routing and result type processing implementation has been simplified and enhanced a bit. There's a new route conditions system for things like :agent/:host matching and a request level #pass method has been added to allow an event handler to exit immediately, passing control to the next matching route. * Regular expressions may now be used in route patterns. Captures are available as an array from "params[:captures]". * The #body helper method now takes a block. The block is not evaluated until an attempt is made to read the body. * Options are now dynamically generated class attributes on the Sinatra::Base subclass (instead of OpenStruct); options are inherited by subclasses and may be overridden up the inheritance hierarchy. The Base.set manages all option related stuff. * The application file (app_file) detection heuristics are bit more sane now. This fixes some bugs with reloading and public/views directory detection. All thin / passenger issues of these type should be better now. * Error mappings are now split into to distinct layers: exception mappings and custom error pages. Exception mappings are registered with 'error(Exception)' and are run only when the app raises an exception. Custom error pages are registered with error(status_code) and are run any time the response has the status code specified. It's also possible to register an error page for a range of status codes: 'error(500..599)'. * The spec and unit testing extensions have been modified to take advantage of the ability to have multiple Sinatra applications. The Sinatra::Test module must be included within the TestCase in order to take advantage of these methods (unless the 'sinatra/compat' library has been required). * Rebuilt specs from scratch for better coverage and organization. Sinatra 3.2 unit tests have been retained under ./compat to ensure a baseline level of compatibility with previous versions; use the 'rake compat' task to run these. A large number of existing Sinatra idioms have been deprecated but continue to be supported through the 'sinatra/compat' library. * The "set_option" and "set_options" methods have been deprecated due to redundancy; use "set". * The "env" option (Sinatra::Base.env) has been renamed to "environment" and deprecated because it's too easy to confuse with the request-level Rack environment Hash (Sinatra::Base#env). * The request level "stop" method has been renamed "halt" and deprecated. This is for consistency with `throw :halt`. * The request level "entity_tag" method has been renamed "etag" and deprecated. Both versions were previously supported. * The request level "headers" method has been deprecated. Use response['Header-Name'] to access and modify response headers. * Sinatra.application is deprecated. Use Sinatra::Application instead. * Setting Sinatra.application = nil to reset an application is deprecated. You shouldn't have to reset objects anymore. * The Sinatra.default_options Hash is deprecated. Modifying this object now results in "set(key, value)" invocations on the Sinatra::Base subclass. * The "body.to_result" convention has been deprecated. * The ServerError exception has been deprecated. Any Exception is now considered a ServerError.
2008-12-13 21:06:02 +00:00
params[:splat] # => ["path/to/file", "xml"]
2008-03-25 01:28:24 +00:00
end
Or with block parameters:
get '/download/*.*' do |path, ext|
[path, ext] # => ["path/to/file", "xml"]
end
Route matching with Regular Expressions:
get %r{/hello/([\w]+)} do
"Hello, #{params[:captures].first}!"
end
Or with a block parameter:
get %r{/hello/([\w]+)} do |c|
"Hello, #{c}!"
end
=== Conditions
Routes may include a variety of matching conditions, such as the user agent:
2008-03-25 01:28:24 +00:00
get '/foo', :agent => /Songbird (\d\.\d)[\d\/]*?/ do
"You're using Songbird version #{params[:agent][0]}"
end
get '/foo' do
I knew I shoulda taken that left turn at Hoboken This is a fairly large reworking of Sinatra's innards. Although most of the internal implementation has been modified, it provides the same basic feature set and is meant to be compatible with Sinatra 0.3.2. * The Event and EventContext classes have been removed. Sinatra applications are now defined within the class context of a Sinatra::Base subclass; each request is processed within a new instance. * Sinatra::Base can be used as a base class for multiple Rack applications within a single process and can be used as Rack middleware. * The routing and result type processing implementation has been simplified and enhanced a bit. There's a new route conditions system for things like :agent/:host matching and a request level #pass method has been added to allow an event handler to exit immediately, passing control to the next matching route. * Regular expressions may now be used in route patterns. Captures are available as an array from "params[:captures]". * The #body helper method now takes a block. The block is not evaluated until an attempt is made to read the body. * Options are now dynamically generated class attributes on the Sinatra::Base subclass (instead of OpenStruct); options are inherited by subclasses and may be overridden up the inheritance hierarchy. The Base.set manages all option related stuff. * The application file (app_file) detection heuristics are bit more sane now. This fixes some bugs with reloading and public/views directory detection. All thin / passenger issues of these type should be better now. * Error mappings are now split into to distinct layers: exception mappings and custom error pages. Exception mappings are registered with 'error(Exception)' and are run only when the app raises an exception. Custom error pages are registered with error(status_code) and are run any time the response has the status code specified. It's also possible to register an error page for a range of status codes: 'error(500..599)'. * The spec and unit testing extensions have been modified to take advantage of the ability to have multiple Sinatra applications. The Sinatra::Test module must be included within the TestCase in order to take advantage of these methods (unless the 'sinatra/compat' library has been required). * Rebuilt specs from scratch for better coverage and organization. Sinatra 3.2 unit tests have been retained under ./compat to ensure a baseline level of compatibility with previous versions; use the 'rake compat' task to run these. A large number of existing Sinatra idioms have been deprecated but continue to be supported through the 'sinatra/compat' library. * The "set_option" and "set_options" methods have been deprecated due to redundancy; use "set". * The "env" option (Sinatra::Base.env) has been renamed to "environment" and deprecated because it's too easy to confuse with the request-level Rack environment Hash (Sinatra::Base#env). * The request level "stop" method has been renamed "halt" and deprecated. This is for consistency with `throw :halt`. * The request level "entity_tag" method has been renamed "etag" and deprecated. Both versions were previously supported. * The request level "headers" method has been deprecated. Use response['Header-Name'] to access and modify response headers. * Sinatra.application is deprecated. Use Sinatra::Application instead. * Setting Sinatra.application = nil to reset an application is deprecated. You shouldn't have to reset objects anymore. * The Sinatra.default_options Hash is deprecated. Modifying this object now results in "set(key, value)" invocations on the Sinatra::Base subclass. * The "body.to_result" convention has been deprecated. * The ServerError exception has been deprecated. Any Exception is now considered a ServerError.
2008-12-13 21:06:02 +00:00
# Matches non-songbird browsers
2008-03-25 01:28:24 +00:00
end
2008-03-25 00:20:58 +00:00
2010-09-03 05:57:49 +00:00
Other available conditions are +host_name+ and +provides+:
get '/', :host_name => /^admin\./ do
"Admin Area, Access denied!"
end
get '/', :provides => 'html' do
haml :index
end
get '/', :provides => ['rss', 'atom', 'xml'] do
builder :feed
end
You can easily define your own conditions:
set(:probability) { |value| condition { rand <= value } }
get '/win_a_car', :probability => 0.1 do
"You won!"
end
get '/win_a_car' do
"Sorry, you lost."
end
2011-02-19 10:53:34 +00:00
=== Return Values
The return value of a route block determines at least the response body passed
on to the HTTP client, or at least the next middleware in the Rack stack.
Most commonly, this is a string, as in the above examples. But other values are
also accepted.
2010-09-10 14:33:45 +00:00
You can return any object that would either be a valid Rack response, Rack
body object or HTTP status code:
* An Array with three elements: <tt>[status (Fixnum), headers (Hash), response body (responds to #each)]</tt>
* An Array with two elements: <tt>[status (Fixnum), response body (responds to #each)]</tt>
* An object that responds to <tt>#each</tt> and passes nothing but strings to the given block
* A Fixnum representing the status code
That way we can, for instance, easily implement a streaming example:
class Stream
def each
100.times { |i| yield "#{i}\n" }
end
end
2010-09-07 12:53:43 +00:00
get('/') { Stream.new }
2011-02-21 10:21:59 +00:00
=== Custom Route Matchers
As shown above, Sinatra ships with built-in support for using String patterns
and regular expressions as route matches. However, it does not stop there. You
can easily define your own matchers:
class AllButPattern
Match = Struct.new(:captures)
def initialize(except)
@except = except
2011-03-06 15:14:58 +00:00
@captures = Match.new([])
2011-02-21 10:21:59 +00:00
end
def match(str)
2011-03-06 15:14:58 +00:00
@captures unless @except === str
2011-02-21 10:21:59 +00:00
end
end
def all_but(pattern)
AllButPattern.new(pattern)
end
get all_but("/index") do
# ...
end
Note that the above example might be over-engineered, as it can also be
expressed as:
get // do
pass if request.path_info == "/index"
# ...
end
Or, using negative look ahead:
get %r{^(?!/index$)} do
# ...
end
I knew I shoulda taken that left turn at Hoboken This is a fairly large reworking of Sinatra's innards. Although most of the internal implementation has been modified, it provides the same basic feature set and is meant to be compatible with Sinatra 0.3.2. * The Event and EventContext classes have been removed. Sinatra applications are now defined within the class context of a Sinatra::Base subclass; each request is processed within a new instance. * Sinatra::Base can be used as a base class for multiple Rack applications within a single process and can be used as Rack middleware. * The routing and result type processing implementation has been simplified and enhanced a bit. There's a new route conditions system for things like :agent/:host matching and a request level #pass method has been added to allow an event handler to exit immediately, passing control to the next matching route. * Regular expressions may now be used in route patterns. Captures are available as an array from "params[:captures]". * The #body helper method now takes a block. The block is not evaluated until an attempt is made to read the body. * Options are now dynamically generated class attributes on the Sinatra::Base subclass (instead of OpenStruct); options are inherited by subclasses and may be overridden up the inheritance hierarchy. The Base.set manages all option related stuff. * The application file (app_file) detection heuristics are bit more sane now. This fixes some bugs with reloading and public/views directory detection. All thin / passenger issues of these type should be better now. * Error mappings are now split into to distinct layers: exception mappings and custom error pages. Exception mappings are registered with 'error(Exception)' and are run only when the app raises an exception. Custom error pages are registered with error(status_code) and are run any time the response has the status code specified. It's also possible to register an error page for a range of status codes: 'error(500..599)'. * The spec and unit testing extensions have been modified to take advantage of the ability to have multiple Sinatra applications. The Sinatra::Test module must be included within the TestCase in order to take advantage of these methods (unless the 'sinatra/compat' library has been required). * Rebuilt specs from scratch for better coverage and organization. Sinatra 3.2 unit tests have been retained under ./compat to ensure a baseline level of compatibility with previous versions; use the 'rake compat' task to run these. A large number of existing Sinatra idioms have been deprecated but continue to be supported through the 'sinatra/compat' library. * The "set_option" and "set_options" methods have been deprecated due to redundancy; use "set". * The "env" option (Sinatra::Base.env) has been renamed to "environment" and deprecated because it's too easy to confuse with the request-level Rack environment Hash (Sinatra::Base#env). * The request level "stop" method has been renamed "halt" and deprecated. This is for consistency with `throw :halt`. * The request level "entity_tag" method has been renamed "etag" and deprecated. Both versions were previously supported. * The request level "headers" method has been deprecated. Use response['Header-Name'] to access and modify response headers. * Sinatra.application is deprecated. Use Sinatra::Application instead. * Setting Sinatra.application = nil to reset an application is deprecated. You shouldn't have to reset objects anymore. * The Sinatra.default_options Hash is deprecated. Modifying this object now results in "set(key, value)" invocations on the Sinatra::Base subclass. * The "body.to_result" convention has been deprecated. * The ServerError exception has been deprecated. Any Exception is now considered a ServerError.
2008-12-13 21:06:02 +00:00
== Static Files
2008-03-27 02:02:28 +00:00
Static files are served from the <tt>./public</tt> directory. You can specify
a different location by setting the <tt>:public</tt> option:
I knew I shoulda taken that left turn at Hoboken This is a fairly large reworking of Sinatra's innards. Although most of the internal implementation has been modified, it provides the same basic feature set and is meant to be compatible with Sinatra 0.3.2. * The Event and EventContext classes have been removed. Sinatra applications are now defined within the class context of a Sinatra::Base subclass; each request is processed within a new instance. * Sinatra::Base can be used as a base class for multiple Rack applications within a single process and can be used as Rack middleware. * The routing and result type processing implementation has been simplified and enhanced a bit. There's a new route conditions system for things like :agent/:host matching and a request level #pass method has been added to allow an event handler to exit immediately, passing control to the next matching route. * Regular expressions may now be used in route patterns. Captures are available as an array from "params[:captures]". * The #body helper method now takes a block. The block is not evaluated until an attempt is made to read the body. * Options are now dynamically generated class attributes on the Sinatra::Base subclass (instead of OpenStruct); options are inherited by subclasses and may be overridden up the inheritance hierarchy. The Base.set manages all option related stuff. * The application file (app_file) detection heuristics are bit more sane now. This fixes some bugs with reloading and public/views directory detection. All thin / passenger issues of these type should be better now. * Error mappings are now split into to distinct layers: exception mappings and custom error pages. Exception mappings are registered with 'error(Exception)' and are run only when the app raises an exception. Custom error pages are registered with error(status_code) and are run any time the response has the status code specified. It's also possible to register an error page for a range of status codes: 'error(500..599)'. * The spec and unit testing extensions have been modified to take advantage of the ability to have multiple Sinatra applications. The Sinatra::Test module must be included within the TestCase in order to take advantage of these methods (unless the 'sinatra/compat' library has been required). * Rebuilt specs from scratch for better coverage and organization. Sinatra 3.2 unit tests have been retained under ./compat to ensure a baseline level of compatibility with previous versions; use the 'rake compat' task to run these. A large number of existing Sinatra idioms have been deprecated but continue to be supported through the 'sinatra/compat' library. * The "set_option" and "set_options" methods have been deprecated due to redundancy; use "set". * The "env" option (Sinatra::Base.env) has been renamed to "environment" and deprecated because it's too easy to confuse with the request-level Rack environment Hash (Sinatra::Base#env). * The request level "stop" method has been renamed "halt" and deprecated. This is for consistency with `throw :halt`. * The request level "entity_tag" method has been renamed "etag" and deprecated. Both versions were previously supported. * The request level "headers" method has been deprecated. Use response['Header-Name'] to access and modify response headers. * Sinatra.application is deprecated. Use Sinatra::Application instead. * Setting Sinatra.application = nil to reset an application is deprecated. You shouldn't have to reset objects anymore. * The Sinatra.default_options Hash is deprecated. Modifying this object now results in "set(key, value)" invocations on the Sinatra::Base subclass. * The "body.to_result" convention has been deprecated. * The ServerError exception has been deprecated. Any Exception is now considered a ServerError.
2008-12-13 21:06:02 +00:00
set :public, File.dirname(__FILE__) + '/static'
2008-03-25 00:20:58 +00:00
Note that the public directory name is not included in the URL. A file
<tt>./public/css/style.css</tt> is made available as
<tt>http://example.com/css/style.css</tt>.
== Views / Templates
2008-03-25 00:20:58 +00:00
2011-04-17 14:23:41 +00:00
Each template language is exposed as via its own rendering method. These
methods simply return a string:
2011-04-17 14:23:41 +00:00
get '/' do
erb :index
end
2008-03-25 00:20:58 +00:00
2011-04-17 14:23:41 +00:00
This renders <tt>views/index.erb</tt>.
2011-04-17 14:23:41 +00:00
Instead of a template name, you can also just pass in the template content
directly:
2008-03-25 00:20:58 +00:00
get '/' do
2011-04-17 14:23:41 +00:00
code = "<%= Time.now >"
erb code
2008-03-25 00:20:58 +00:00
end
2011-04-17 14:23:41 +00:00
Templates take a second argument, the options hash:
get '/' do
2011-04-17 14:23:41 +00:00
erb :index, :layout => :post
end
2011-04-17 14:23:41 +00:00
This will render <tt>views/index.erb</tt> embedded in the
<tt>views/post.erb</tt> (default is <tt>views/layout.erb</tt>, if it exists).
2011-04-17 14:23:41 +00:00
Any options not understood by Sinatra will be passed on to the template
engine:
get '/' do
2011-04-17 14:23:41 +00:00
haml :index, :format => :html5
end
2011-04-17 14:23:41 +00:00
You can also set options per template language in general:
2011-04-17 14:23:41 +00:00
set :haml, :format => :html5
get '/' do
2011-04-17 14:23:41 +00:00
haml :index
end
2011-04-17 14:23:41 +00:00
Options passed to the render method override options set via +set+.
2011-04-17 14:23:41 +00:00
Available Options:
2011-04-17 14:23:41 +00:00
[locals]
List of locals passed to the document. Handy with partials.
Example: <tt>erb "<%= foo %>", :locals => {:foo => "bar"}</tt>
2011-04-17 14:23:41 +00:00
[default_encoding]
String encoding to use if uncertain. Defaults to
<tt>settings.default_encoding</tt>.
2011-04-17 14:23:41 +00:00
[views]
Views folder to load templates from. Defaults to <tt>settings.views</tt>.
2011-04-17 14:23:41 +00:00
[layout]
Whether to use a layout (+true+ or +false+), if it's a Symbol, specifies
what template to use. Example: <tt>erb :index, :layout => !request.xhr?</tt>
2011-04-17 14:23:41 +00:00
[content_type]
Content-Type the template produces, default depends on template language.
2011-04-17 14:23:41 +00:00
[scope]
Scope to render template under. Defaults to the application instance. If you
change this, instance variables and helper methods will not be available.
2011-04-17 14:23:41 +00:00
[layout_engine]
Template engine to use for rendering the layout. Useful for languages that
do not support layouts otherwise. Defaults to the engine used for the
temple. Example: <tt>set :rdoc, :layout_engine => :erb</tt>
2011-04-17 14:23:41 +00:00
Templates are assumed to be located directly under the <tt>./views</tt>
directory. To use a different views directory:
2011-04-17 14:23:41 +00:00
set :views, settings.root + '/templates'
2011-04-17 14:23:41 +00:00
One important thing to remember is that you always have to reference
templates with symbols, even if they're in a subdirectory (in this
case, use <tt>:'subdir/template'</tt>). You must use a symbol because
otherwise rendering methods will render any strings passed to them
directly.
2011-04-17 14:23:41 +00:00
=== Available Template Languages
2011-04-17 14:23:41 +00:00
Some languages have multiple implementations. To specify what implementation
to use (and to be thread-safe), you should simply require it first:
2011-04-17 14:23:41 +00:00
require 'rdiscount' # or require 'bluecloth'
get('/') { markdown :index }
2011-04-17 14:23:41 +00:00
=== Haml Templates
2011-04-17 14:23:41 +00:00
Dependency:: {haml}[http://haml-lang.com/]
File Extensions:: <tt>.haml</tt>
Example:: <tt>haml :index, :format => :html5</tt>
2011-04-17 14:23:41 +00:00
=== Erb Templates
2011-04-17 14:23:41 +00:00
Dependency:: {erubis}[http://www.kuwata-lab.com/erubis/] or
erb (included in Ruby)
File Extensions:: <tt>.erb</tt>, <tt>.rhtml</tt> or <tt>.erubis</tt> (Erubis
only)
Example:: <tt>erb :index</tt>
2011-04-17 14:23:41 +00:00
=== Builder Templates
2011-04-17 14:23:41 +00:00
Dependency:: {builder}[http://builder.rubyforge.org/]
File Extensions:: <tt>.builder</tt>
Example:: <tt>builder { |xml| xml.em "hi" }</tt>
2011-04-17 14:23:41 +00:00
It also takes a block for inline templates (see example).
2011-04-17 14:23:41 +00:00
=== Nokogiri Templates
2011-04-17 14:23:41 +00:00
Dependency:: {nokogiri}[http://nokogiri.org/]
File Extensions:: <tt>.nokogiri</tt>
Example:: <tt>builder { |xml| xml.em "hi" }</tt>
2011-04-17 14:23:41 +00:00
It also takes a block for inline templates (see example).
2011-04-17 14:23:41 +00:00
=== Sass Templates
2011-04-17 14:23:41 +00:00
Dependency:: {sass}[http://sass-lang.com/]
File Extensions:: <tt>.sass</tt>
Example:: <tt>sass :stylesheet, :style => :expanded</tt>
2011-04-17 14:23:41 +00:00
=== SCSS Templates
2011-04-17 14:23:41 +00:00
Dependency:: {sass}[http://sass-lang.com/]
File Extensions:: <tt>.scss</tt>
Example:: <tt>scss :stylesheet, :style => :expanded</tt>
2011-04-17 14:23:41 +00:00
=== Less Templates
2011-04-17 14:23:41 +00:00
Dependency:: {less}[http://www.lesscss.org/]
File Extensions:: <tt>.less</tt>
Example:: <tt>less :stylesheet</tt>
2011-04-17 14:23:41 +00:00
=== Liquid Templates
2011-04-17 14:23:41 +00:00
Dependency:: {liquid}[http://www.liquidmarkup.org/]
File Extensions:: <tt>.liquid</tt>
Example:: <tt>liquid :index, :locals => { :key => 'value' }</tt>
Since you cannot call Ruby methods (except for +yield+) from a Liquid
2011-04-17 14:23:41 +00:00
template, you almost always want to pass locals to it.
=== Markdown Templates
2011-04-17 14:23:41 +00:00
Dependency:: {rdiscount}[https://github.com/rtomayko/rdiscount],
{redcarpet}[https://github.com/tanoku/redcarpet],
{bluecloth}[http://deveiate.org/projects/BlueCloth],
{kramdown}[http://kramdown.rubyforge.org/] *or*
{maruku}[http://maruku.rubyforge.org/]
File Extensions:: <tt>.markdown</tt>, <tt>.mkd</tt> and <tt>.md</tt>
Example:: <tt>markdown :index, :layout_engine => :erb</tt>
2011-01-11 08:13:18 +00:00
It is not possible to call methods from markdown, nor to pass locals to it.
You therefore will usually use it in combination with another rendering
engine:
erb :overview, :locals => { :text => markdown(:introduction) }
2011-01-11 08:13:18 +00:00
Note that you may also call the +markdown+ method from within other templates:
%h1 Hello From Haml!
%p= markdown(:greetings)
Since you cannot call Ruby from Markdown, you cannot use layouts written in
Markdown. However, it is possible to use another rendering engine for the
2011-04-17 14:23:41 +00:00
template than for the layout by passing the <tt>:layout_engine</tt> option.
2011-01-11 08:13:18 +00:00
=== Textile Templates
2011-04-17 14:23:41 +00:00
Dependency:: {RedCloth}[http://redcloth.org/]
File Extensions:: <tt>.textile</tt>
Example:: <tt>textile :index, :layout_engine => :erb</tt>
2011-01-11 08:13:18 +00:00
It is not possible to call methods from textile, nor to pass locals to it. You
therefore will usually use it in combination with another rendering engine:
erb :overview, :locals => { :text => textile(:introduction) }
2011-01-11 08:31:11 +00:00
Note that you may also call the +textile+ method from within other templates:
%h1 Hello From Haml!
%p= textile(:greetings)
Since you cannot call Ruby from Textile, you cannot use layouts written in
Textile. However, it is possible to use another rendering engine for the
2011-04-17 14:23:41 +00:00
template than for the layout by passing the <tt>:layout_engine</tt> option.
=== RDoc Templates
2011-04-17 14:23:41 +00:00
Dependency:: {rdoc}[http://rdoc.rubyforge.org/]
File Extensions:: <tt>.rdoc</tt>
Example:: <tt>textile :README, :layout_engine => :erb</tt>
2011-01-11 08:13:18 +00:00
It is not possible to call methods from rdoc, nor to pass locals to it. You
therefore will usually use it in combination with another rendering engine:
erb :overview, :locals => { :text => rdoc(:introduction) }
2011-01-11 08:31:11 +00:00
Note that you may also call the +rdoc+ method from within other templates:
%h1 Hello From Haml!
%p= rdoc(:greetings)
Since you cannot call Ruby from RDoc, you cannot use layouts written in
RDoc. However, it is possible to use another rendering engine for the
2011-04-17 14:23:41 +00:00
template than for the layout by passing the <tt>:layout_engine</tt> option.
=== Radius Templates
2011-04-17 14:23:41 +00:00
Dependency:: {radius}[http://radius.rubyforge.org/]
File Extensions:: <tt>.radius</tt>
Example:: <tt>radius :index, :locals => { :key => 'value' }</tt>
2011-04-17 14:23:41 +00:00
Since you cannot call Ruby methods directly from a Radius template, you almost
always want to pass locals to it.
=== Markaby Templates
2011-04-17 14:23:41 +00:00
Dependency:: {markaby}[http://markaby.github.com/]
File Extensions:: <tt>.mab</tt>
Example:: <tt>markaby { h1 "Welcome!" }</tt>
2011-04-17 14:23:41 +00:00
It also takes a block for inline templates (see example).
2010-11-05 12:59:49 +00:00
=== Slim Templates
2011-04-17 14:23:41 +00:00
Dependency:: {slim}[http://slim-lang.com/]
File Extensions:: <tt>.slim</tt>
Example:: <tt>slim :index</tt>
2010-11-05 12:59:49 +00:00
2011-04-15 09:51:35 +00:00
=== Creole Templates
2011-04-17 14:23:41 +00:00
Dependency:: {creole}[https://github.com/minad/creole]
File Extensions:: <tt>.creole</tt>
Example:: <tt>creole :wiki, :layout_engine => :erb</tt>
2011-04-17 14:23:41 +00:00
It is not possible to call methods from creole, nor to pass locals to it. You
therefore will usually use it in combination with another rendering engine:
2011-04-17 14:23:41 +00:00
erb :overview, :locals => { :text => creole(:introduction) }
2011-04-17 14:23:41 +00:00
Note that you may also call the +creole+ method from within other templates:
2011-04-17 14:23:41 +00:00
%h1 Hello From Haml!
%p= creole(:greetings)
2011-04-17 14:23:41 +00:00
Since you cannot call Ruby from Creole, you cannot use layouts written in
Creole. However, it is possible to use another rendering engine for the
template than for the layout by passing the <tt>:layout_engine</tt> option.
2011-04-17 14:23:41 +00:00
=== CoffeeScript Templates
2011-04-17 14:23:41 +00:00
Dependency:: {coffee-script}[https://github.com/josh/ruby-coffee-script]
and a {way to execute javascript}[https://github.com/sstephenson/execjs/blob/master/README.md#readme]
File Extensions:: <tt>.coffee</tt>
Example:: <tt>coffee :index</tt>
=== Embedded Templates
2008-03-25 00:20:58 +00:00
get '/' do
haml '%div.title Hello World'
end
Renders the embedded template string.
2008-03-25 00:20:58 +00:00
=== Accessing Variables in Templates
2008-03-25 00:20:58 +00:00
Templates are evaluated within the same context as route handlers. Instance
variables set in route handlers are directly accessible by templates:
2008-03-25 00:20:58 +00:00
get '/:id' do
@foo = Foo.find(params[:id])
haml '%h1= @foo.name'
2008-03-25 00:20:58 +00:00
end
Or, specify an explicit Hash of local variables:
2008-03-25 00:20:58 +00:00
get '/:id' do
foo = Foo.find(params[:id])
2011-05-02 09:08:09 +00:00
haml '%h1= bar.name', :locals => { :bar => foo }
2008-03-25 00:20:58 +00:00
end
This is typically used when rendering templates as partials from within
other templates.
=== Inline Templates
2008-03-29 23:59:45 +00:00
Templates may be defined at the end of the source file:
2008-03-29 23:59:45 +00:00
require 'sinatra'
2008-03-29 23:59:45 +00:00
get '/' do
haml :index
end
2008-03-29 23:59:45 +00:00
__END__
2008-05-07 21:18:43 +00:00
@@ layout
%html
= yield
2008-05-07 21:18:43 +00:00
@@ index
2008-03-29 23:59:45 +00:00
%div.title Hello world!!!!!
2010-10-12 15:16:29 +00:00
NOTE: Inline templates defined in the source file that requires sinatra are
2010-10-12 15:27:25 +00:00
automatically loaded. Call <tt>enable :inline_templates</tt> explicitly if you
have inline templates in other source files.
=== Named Templates
Templates may also be defined using the top-level <tt>template</tt> method:
2008-03-29 23:59:45 +00:00
template :layout do
"%html\n =yield\n"
2008-03-29 23:59:45 +00:00
end
template :index do
'%div.title Hello World!'
end
get '/' do
haml :index
end
If a template named "layout" exists, it will be used each time a template
is rendered. You can individually disable layouts by passing <tt>:layout => false</tt>
or disable them by default via <tt>set :haml, :layout => false</tt>:
2009-01-09 12:26:10 +00:00
get '/' do
haml :index, :layout => !request.xhr?
end
=== Associating File Extensions
To associate a file extension with a template engine, use
<tt>Tilt.register</tt>. For instance, if you like to use the file extension
+tt+ for Textile templates, you can do the following:
Tilt.register :tt, Tilt[:textile]
=== Adding Your Own Template Engine
First, register your engine with Tilt, then create a rendering method:
Tilt.register :myat, MyAwesomeTemplateEngine
helpers do
def myat(*args) render(:myat, *args) end
end
get '/' do
myat :index
end
Renders <tt>./views/index.myat</tt>. See https://github.com/rtomayko/tilt to
learn more about Tilt.
== Filters
2008-03-25 00:20:58 +00:00
Before filters are evaluated before each request within the same
context as the routes will be and can modify the request and response. Instance
variables set in filters are accessible by routes and templates:
2008-03-25 01:28:24 +00:00
2008-03-25 00:20:58 +00:00
before do
I knew I shoulda taken that left turn at Hoboken This is a fairly large reworking of Sinatra's innards. Although most of the internal implementation has been modified, it provides the same basic feature set and is meant to be compatible with Sinatra 0.3.2. * The Event and EventContext classes have been removed. Sinatra applications are now defined within the class context of a Sinatra::Base subclass; each request is processed within a new instance. * Sinatra::Base can be used as a base class for multiple Rack applications within a single process and can be used as Rack middleware. * The routing and result type processing implementation has been simplified and enhanced a bit. There's a new route conditions system for things like :agent/:host matching and a request level #pass method has been added to allow an event handler to exit immediately, passing control to the next matching route. * Regular expressions may now be used in route patterns. Captures are available as an array from "params[:captures]". * The #body helper method now takes a block. The block is not evaluated until an attempt is made to read the body. * Options are now dynamically generated class attributes on the Sinatra::Base subclass (instead of OpenStruct); options are inherited by subclasses and may be overridden up the inheritance hierarchy. The Base.set manages all option related stuff. * The application file (app_file) detection heuristics are bit more sane now. This fixes some bugs with reloading and public/views directory detection. All thin / passenger issues of these type should be better now. * Error mappings are now split into to distinct layers: exception mappings and custom error pages. Exception mappings are registered with 'error(Exception)' and are run only when the app raises an exception. Custom error pages are registered with error(status_code) and are run any time the response has the status code specified. It's also possible to register an error page for a range of status codes: 'error(500..599)'. * The spec and unit testing extensions have been modified to take advantage of the ability to have multiple Sinatra applications. The Sinatra::Test module must be included within the TestCase in order to take advantage of these methods (unless the 'sinatra/compat' library has been required). * Rebuilt specs from scratch for better coverage and organization. Sinatra 3.2 unit tests have been retained under ./compat to ensure a baseline level of compatibility with previous versions; use the 'rake compat' task to run these. A large number of existing Sinatra idioms have been deprecated but continue to be supported through the 'sinatra/compat' library. * The "set_option" and "set_options" methods have been deprecated due to redundancy; use "set". * The "env" option (Sinatra::Base.env) has been renamed to "environment" and deprecated because it's too easy to confuse with the request-level Rack environment Hash (Sinatra::Base#env). * The request level "stop" method has been renamed "halt" and deprecated. This is for consistency with `throw :halt`. * The request level "entity_tag" method has been renamed "etag" and deprecated. Both versions were previously supported. * The request level "headers" method has been deprecated. Use response['Header-Name'] to access and modify response headers. * Sinatra.application is deprecated. Use Sinatra::Application instead. * Setting Sinatra.application = nil to reset an application is deprecated. You shouldn't have to reset objects anymore. * The Sinatra.default_options Hash is deprecated. Modifying this object now results in "set(key, value)" invocations on the Sinatra::Base subclass. * The "body.to_result" convention has been deprecated. * The ServerError exception has been deprecated. Any Exception is now considered a ServerError.
2008-12-13 21:06:02 +00:00
@note = 'Hi!'
request.path_info = '/foo/bar/baz'
end
get '/foo/*' do
@note #=> 'Hi!'
params[:splat] #=> 'bar/baz'
2008-03-25 00:20:58 +00:00
end
After filters are evaluated after each request within the same context and can
also modify the request and response. Instance variables set in before filters
and routes are accessible by after filters:
after do
puts response.status
end
2011-02-19 10:45:25 +00:00
Note: Unless you use the +body+ method rather than just returning a String from
the routes, the body will not yet be available in the after filter, since it is
generated later on.
Filters optionally take a pattern, causing them to be evaluated only if the
request path matches that pattern:
before '/protected/*' do
authenticate!
end
after '/create/:slug' do |slug|
session[:last_slug] = slug
end
Like routes, filters also take conditions:
before :agent => /Songbird/ do
# ...
end
after '/blog/*', :host_name => 'example.com' do
# ...
end
2011-02-18 09:34:00 +00:00
== Helpers
Use the top-level <tt>helpers</tt> method to define helper methods for use in
route handlers and templates:
helpers do
def bar(name)
"#{name}bar"
end
end
get '/:name' do
bar(params[:name])
end
2011-02-20 14:41:24 +00:00
=== Using Sessions
A session is used to keep state during requests. If activated, you have one
session hash per user session:
enable :sessions
get '/' do
"value = " << session[:value].inspect
end
get '/:value' do
session[:value] = params[:value]
end
Note that <tt>enable :sessions</tt> actually stores all data in a cookie. This
might not always be what you want (storing lots of data will increase your
2011-05-02 09:06:08 +00:00
traffic, for instance). You can use any Rack session middleware: in order to
2011-02-20 14:41:24 +00:00
do so, do *not* call <tt>enable :sessions</tt>, but instead pull in your
middleware of choice how you would any other middleware:
use Rack::Session::Pool, :expire_after => 2592000
get '/' do
"value = " << session[:value].inspect
end
get '/:value' do
session[:value] = params[:value]
end
2011-03-13 08:37:27 +00:00
To improve security, the session data in the cookie is signed with a session
secret. A random secret is generate for you by Sinatra. However, since this
secret will change with every start of your application, you might want to
set the secret yourself, so all your application instances share it:
set :session_secret, 'super secret'
2011-03-19 09:25:00 +00:00
If you want to configure it further, you may also store a hash with options in
the +sessions+ setting:
set :sessions, :domain => 'foo.com'
2011-02-18 09:34:00 +00:00
=== Halting
I knew I shoulda taken that left turn at Hoboken This is a fairly large reworking of Sinatra's innards. Although most of the internal implementation has been modified, it provides the same basic feature set and is meant to be compatible with Sinatra 0.3.2. * The Event and EventContext classes have been removed. Sinatra applications are now defined within the class context of a Sinatra::Base subclass; each request is processed within a new instance. * Sinatra::Base can be used as a base class for multiple Rack applications within a single process and can be used as Rack middleware. * The routing and result type processing implementation has been simplified and enhanced a bit. There's a new route conditions system for things like :agent/:host matching and a request level #pass method has been added to allow an event handler to exit immediately, passing control to the next matching route. * Regular expressions may now be used in route patterns. Captures are available as an array from "params[:captures]". * The #body helper method now takes a block. The block is not evaluated until an attempt is made to read the body. * Options are now dynamically generated class attributes on the Sinatra::Base subclass (instead of OpenStruct); options are inherited by subclasses and may be overridden up the inheritance hierarchy. The Base.set manages all option related stuff. * The application file (app_file) detection heuristics are bit more sane now. This fixes some bugs with reloading and public/views directory detection. All thin / passenger issues of these type should be better now. * Error mappings are now split into to distinct layers: exception mappings and custom error pages. Exception mappings are registered with 'error(Exception)' and are run only when the app raises an exception. Custom error pages are registered with error(status_code) and are run any time the response has the status code specified. It's also possible to register an error page for a range of status codes: 'error(500..599)'. * The spec and unit testing extensions have been modified to take advantage of the ability to have multiple Sinatra applications. The Sinatra::Test module must be included within the TestCase in order to take advantage of these methods (unless the 'sinatra/compat' library has been required). * Rebuilt specs from scratch for better coverage and organization. Sinatra 3.2 unit tests have been retained under ./compat to ensure a baseline level of compatibility with previous versions; use the 'rake compat' task to run these. A large number of existing Sinatra idioms have been deprecated but continue to be supported through the 'sinatra/compat' library. * The "set_option" and "set_options" methods have been deprecated due to redundancy; use "set". * The "env" option (Sinatra::Base.env) has been renamed to "environment" and deprecated because it's too easy to confuse with the request-level Rack environment Hash (Sinatra::Base#env). * The request level "stop" method has been renamed "halt" and deprecated. This is for consistency with `throw :halt`. * The request level "entity_tag" method has been renamed "etag" and deprecated. Both versions were previously supported. * The request level "headers" method has been deprecated. Use response['Header-Name'] to access and modify response headers. * Sinatra.application is deprecated. Use Sinatra::Application instead. * Setting Sinatra.application = nil to reset an application is deprecated. You shouldn't have to reset objects anymore. * The Sinatra.default_options Hash is deprecated. Modifying this object now results in "set(key, value)" invocations on the Sinatra::Base subclass. * The "body.to_result" convention has been deprecated. * The ServerError exception has been deprecated. Any Exception is now considered a ServerError.
2008-12-13 21:06:02 +00:00
To immediately stop a request within a filter or route use:
2008-03-25 00:20:58 +00:00
halt
2010-09-10 14:33:45 +00:00
You can also specify the status when halting:
2009-12-19 08:16:31 +00:00
halt 410
2010-09-10 14:33:45 +00:00
Or the body:
2008-03-25 00:20:58 +00:00
halt 'this will be the body'
2008-03-25 00:20:58 +00:00
2010-09-10 14:33:45 +00:00
Or both:
halt 401, 'go away!'
2008-03-25 00:20:58 +00:00
2010-09-10 14:33:45 +00:00
With headers:
2009-12-19 08:16:31 +00:00
halt 402, {'Content-Type' => 'text/plain'}, 'revenge'
2011-02-27 08:47:07 +00:00
It is of course possible to combine a template with +halt+:
halt erb(:error)
2011-02-18 09:34:00 +00:00
=== Passing
A route can punt processing to the next matching route using <tt>pass</tt>:
2008-03-25 00:20:58 +00:00
get '/guess/:who' do
pass unless params[:who] == 'Frank'
'You got me!'
end
get '/guess/*' do
'You missed!'
end
The route block is immediately exited and control continues with the next
matching route. If no matching route is found, a 404 is returned.
2008-03-25 00:20:58 +00:00
=== Triggering Another Route
Sometimes +pass+ is not what you want, instead you would like to get the result
of calling another route. Simply use +call+ to achieve this:
get '/foo' do
status, headers, body = call env.merge("PATH_INFO" => '/bar')
2011-04-17 10:56:03 +00:00
[status, headers, body.map(&:upcase)]
end
get '/bar' do
"bar"
end
Note that in the example above, you would ease testing and increase performance
by simply moving <tt>"bar"</tt> into a helper used by both <tt>/foo</tt>
and <tt>/bar</tt>.
If you want the request to be sent to the same application instance rather than
a duplicate, use <tt>call!</tt> instead of <tt>call</tt>.
Check out the Rack specification if you want to learn more about <tt>call</tt>.
=== Setting Body, Status Code and Headers
It is possible and recommended to set the status code and response body with the
return value of the route block. However, in some scenarios you might want to
set the body at an arbitrary point in the execution flow. You can do so with the
2011-02-19 10:45:25 +00:00
+body+ helper method. If you do so, you can use that method from there on to
access the body:
2011-02-18 10:10:43 +00:00
get '/foo' do
body "bar"
end
after do
puts body
end
It is also possible to pass a block to +body+, which will be executed by the Rack
handler (this can be used to implement streaming, see "Return Values").
Similar to the body, you can also set the status code and headers:
get '/foo' do
status 418
headers \
"Allow" => "BREW, POST, GET, PROPFIND, WHEN"
"Refresh" => "Refresh: 20; http://www.ietf.org/rfc/rfc2324.txt"
body "I'm a tea pot!"
end
Like +body+, +headers+ and +status+ with no arguments can be used to access
their current values.
2011-03-13 08:33:01 +00:00
=== Logging
In the request scope, the +logger+ helper exposes a +Logger+ instance:
get '/' do
logger.info "loading data"
# ...
end
This logger will automatically take your Rack handler's logging settings into
account. If logging is disabled, this method will return a dummy object, so
you do not have to worry in your routes and filters about it.
Note that logging is only enabled for <tt>Sinatra::Application</tt> by
default, so if you inherit from <tt>Sinatra::Base</tt>, you probably want to
enable it yourself:
class MyApp < Sinatra::Base
configure(:production, :development) do
enable :logging
end
end
=== Mime Types
When using <tt>send_file</tt> or static files you may have mime types Sinatra
doesn't understand. Use +mime_type+ to register them by file extension:
2011-05-01 11:36:29 +00:00
configure do
mime_type :foo, 'text/foo'
end
You can also use it with the +content_type+ helper:
get '/' do
content_type :foo
"foo foo foo"
end
2011-02-19 10:29:15 +00:00
=== Generating URLs
2011-02-19 10:45:25 +00:00
For generating URLs you should use the +url+ helper method, for instance, in
2011-02-19 10:29:15 +00:00
Haml:
%a{:href => url('/foo')} foo
It takes reverse proxies and Rack routers into account, if present.
This method is also aliased to +to+ (see below for an example).
2011-02-19 10:29:15 +00:00
2011-02-18 10:06:00 +00:00
=== Browser Redirect
2011-02-19 10:45:25 +00:00
You can trigger a browser redirect with the +redirect+ helper method:
2011-02-18 10:06:00 +00:00
get '/foo' do
2011-02-19 10:28:06 +00:00
redirect to('/bar')
2011-02-18 10:06:00 +00:00
end
2011-02-19 10:45:25 +00:00
Any additional parameters are handled like arguments passed to +halt+:
2011-02-18 10:06:00 +00:00
2011-02-19 10:28:06 +00:00
redirect to('/bar'), 303
redirect 'http://google.com', 'wrong place, buddy'
2011-02-18 10:06:00 +00:00
2011-02-19 10:28:33 +00:00
You can also easily redirect back to the page the user came from with
2011-02-19 10:45:25 +00:00
<tt>redirect back</tt>:
2011-02-19 10:28:33 +00:00
get '/foo' do
"<a href='/bar'>do something</a>"
end
get '/bar' do
do_something
redirect back
end
2011-02-18 10:06:00 +00:00
To pass arguments with a redirect, either add them to the query:
2011-02-19 10:28:06 +00:00
redirect to('/bar?sum=42')
2011-02-18 10:06:00 +00:00
Or use a session:
enable :session
get '/foo' do
session[:secret] = 'foo'
2011-02-19 10:28:06 +00:00
redirect to('/bar')
2011-02-18 10:06:00 +00:00
end
get '/bar' do
session[:secret]
end
2011-02-20 14:55:12 +00:00
=== Cache Control
Setting your headers correctly is the foundation for proper HTTP caching.
You can easily set the Cache-Control header with like this:
get '/' do
cache_control :public
"cache it!"
end
Pro tip: Set up caching in a before filter:
2011-02-20 14:55:12 +00:00
before do
cache_control :public, :must_revalidate, :max_age => 60
end
If you are using the +expires+ helper to set the corresponding header,
<tt>Cache-Control</tt> will be set automatically for you:
before do
expires 500, :public, :must_revalidate
end
To properly use caches, you should consider using +etag+ and +last_modified+.
It is recommended to call those helpers *before* doing heavy lifting, as they
will immediately flush a response if the client already has the current
version in its cache:
get '/article/:id' do
@article = Article.find params[:id]
last_modified @article.updated_at
etag @article.sha1
erb :article
end
It is also possible to use a
{weak ETag}[http://en.wikipedia.org/wiki/HTTP_ETag#Strong_and_weak_validation]:
etag @article.sha1, :weak
2011-02-21 17:18:35 +00:00
These helpers will not do any caching for you, but rather feed the necessary
information to your cache. If you are looking for a quick caching solutions, try
{rack-cache}[http://rtomayko.github.com/rack-cache/]:
require "rack/cache"
require "sinatra"
use Rack::Cache
get '/' do
cache_control :public, :max_age => 36000
sleep 5
"hello"
end
2011-02-19 10:28:58 +00:00
=== Sending Files
2011-02-19 10:45:25 +00:00
For sending files, you can use the <tt>send_file</tt> helper method:
2011-02-19 10:28:58 +00:00
get '/' do
send_file 'foo.png'
end
It also takes a couple of options:
2011-02-19 10:28:58 +00:00
send_file 'foo.png', :type => :jpg
The options are:
[filename]
file name, in response, defaults to the real file name.
[last_modified]
value for Last-Modified header, defaults to the file's mtime.
[type]
content type to use, guessed from the file extension if missing.
[disposition]
used for Content-Disposition, possible values: +nil+ (default),
2011-02-20 14:47:28 +00:00
<tt>:attachment</tt> and <tt>:inline</tt>
[length]
Content-Length header, defaults to file size.
2011-02-19 10:28:58 +00:00
If supported by the Rack handler, other means than streaming from the Ruby
process will be used. If you use this helper method, Sinatra will automatically
handle range requests.
2011-02-18 09:34:00 +00:00
=== Accessing the Request Object
2010-10-11 07:50:42 +00:00
2011-02-19 10:45:25 +00:00
The incoming request object can be accessed from request level (filter, routes,
error handlers) through the <tt>request</tt> method:
2010-10-11 07:50:42 +00:00
# app running on http://example.com/example
get '/foo' do
t = %w[text/css text/html application/javascript]
request.accept # ['text/html', '*/*']
request.accept? 'text/xml' # true
request.preferred_type(t) # 'text/html'
request.body # request body sent by the client (see below)
request.scheme # "http"
request.script_name # "/example"
request.path_info # "/foo"
request.port # 80
request.request_method # "GET"
request.query_string # ""
request.content_length # length of request.body
request.media_type # media type of request.body
request.host # "example.com"
request.get? # true (similar methods for other verbs)
request.form_data? # false
request["SOME_HEADER"] # value of SOME_HEADER header
request.referrer # the referrer of the client or '/'
request.user_agent # user agent (used by :agent condition)
request.cookies # hash of browser cookies
request.xhr? # is this an ajax request?
request.url # "http://example.com/example/foo"
request.path # "/example/foo"
request.ip # client IP address
request.secure? # false (would be true over ssl)
request.forwarded? # true (if running behind a reverse proxy)
request.env # raw env hash handed in by Rack
2010-10-11 07:50:42 +00:00
end
Some options, like <tt>script_name</tt> or <tt>path_info</tt>, can also be
2010-10-11 08:49:38 +00:00
written:
2010-10-11 07:50:42 +00:00
before { request.path_info = "/" }
get "/" do
"all requests end up here"
end
The <tt>request.body</tt> is an IO or StringIO object:
post "/api" do
request.body.rewind # in case someone already read it
data = JSON.parse request.body.read
"Hello #{data['name']}!"
end
2011-02-20 14:49:36 +00:00
=== Attachments
You can use the +attachment+ helper to tell the browser the response should be
stored on disk rather than displayed in the browser:
2011-02-20 14:49:36 +00:00
get '/' do
attachment
"store it!"
end
You can also pass it a file name:
get '/' do
attachment "info.txt"
"store it!"
end
2011-02-19 14:38:16 +00:00
=== Looking Up Template Files
The <tt>find_template</tt> helper is used to find template files for rendering:
find_template settings.views, 'foo', Tilt[:haml] do |file|
puts "could be #{file}"
end
This is not really useful. But it is useful that you can actually override this
method to hook in your own lookup mechanism. For instance, if you want to be
able to use more than one view directory:
set :views, ['views', 'templates']
helpers do
def find_template(views, name, engine, &block)
Array(views).each { |v| super(v, name, engine, &block) }
end
end
Another example would be using different directories for different engines:
2011-02-19 14:38:16 +00:00
set :views, :sass => 'views/sass', :haml => 'templates', :default => 'views'
helpers do
def find_template(views, name, engine, &block)
_, folder = views.detect { |k,v| engine == Tilt[k] }
folder ||= views[:default]
super(folder, name, engine, &block)
end
end
You can also easily wrap this up in an extension and share with others!
Note that <tt>find_template</tt> does not check if the file really exists but
rather calls the given block for all possible paths. This is not a performance
issue, since +render+ will use +break+ as soon as a file is found. Also,
template locations (and content) will be cached if you are not running in
development mode. You should keep that in mind if you write a really crazy
method.
== Configuration
2008-03-25 01:28:24 +00:00
Run once, at startup, in any environment:
2008-03-25 01:28:24 +00:00
configure do
# setting one option
set :option, 'value'
# setting multiple options
set :a => 1, :b => 2
# same as `set :option, true`
enable :option
# same as `set :option, false`
disable :option
# you can also have dynamic settings with blocks
set(:css_dir) { File.join(views, 'css') }
2008-03-25 01:28:24 +00:00
end
Run only when the environment (RACK_ENV environment variable) is set to
<tt>:production</tt>:
2008-03-25 01:28:24 +00:00
configure :production do
2008-09-09 08:17:13 +00:00
...
2008-03-25 01:28:24 +00:00
end
Run when the environment is set to either <tt>:production</tt> or
<tt>:test</tt>:
2008-03-25 01:28:24 +00:00
configure :production, :test do
2008-09-09 08:17:13 +00:00
...
2008-03-25 01:28:24 +00:00
end
You can access those options via <tt>settings</tt>:
configure do
set :foo, 'bar'
end
get '/' do
settings.foo? # => true
settings.foo # => 'bar'
...
end
2011-02-19 10:30:22 +00:00
=== Available Settings
[absolute_redirects] If disabled, Sinatra will allow relative redirects,
however, Sinatra will no longer conform with RFC 2616
(HTTP 1.1), which only allows absolute redirects.
Enable if your app is running behind a reverse proxy that
has not been set up properly. Note that the +url+ helper
will still produce absolute URLs, unless you pass in
+false+ as second parameter.
Disabled per default.
[add_charsets] mime types the <tt>content_type</tt> helper will
automatically add the charset info to.
You should add to it rather than overriding this option:
settings.add_charsets << "application/foobar"
[app_file] main application file, used to detect project root,
views and public folder and inline templates.
2011-02-19 10:30:22 +00:00
[bind] IP address to bind to (default: 0.0.0.0).
Only used for built-in server.
[default_encoding] encoding to assume if unknown
(defaults to <tt>"utf-8"</tt>).
2011-02-19 10:30:22 +00:00
[dump_errors] display errors in the log.
2011-02-19 10:30:22 +00:00
[environment] current environment, defaults to <tt>ENV['RACK_ENV']</tt>,
or <tt>"development"</tt> if not available.
2011-02-19 10:30:22 +00:00
[logging] use the logger.
2011-02-19 10:30:22 +00:00
[lock] Places a lock around every request, only running
processing on request per Ruby process concurrently.
Enabled if your app is not thread-safe.
Disabled per default.
[method_override] use <tt>_method</tt> magic to allow put/delete forms in
browsers that don't support it.
2011-02-19 10:30:22 +00:00
[port] Port to listen on. Only used for built-in server.
[prefixed_redirects] Whether or not to insert <tt>request.script_name</tt> into
redirects if no absolute path is given. That way
<tt>redirect '/foo'</tt> would behave like
<tt>redirect to('/foo')</tt>. Disabled per default.
[public] folder public files are served from
2011-02-19 10:30:22 +00:00
[reload_templates] whether or not to reload templates between requests.
2011-02-26 16:06:11 +00:00
Enabled in development mode.
2011-02-19 10:30:22 +00:00
[root] project root folder.
2011-02-19 10:30:22 +00:00
[raise_errors] raise exceptions (will stop application).
2011-02-19 10:30:22 +00:00
[run] if enabled, Sinatra will handle starting the web server,
2011-02-19 10:30:22 +00:00
do not enable if using rackup or other means.
[running] is the built-in server running now?
do not change this setting!
[server] server or list of servers to use for built-in server.
defaults to ['thin', 'mongrel', 'webrick'], order indicates
priority.
[sessions] enable cookie based sessions.
2011-02-19 10:30:22 +00:00
[show_exceptions] show a stack trace in the browser.
2011-02-19 10:30:22 +00:00
[static] Whether Sinatra should handle serving static files.
Disable when using a Server able to do this on its own.
Disabling will boost performance.
Enabled per default in classic style, disabled for
modular apps.
2011-02-19 10:30:22 +00:00
[views] views folder.
2011-02-19 10:30:22 +00:00
== Error Handling
2008-03-25 01:28:24 +00:00
Error handlers run within the same context as routes and before filters, which
2010-09-10 14:33:45 +00:00
means you get all the goodies it has to offer, like <tt>haml</tt>,
<tt>erb</tt>, <tt>halt</tt>, etc.
2008-03-25 01:28:24 +00:00
2008-09-09 08:17:13 +00:00
=== Not Found
2008-03-25 01:28:24 +00:00
When a <tt>Sinatra::NotFound</tt> exception is raised, or the response's status
code is 404, the <tt>not_found</tt> handler is invoked:
2008-03-25 01:28:24 +00:00
not_found do
2010-09-10 14:33:45 +00:00
'This is nowhere to be found.'
2008-03-25 01:28:24 +00:00
end
2008-09-09 08:17:13 +00:00
=== Error
2008-03-29 23:59:45 +00:00
The +error+ handler is invoked any time an exception is raised from a route
2009-12-19 21:03:37 +00:00
block or a filter. The exception object can be obtained from the
<tt>sinatra.error</tt> Rack variable:
2008-03-29 23:59:45 +00:00
2008-03-25 01:28:24 +00:00
error do
'Sorry there was a nasty error - ' + env['sinatra.error'].name
2008-03-29 23:59:45 +00:00
end
2008-09-09 08:17:13 +00:00
Custom errors:
2008-03-29 23:59:45 +00:00
error MyCustomError do
'So what happened was...' + env['sinatra.error'].message
2008-03-25 01:28:24 +00:00
end
2008-03-29 23:59:45 +00:00
2008-09-09 08:17:13 +00:00
Then, if this happens:
2008-03-29 23:59:45 +00:00
get '/' do
raise MyCustomError, 'something bad'
end
2008-09-09 08:17:13 +00:00
You get this:
2008-03-29 23:59:45 +00:00
So what happened was... something bad
Alternatively, you can install an error handler for a status code:
2009-12-23 02:10:14 +00:00
error 403 do
'Access forbidden'
end
get '/secret' do
403
end
Or a range:
error 400..510 do
'Boom'
end
Sinatra installs special <tt>not_found</tt> and <tt>error</tt> handlers when
running under the development environment.
2008-03-29 23:59:45 +00:00
== Rack Middleware
Sinatra rides on Rack[http://rack.rubyforge.org/], a minimal standard
interface for Ruby web frameworks. One of Rack's most interesting capabilities
for application developers is support for "middleware" -- components that sit
between the server and your application monitoring and/or manipulating the
HTTP request/response to provide various types of common functionality.
2008-09-09 08:17:13 +00:00
Sinatra makes building Rack middleware pipelines a cinch via a top-level
+use+ method:
require 'sinatra'
require 'my_custom_middleware'
use Rack::Lint
use MyCustomMiddleware
get '/hello' do
'Hello World'
end
The semantics of +use+ are identical to those defined for the
Rack::Builder[http://rack.rubyforge.org/doc/classes/Rack/Builder.html] DSL
(most frequently used from rackup files). For example, the +use+ method
accepts multiple/variable args as well as blocks:
use Rack::Auth::Basic do |username, password|
username == 'admin' && password == 'secret'
end
Rack is distributed with a variety of standard middleware for logging,
debugging, URL routing, authentication, and session handling. Sinatra uses
many of these components automatically based on configuration so you
typically don't have to +use+ them explicitly.
2011-05-12 12:33:53 +00:00
You can find useful middleware in
{rack}[https://github.com/rack/rack/tree/master/lib/rack],
{rack-contrib}[https://github.com/rack/rack-contrib#readme],
2011-05-12 12:37:12 +00:00
with {CodeRack}[http://coderack.org/] or in the
2011-05-12 12:33:53 +00:00
{Rack wiki}[https://github.com/rack/rack/wiki/List-of-Middleware].
== Testing
2008-03-25 01:28:24 +00:00
Sinatra tests can be written using any Rack-based testing library
2011-05-02 20:42:37 +00:00
or framework. {Rack::Test}[http://rdoc.info/github/brynary/rack-test/master/frames] is
recommended:
2008-09-25 01:48:33 +00:00
require 'my_sinatra_app'
require 'test/unit'
require 'rack/test'
2008-03-25 01:28:24 +00:00
class MyAppTest < Test::Unit::TestCase
include Rack::Test::Methods
def app
Sinatra::Application
end
def test_my_default
get '/'
assert_equal 'Hello World!', last_response.body
2008-03-25 01:28:24 +00:00
end
2008-09-27 10:29:27 +00:00
def test_with_params
get '/meet', :name => 'Frank'
assert_equal 'Hello Frank!', last_response.body
2008-09-27 10:29:27 +00:00
end
def test_with_rack_env
get '/', {}, 'HTTP_USER_AGENT' => 'Songbird'
assert_equal "You're using Songbird!", last_response.body
2009-01-09 06:37:26 +00:00
end
end
== Sinatra::Base - Middleware, Libraries, and Modular Apps
Defining your app at the top-level works well for micro-apps but has
2010-09-24 17:33:51 +00:00
considerable drawbacks when building reusable components such as Rack
middleware, Rails metal, simple libraries with a server component, or
even Sinatra extensions. The top-level DSL pollutes the Object namespace
and assumes a micro-app style configuration (e.g., a single application
2011-05-02 09:06:08 +00:00
file, <tt>./public</tt> and <tt>./views</tt> directories, logging, exception
detail page, etc.). That's where <tt>Sinatra::Base</tt> comes into play:
require 'sinatra/base'
class MyApp < Sinatra::Base
set :sessions, true
set :foo, 'bar'
get '/' do
'Hello world!'
end
end
2011-05-02 09:06:08 +00:00
The methods available to <tt>Sinatra::Base</tt> subclasses are exactly as those
available via the top-level DSL. Most top-level apps can be converted to
2011-05-02 09:06:08 +00:00
<tt>Sinatra::Base</tt> components with two modifications:
2011-02-21 13:04:48 +00:00
* Your file should require <tt>sinatra/base</tt> instead of +sinatra+;
otherwise, all of Sinatra's DSL methods are imported into the main
namespace.
* Put your app's routes, error handlers, filters, and options in a subclass
2011-05-02 09:06:08 +00:00
of <tt>Sinatra::Base</tt>.
2010-10-12 15:31:59 +00:00
<tt>Sinatra::Base</tt> is a blank slate. Most options are disabled by default,
including the built-in server. See {Options and Configuration}[http://sinatra.github.com/configuration.html]
for details on available options and their behavior.
=== Modular vs. Classic Style
Contrary to common belief, there is nothing wrong with classic style. If it
suits your application, you do not have to switch to a modular application.
There are only two downsides compared with modular style:
* You may only have one Sinatra application per Ruby process. If you plan to
use more, switch to modular style.
* Classic style pollutes Object with delegator methods. If you plan to ship
your application in a library/gem, switch to modular style.
There is no reason you cannot mix modular and classic style.
2011-04-14 06:51:59 +00:00
If switching from one style to the other, you should be aware of slightly
different default settings:
Setting Classic Modular
app_file file loading sinatra file subclassing Sinatra::Base
run $0 == app_file false
logging true false
method_override true false
inline_templates true false
static true false
=== Serving a Modular Application
There are two common options for starting a modular app, actively starting with
<tt>run!</tt>:
# my_app.rb
require 'sinatra/base'
class MyApp < Sinatra::Base
# ... app code here ...
# start the server if ruby file executed directly
run! if app_file == $0
end
Start with:
ruby my_app.rb
Or with a <tt>config.ru</tt>, which allows using any Rack handler:
# config.ru
require 'my_app'
run MyApp
Run:
rackup -p 4567
=== Using a Classic Style Application with a config.ru
Write your app file:
# app.rb
require 'sinatra'
get '/' do
'Hello world!'
end
And a corresponding <tt>config.ru</tt>:
require 'app'
run Sinatra::Application
=== When to use a config.ru?
Good signs you probably want to use a <tt>config.ru</tt>:
* You want to deploy with a different Rack handler (Passenger, Unicorn,
Heroku, ...).
* You want to use more than one subclass of <tt>Sinatra::Base</tt>.
* You want to use Sinatra only for middleware, but not as endpoint.
<b>There is no need to switch to a <tt>config.ru</tt> only because you
switched to modular style, and you don't have to use modular style for running
with a <tt>config.ru</tt>.</b>
2010-09-24 17:33:51 +00:00
=== Using Sinatra as Middleware
Not only is Sinatra able to use other Rack middleware, any Sinatra application
can in turn be added in front of any Rack endpoint as middleware itself. This
endpoint could be another Sinatra application, or any other Rack-based
application (Rails/Ramaze/Camping/...):
require 'sinatra/base'
class LoginScreen < Sinatra::Base
enable :sessions
get('/login') { haml :login }
post('/login') do
if params[:name] == 'admin' && params[:password] == 'admin'
session['user_name'] = params[:name]
else
redirect '/login'
end
end
end
class MyApp < Sinatra::Base
# middleware will run before filters
use LoginScreen
before do
unless session['user_name']
halt "Access denied, please <a href='/login'>login</a>."
end
end
get('/') { "Hello #{session['user_name']}." }
end
2011-03-28 18:37:52 +00:00
=== Dynamic Application Creation
Sometimes you want to create new applications at runtime without having to
2011-04-30 12:20:11 +00:00
assign them to a constant, you can do this with <tt>Sinatra.new</tt>:
2011-03-28 18:37:52 +00:00
require 'sinatra/base'
my_app = Sinatra.new { get('/') { "hi" } }
my_app.run!
It takes the application to inherit from as optional argument:
require 'sinatra/base'
controller = Sinatra.new do
enable :logging
helpers MyHelpers
end
map('/a') do
run Sinatra.new(controller) { get('/') { 'a' } }
end
map('/b') do
run Sinatra.new(controller) { get('/') { 'b' } }
end
This is especially useful for testing Sinatra extensions or using Sinatra in
your own library.
This also makes using Sinatra as middleware extremely easy:
require 'sinatra/base'
use Sinatra do
get('/') { ... }
end
run RailsProject::Application
2010-09-23 23:28:03 +00:00
== Scopes and Binding
2010-09-24 08:15:53 +00:00
The scope you are currently in determines what methods and variables are
available.
2010-09-23 23:28:03 +00:00
=== Application/Class Scope
2011-05-02 09:06:08 +00:00
Every Sinatra application corresponds to a subclass of <tt>Sinatra::Base</tt>. If you
are using the top-level DSL (<tt>require 'sinatra'</tt>), then this class is
2011-05-02 09:06:08 +00:00
<tt>Sinatra::Application</tt>, otherwise it is the subclass you created explicitly. At
2011-02-19 10:45:25 +00:00
class level you have methods like +get+ or +before+, but you cannot access the
+request+ object or the +session+, as there only is a single application class
2010-09-23 23:28:03 +00:00
for all requests.
2011-02-19 10:45:25 +00:00
Options created via +set+ are methods at class level:
2010-09-23 23:28:03 +00:00
class MyApp < Sinatra::Base
2010-09-23 23:28:03 +00:00
# Hey, I'm in the application scope!
set :foo, 42
foo # => 42
get '/foo' do
# Hey, I'm no longer in the application scope!
end
end
2010-09-24 08:15:53 +00:00
You have the application scope binding inside:
2010-09-23 23:28:03 +00:00
* Your application class body
* Methods defined by extensions
2011-02-19 10:45:25 +00:00
* The block passed to +helpers+
* Procs/blocks used as value for +set+
2011-03-28 18:37:52 +00:00
* The block passed to <tt>Sinatra.new</tt>
2010-09-23 23:28:03 +00:00
You can reach the scope object (the class) like this:
2010-09-24 08:15:53 +00:00
* Via the object passed to configure blocks (<tt>configure { |c| ... }</tt>)
2011-02-19 10:45:25 +00:00
* +settings+ from within request scope
2010-09-23 23:28:03 +00:00
=== Request/Instance Scope
2010-09-24 08:15:53 +00:00
For every incoming request, a new instance of your application class is
created and all handler blocks run in that scope. From within this scope you
2011-02-19 10:45:25 +00:00
can access the +request+ and +session+ object or call rendering methods like
+erb+ or +haml+. You can access the application scope from within the request
scope via the +settings+ helper:
2010-09-23 23:28:03 +00:00
class MyApp < Sinatra::Base
2010-09-23 23:28:03 +00:00
# Hey, I'm in the application scope!
get '/define_route/:name' do
# Request scope for '/define_route/:name'
@value = 42
settings.get("/#{params[:name]}") do
# Request scope for "/#{params[:name]}"
@value # => nil (not the same request)
end
"Route defined!"
end
end
2010-09-24 08:15:53 +00:00
You have the request scope binding inside:
2010-09-23 23:28:03 +00:00
* get/head/post/put/delete/options blocks
2010-09-23 23:28:03 +00:00
* before/after filters
* helper methods
* templates/views
=== Delegation Scope
The delegation scope just forwards methods to the class scope. However, it
does not behave 100% like the class scope, as you do not have the class
binding. Only methods explicitly marked for delegation are available and you
2010-09-24 08:15:53 +00:00
do not share variables/state with the class scope (read: you have a different
2011-02-19 10:45:25 +00:00
+self+). You can explicitly add method delegations by calling
2010-09-24 08:15:53 +00:00
<tt>Sinatra::Delegator.delegate :method_name</tt>.
2010-09-23 23:28:03 +00:00
2010-09-24 08:15:53 +00:00
You have the delegate scope binding inside:
2010-09-23 23:28:03 +00:00
* The top level binding, if you did <tt>require "sinatra"</tt>
2011-02-19 10:45:25 +00:00
* An object extended with the <tt>Sinatra::Delegator</tt> mixin
2010-09-23 23:28:03 +00:00
Have a look at the code for yourself: here's the
{Sinatra::Delegator mixin}[http://github.com/sinatra/sinatra/blob/ceac46f0bc129a6e994a06100aa854f606fe5992/lib/sinatra/base.rb#L1128]
2010-09-24 17:33:51 +00:00
being {included into the main namespace}[http://github.com/sinatra/sinatra/blob/ceac46f0bc129a6e994a06100aa854f606fe5992/lib/sinatra/main.rb#L28].
== Command Line
2008-03-25 01:28:24 +00:00
2008-09-09 08:17:13 +00:00
Sinatra applications can be run directly:
2010-03-01 23:59:03 +00:00
ruby myapp.rb [-h] [-x] [-e ENVIRONMENT] [-p PORT] [-o HOST] [-s HANDLER]
2008-03-25 01:28:24 +00:00
Options are:
-h # help
-p # set the port (default is 4567)
2010-03-01 23:59:03 +00:00
-o # set the host (default is 0.0.0.0)
2008-03-25 01:28:24 +00:00
-e # set the environment (default is development)
-s # specify rack server/handler (default is thin)
2008-04-14 20:31:52 +00:00
-x # turn on the mutex lock (default is off)
2008-03-25 01:28:24 +00:00
2011-02-26 16:06:11 +00:00
== Requirement
2011-02-21 11:20:21 +00:00
The following Ruby versions are officially supported:
[ Ruby 1.8.7 ]
1.8.7 is fully supported, however, if nothing is keeping you from it, we
recommend upgrading to 1.9.2 or switching to JRuby or Rubinius.
[ Ruby 1.9.2 ]
1.9.2 is supported and recommended. Note that Radius and Markaby are
currently not 1.9 compatible. Do not use 1.9.2p0, it is known to cause
2011-05-02 11:28:34 +00:00
segmentation faults when running Sinatra.
2011-02-21 11:20:21 +00:00
[ Rubinius ]
Rubinius is officially supported (Rubinius >= 1.2.3), everything, including
all template languages, works.
2011-02-21 11:20:21 +00:00
[ JRuby ]
JRuby is officially supported (JRuby >= 1.6.1). No issues with third party
2011-02-21 11:20:21 +00:00
template libraries are known, however, if you choose to use JRuby, please
look into JRuby rack handlers, as the Thin web server is not fully supported
on JRuby. JRuby's support for C extensions is still experimental, which only
affects RDiscount and Redcarpet at the moment.
2011-02-21 11:20:21 +00:00
2011-05-19 05:54:00 +00:00
<b>Ruby 1.8.6 is no longer supported.</b> If you want to run with 1.8.6,
downgrade to Sinatra 1.2, which will receive bug fixes until Sinatra 1.4.0 is
released.
2011-02-26 16:06:11 +00:00
2011-02-21 11:20:21 +00:00
We also keep an eye on upcoming Ruby versions.
The following Ruby implementations are not officially supported but still are
known to run Sinatra:
* Older versions of JRuby and Rubinius
* MacRuby, Maglev, IronRuby
2011-02-21 11:20:21 +00:00
* Ruby 1.9.0 and 1.9.1
Not being officially supported means if things only break there and not on a
supported platform, we assume it's not our issue but theirs.
We also run our CI against ruby-head (the upcoming 1.9.3), but we can't
guarantee anything, since it is constantly moving. Expect 1.9.3p0 to be
supported.
2011-02-21 11:20:21 +00:00
Sinatra should work on any operating system supported by the chosen Ruby
implementation.
== The Bleeding Edge
2011-05-02 11:28:34 +00:00
If you would like to use Sinatra's latest bleeding code, feel free to run your
application against the master branch, it should be rather stable.
We also push out prerelease gems from time to time, so you can do a
gem install sinatra --pre
To get some of the latest features.
=== With Bundler
2011-05-02 11:28:34 +00:00
If you want to run your application with the latest Sinatra, using
{Bundler}[http://gembundler.com/] is the recommended way.
First, install bundler, if you haven't:
gem install bundler
Then, in your project directory, create a +Gemfile+:
source :rubygems
gem 'sinatra', :git => "git://github.com/sinatra/sinatra.git"
# other dependencies
gem 'haml' # for instance, if you use haml
gem 'activerecord', '~> 3.0' # maybe you also need ActiveRecord 3.x
Note that you will have to list all your applications dependencies in there.
Sinatra's direct dependencies (Rack and Tilt) will, however, be automatically
fetched and added by Bundler.
Now you can run your app like this:
bundle exec ruby myapp.rb
=== Roll Your Own
2011-05-02 11:28:34 +00:00
Create a local clone and run your app with the <tt>sinatra/lib</tt> directory
2011-02-21 13:04:48 +00:00
on the <tt>$LOAD_PATH</tt>:
cd myapp
git clone git://github.com/sinatra/sinatra.git
ruby -Isinatra/lib myapp.rb
To update the Sinatra sources in the future:
2011-01-11 10:21:29 +00:00
cd myapp/sinatra
git pull
=== Install Globally
You can build the gem on your own:
git clone git://github.com/sinatra/sinatra.git
cd sinatra
rake sinatra.gemspec
rake install
If you install gems as root, the last step should be
sudo rake install
2011-03-06 10:51:44 +00:00
== Versioning
2011-03-06 15:23:49 +00:00
Sinatra follows {Semantic Versioning}[http://semver.org/], both SemVer and
2011-03-06 10:51:44 +00:00
SemVerTag.
== Further Reading
* {Project Website}[http://www.sinatrarb.com/] - Additional documentation,
news, and links to other resources.
* {Contributing}[http://www.sinatrarb.com/contributing] - Find a bug? Need
help? Have a patch?
2010-07-01 05:32:11 +00:00
* {Issue tracker}[http://github.com/sinatra/sinatra/issues]
* {Twitter}[http://twitter.com/sinatra]
* {Mailing List}[http://groups.google.com/group/sinatrarb/topics]
* {IRC: #sinatra}[irc://chat.freenode.net/#sinatra] on http://freenode.net
* {Sinatra Book}[http://sinatra-book.gittr.com] Cookbook Tutorial
* {Sinatra Book Contrib}[http://sinatra-book-contrib.com/] Community contributed recipes
2011-04-11 10:52:22 +00:00
* API documentation for the {latest release}[http://rubydoc.info/gems/sinatra]
or the {current HEAD}[http://rubydoc.info/github/sinatra/sinatra] on
http://rubydoc.info/