2008-03-24 20:20:58 -04:00
= Sinatra
2009-04-19 12:34:41 -04:00
Sinatra is a DSL for quickly creating web applications in Ruby with minimal
2009-01-11 10:59:34 -05:00
effort:
2008-03-24 20:20:58 -04:00
# myapp.rb
require 'sinatra'
2010-09-07 12:18:35 -04:00
2008-03-24 20:20:58 -04:00
get '/' do
'Hello world!'
end
2009-01-24 02:19:56 -05:00
Install the gem and run with:
2008-03-24 20:20:58 -04:00
2010-09-07 04:23:28 -04:00
gem install sinatra
ruby -rubygems myapp.rb
2009-01-24 02:19:56 -05:00
View at: http://localhost:4567
== Routes
In Sinatra, a route is an HTTP method paired with an URL matching pattern.
Each route is associated with a block:
2008-03-24 20:20:58 -04:00
get '/' do
2009-01-24 02:19:56 -05:00
.. show something ..
2008-03-24 20:20:58 -04:00
end
2008-08-31 03:53:21 -04:00
2008-03-24 20:20:58 -04:00
post '/' do
.. create something ..
end
2008-08-31 03:53:21 -04:00
2008-03-24 20:20:58 -04:00
put '/' do
.. update something ..
end
2008-08-31 03:53:21 -04:00
2008-03-24 20:20:58 -04:00
delete '/' do
.. annihilate something ..
end
2008-08-31 03:53:21 -04:00
2009-01-24 02:19:56 -05:00
Routes are matched in the order they are defined. The first route that
2008-08-31 03:53:21 -04:00
matches the request is invoked.
2008-03-24 21:28:24 -04:00
2009-01-11 10:59:34 -05:00
Route patterns may include named parameters, accessible via the
<tt>params</tt> hash:
2008-03-24 21:28:24 -04:00
2009-01-24 02:19:56 -05:00
get '/hello/:name' do
2009-05-20 13:56:58 -04:00
# matches "GET /hello/foo" and "GET /hello/bar"
2008-12-13 16:06:02 -05:00
# params[:name] is 'foo' or 'bar'
2009-01-11 10:59:34 -05:00
"Hello #{params[:name]}!"
2008-03-24 21:28:24 -04:00
end
2008-08-31 03:53:21 -04:00
2009-01-28 15:27:32 -05:00
You can also access named parameters via block parameters:
get '/hello/:name' do |n|
"Hello #{n}!"
end
2009-01-11 10:59:34 -05:00
Route patterns may also include splat (or wildcard) parameters, accessible
via the <tt>params[:splat]</tt> array.
2008-03-24 21:28:24 -04:00
2008-04-24 22:24:31 -04:00
get '/say/*/to/*' do
# matches /say/hello/to/world
2008-12-13 16:06:02 -05:00
params[:splat] # => ["hello", "world"]
2008-04-24 22:24:31 -04:00
end
get '/download/*.*' do
# matches /download/path/to/file.xml
2008-12-13 16:06:02 -05:00
params[:splat] # => ["path/to/file", "xml"]
2008-03-24 21:28:24 -04:00
end
2008-08-31 03:53:21 -04:00
2009-01-11 10:59:34 -05:00
Route matching with Regular Expressions:
get %r{/hello/([\w]+)} do
"Hello, #{params[:captures].first}!"
end
2009-01-28 15:27:32 -05:00
Or with a block parameter:
get %r{/hello/([\w]+)} do |c|
"Hello, #{c}!"
end
2010-09-02 08:13:36 -04:00
=== Conditions
2009-01-11 10:59:34 -05:00
Routes may include a variety of matching conditions, such as the user agent:
2008-08-31 03:53:21 -04:00
2008-03-24 21:28:24 -04:00
get '/foo', :agent => /Songbird (\d\.\d)[\d\/]*?/ do
"You're using Songbird version #{params[:agent][0]}"
end
get '/foo' do
2008-12-13 16:06:02 -05:00
# Matches non-songbird browsers
2008-03-24 21:28:24 -04:00
end
2008-03-24 20:20:58 -04:00
2010-09-03 01:57:49 -04:00
Other available conditions are +host_name+ and +provides+:
2010-09-02 08:13:36 -04:00
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
2010-09-02 15:37:07 -04: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 10:33:45 -04:00
You can return any object that would either be a valid Rack response, Rack
body object or HTTP status code:
2010-09-02 15:37:07 -04:00
2010-09-03 02:00:27 -04:00
* 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>
2010-09-03 02:01:23 -04:00
* An object that responds to <tt>#each</tt> and passes nothing but strings to the given block
2010-09-02 15:37:07 -04:00
* 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 08:53:43 -04:00
get('/') { Stream.new }
2010-09-02 15:37:07 -04:00
2008-12-13 16:06:02 -05:00
== Static Files
2008-03-26 22:02:28 -04:00
2009-01-11 10:59:34 -05:00
Static files are served from the <tt>./public</tt> directory. You can specify
a different location by setting the <tt>:public</tt> option:
2008-12-13 16:06:02 -05:00
set :public, File.dirname(__FILE__) + '/static'
2008-03-24 20:20:58 -04:00
2009-01-24 02:19:56 -05:00
Note that the public directory name is not included in the URL. A file
2009-01-24 16:31:51 -05:00
<tt>./public/css/style.css</tt> is made available as
<tt>http://example.com/css/style.css</tt>.
2009-01-24 02:19:56 -05:00
2009-01-11 10:59:34 -05:00
== Views / Templates
2008-03-24 20:20:58 -04:00
2009-01-24 02:19:56 -05:00
Templates are assumed to be located directly under the <tt>./views</tt>
2009-01-11 10:59:34 -05:00
directory. To use a different views directory:
2008-12-13 16:06:02 -05:00
set :views, File.dirname(__FILE__) + '/templates'
2009-03-25 12:45:48 -04: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>). Rendering methods will render
any strings passed to them directly.
2008-08-31 03:53:21 -04:00
=== Haml Templates
2008-03-24 20:20:58 -04:00
2009-01-11 10:59:34 -05:00
The haml gem/library is required to render HAML templates:
2009-04-24 20:10:46 -04:00
## You'll need to require haml in your app
require 'haml'
2008-03-24 20:20:58 -04:00
get '/' do
haml :index
end
2008-08-31 03:53:21 -04:00
Renders <tt>./views/index.haml</tt>.
2010-05-26 14:15:45 -04:00
{Haml's options}[http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html#options]
2009-03-14 22:10:55 -04:00
can be set globally through Sinatra's configurations,
see {Options and Configurations}[http://www.sinatrarb.com/configuration.html],
and overridden on an individual basis.
2010-09-07 12:18:35 -04:00
set :haml, :format => :html5 # default Haml format is :xhtml
2009-03-14 22:10:55 -04:00
get '/' do
2010-09-07 12:18:35 -04:00
haml :index, :format => :html4 # overridden
2009-03-14 22:10:55 -04:00
end
2009-01-11 10:59:34 -05:00
=== Erb Templates
2008-08-31 03:53:21 -04:00
2009-04-24 20:10:46 -04:00
## You'll need to require erb in your app
require 'erb'
2008-08-31 03:53:21 -04:00
get '/' do
erb :index
end
Renders <tt>./views/index.erb</tt>
2009-12-22 21:11:09 -05:00
=== Erubis
2010-06-26 21:46:13 -04:00
The erubis gem/library is required to render erubis templates:
2009-12-22 21:11:09 -05:00
## You'll need to require erubis in your app
require 'erubis'
get '/' do
erubis :index
end
Renders <tt>./views/index.erubis</tt>
2009-01-11 10:59:34 -05:00
=== Builder Templates
2008-08-31 03:53:21 -04:00
2009-01-11 10:59:34 -05:00
The builder gem/library is required to render builder templates:
2008-03-24 20:20:58 -04:00
2009-04-24 20:10:46 -04:00
## You'll need to require builder in your app
require 'builder'
2009-01-11 10:59:34 -05:00
get '/' do
content_type 'application/xml', :charset => 'utf-8'
builder :index
end
Renders <tt>./views/index.builder</tt>.
=== Sass Templates
The sass gem/library is required to render Sass templates:
2008-08-31 03:53:21 -04:00
2009-04-24 20:10:46 -04:00
## You'll need to require haml or sass in your app
require 'sass'
2008-04-08 16:51:28 -04:00
get '/stylesheet.css' do
2008-04-13 05:32:23 -04:00
content_type 'text/css', :charset => 'utf-8'
2008-04-08 16:51:28 -04:00
sass :stylesheet
end
2008-08-31 03:53:21 -04:00
Renders <tt>./views/stylesheet.sass</tt>.
2010-05-26 14:15:45 -04:00
{Sass' options}[http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#options]
2009-03-14 22:10:55 -04:00
can be set globally through Sinatra's configurations,
see {Options and Configurations}[http://www.sinatrarb.com/configuration.html],
and overridden on an individual basis.
2010-09-07 12:18:35 -04:00
set :sass, :style => :compact # default Sass style is :nested
2009-03-14 22:10:55 -04:00
get '/stylesheet.css' do
content_type 'text/css', :charset => 'utf-8'
2009-12-19 03:06:28 -05:00
sass :stylesheet, :style => :expanded # overridden
2009-03-14 22:10:55 -04:00
end
2010-08-29 20:56:44 -04:00
=== Scss Templates
The sass gem/library is required to render Scss templates:
## You'll need to require haml or sass in your app
require 'sass'
get '/stylesheet.css' do
content_type 'text/css', :charset => 'utf-8'
scss :stylesheet
end
Renders <tt>./views/stylesheet.scss</tt>.
{Scss' options}[http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#options]
can be set globally through Sinatra's configurations,
see {Options and Configurations}[http://www.sinatrarb.com/configuration.html],
and overridden on an individual basis.
2010-09-07 12:18:35 -04:00
set :scss, :style => :compact # default Scss style is :nested
2010-08-29 20:56:44 -04:00
get '/stylesheet.css' do
content_type 'text/css', :charset => 'utf-8'
scss :stylesheet, :style => :expanded # overridden
end
2010-03-01 07:13:10 -05:00
=== Less Templates
The less gem/library is required to render Less templates:
## You'll need to require less in your app
require 'less'
get '/stylesheet.css' do
content_type 'text/css', :charset => 'utf-8'
less :stylesheet
end
Renders <tt>./views/stylesheet.less</tt>.
2010-09-11 07:53:49 -04:00
=== Liquid Templates
The liquid gem/library is required to render Liquid templates:
## You'll need to require liquid in your app
require 'liquid'
get '/' do
liquid :index
end
Renders <tt>./views/index.liquid</tt>.
Since you cannot call Ruby methods (except for +yield+) from a Liquid
template, you almost always want to pass locals to it:
liquid :index, :locals => { :key => 'value' }
2010-09-11 08:34:41 -04:00
=== Markdown Templates
The rdiscount gem/library is required to render Markdown templates:
## You'll need to require rdiscount in your app
require "rdiscount"
get '/' do
markdown :index
end
Renders <tt>./views/index.markdown</tt> (+md+ and +mkd+ are also valid file
extensions).
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) }
Note that you may also call the markdown method from within other templates:
%h1 Hello From Haml!
%p= markdown(:greetings)
2010-09-11 08:52:55 -04:00
=== Textile Templates
The RedCloth gem/library is required to render Textile templates:
## You'll need to require rdiscount in your app
require "redcloth"
get '/' do
textile :index
end
Renders <tt>./views/index.textile</tt>.
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) }
Note that you may also call the textile method from within other templates:
%h1 Hello From Haml!
%p= textile(:greetings)
2010-09-12 07:59:00 -04:00
=== RDoc Templates
The RDoc gem/library is required to render RDoc templates:
## You'll need to require rdiscount in your app
require "rdoc"
get '/' do
rdoc :index
end
Renders <tt>./views/index.rdoc</tt>.
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) }
Note that you may also call the rdoc method from within other templates:
%h1 Hello From Haml!
%p= rdoc(:greetings)
2010-09-12 09:14:45 -04:00
=== Radius Templates
The radius gem/library is required to render Radius templates:
## You'll need to require radius in your app
require 'radius'
get '/' do
radius :index
end
Renders <tt>./views/index.radius</tt>.
Since you cannot call Ruby methods (except for +yield+) from a Radius
template, you almost always want to pass locals to it:
radius :index, :locals => { :key => 'value' }
2008-08-31 03:53:21 -04:00
=== Inline Templates
2008-03-24 20:20:58 -04:00
get '/' do
haml '%div.title Hello World'
end
2008-08-31 03:53:21 -04:00
Renders the inlined template string.
2008-03-24 20:20:58 -04:00
2009-01-24 02:19:56 -05:00
=== Accessing Variables in Templates
2008-03-24 20:20:58 -04:00
2009-03-01 21:17:47 -05:00
Templates are evaluated within the same context as route handlers. Instance
variables set in route handlers are direcly accessible by templates:
2008-03-24 20:20:58 -04:00
get '/:id' do
@foo = Foo.find(params[:id])
2008-11-30 12:21:32 -05:00
haml '%h1= @foo.name'
2008-03-24 20:20:58 -04:00
end
2008-08-31 03:53:21 -04:00
Or, specify an explicit Hash of local variables:
2008-03-24 20:20:58 -04:00
get '/:id' do
2008-08-31 03:53:21 -04:00
foo = Foo.find(params[:id])
2008-11-30 12:21:32 -05:00
haml '%h1= foo.name', :locals => { :foo => foo }
2008-03-24 20:20:58 -04:00
end
2008-08-31 03:53:21 -04:00
This is typically used when rendering templates as partials from within
other templates.
2009-12-18 20:07:01 -05:00
=== Inline Templates
2008-03-29 19:59:45 -04:00
2008-08-31 03:53:21 -04:00
Templates may be defined at the end of the source file:
2008-03-29 19:59:45 -04:00
2009-01-16 20:01:41 -05:00
require 'sinatra'
2008-03-29 19:59:45 -04:00
get '/' do
haml :index
end
2008-08-31 03:53:21 -04:00
2008-03-29 19:59:45 -04:00
__END__
2008-08-31 03:53:21 -04:00
2008-05-07 17:18:43 -04:00
@@ layout
2009-01-11 10:59:34 -05:00
%html
= yield
2008-08-31 03:53:21 -04:00
2008-05-07 17:18:43 -04:00
@@ index
2008-03-29 19:59:45 -04:00
%div.title Hello world!!!!!
2009-12-18 20:07:01 -05:00
NOTE: Inline templates defined in the source file that requires sinatra
2010-09-03 01:57:49 -04:00
are automatically loaded. Call +enable :inline_templates+ explicitly if you
2009-12-18 20:07:01 -05:00
have inline templates in other source files.
2009-01-16 20:01:41 -05:00
2009-01-24 02:19:56 -05:00
=== Named Templates
2009-03-01 21:17:47 -05:00
Templates may also be defined using the top-level <tt>template</tt> method:
2008-03-29 19:59:45 -04:00
template :layout do
2009-01-11 10:59:34 -05:00
"%html\n =yield\n"
2008-03-29 19:59:45 -04:00
end
template :index do
'%div.title Hello World!'
end
get '/' do
haml :index
end
2009-01-11 10:59:34 -05:00
If a template named "layout" exists, it will be used each time a template
is rendered. You can disable layouts by passing <tt>:layout => false</tt>.
2009-01-09 07:26:10 -05:00
get '/' do
haml :index, :layout => !request.xhr?
end
2008-08-31 03:53:21 -04:00
== Helpers
2008-03-24 20:20:58 -04:00
2009-01-11 10:59:34 -05:00
Use the top-level <tt>helpers</tt> method to define helper methods for use in
2009-03-01 21:17:47 -05:00
route handlers and templates:
2008-03-24 20:20:58 -04:00
helpers do
def bar(name)
"#{name}bar"
end
end
2008-08-31 03:53:21 -04:00
2008-03-24 21:28:24 -04:00
get '/:name' do
bar(params[:name])
end
2008-03-24 20:20:58 -04:00
2008-08-31 03:53:21 -04:00
== Filters
2008-03-24 20:20:58 -04:00
2010-09-10 10:33:45 -04: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-24 21:28:24 -04:00
2008-03-24 20:20:58 -04:00
before do
2008-12-13 16:06:02 -05:00
@note = 'Hi!'
request.path_info = '/foo/bar/baz'
end
get '/foo/*' do
@note #=> 'Hi!'
params[:splat] #=> 'bar/baz'
2008-03-24 20:20:58 -04:00
end
2008-08-31 03:53:21 -04:00
2010-09-10 10:33:45 -04:00
After filter 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:
2008-12-21 21:36:14 -05:00
after do
puts response.status
end
2010-09-10 10:33:45 -04:00
Filters optionally taking a pattern, causing them to be evaluated only if the
request path matches that pattern:
2010-04-27 17:11:43 -04:00
before '/protected/*' do
authenticate!
end
after '/create/:slug' do |slug|
session[:last_slug] = slug
end
2009-01-11 10:59:34 -05:00
== Halting
2008-12-13 16:06:02 -05:00
2008-12-21 21:36:14 -05:00
To immediately stop a request within a filter or route use:
2008-03-24 20:20:58 -04:00
2009-01-11 10:59:34 -05:00
halt
2008-08-31 03:53:21 -04:00
2010-09-10 10:33:45 -04:00
You can also specify the status when halting:
2009-12-19 03:16:31 -05:00
halt 410
2010-09-10 10:33:45 -04:00
Or the body:
2008-03-24 20:20:58 -04:00
2009-01-11 10:59:34 -05:00
halt 'this will be the body'
2008-03-24 20:20:58 -04:00
2010-09-10 10:33:45 -04:00
Or both:
2008-08-31 03:53:21 -04:00
2009-01-11 10:59:34 -05:00
halt 401, 'go away!'
2008-03-24 20:20:58 -04:00
2010-09-10 10:33:45 -04:00
With headers:
2009-12-19 03:16:31 -05:00
halt 402, {'Content-Type' => 'text/plain'}, 'revenge'
2009-01-11 10:59:34 -05:00
== Passing
2008-08-31 03:53:21 -04:00
2009-03-01 21:17:47 -05:00
A route can punt processing to the next matching route using <tt>pass</tt>:
2008-03-24 20:20:58 -04:00
2009-01-11 10:59:34 -05:00
get '/guess/:who' do
pass unless params[:who] == 'Frank'
2009-12-22 21:13:35 -05:00
'You got me!'
2009-01-11 10:59:34 -05:00
end
get '/guess/*' do
2009-12-22 21:13:35 -05:00
'You missed!'
2009-01-11 10:59:34 -05:00
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-24 20:20:58 -04:00
2009-03-24 04:24:01 -04:00
== Configuration
2008-03-24 21:28:24 -04:00
2009-01-11 10:59:34 -05:00
Run once, at startup, in any environment:
2008-03-24 21:28:24 -04:00
configure do
2008-09-09 04:17:13 -04:00
...
2008-03-24 21:28:24 -04:00
end
2008-08-31 03:53:21 -04:00
2009-01-11 10:59:34 -05:00
Run only when the environment (RACK_ENV environment variable) is set to
2009-03-24 04:24:01 -04:00
<tt>:production</tt>:
2008-03-24 21:28:24 -04:00
configure :production do
2008-09-09 04:17:13 -04:00
...
2008-03-24 21:28:24 -04:00
end
2008-08-31 03:53:21 -04:00
2009-03-24 04:24:01 -04:00
Run when the environment is set to either <tt>:production</tt> or
<tt>:test</tt>:
2008-03-24 21:28:24 -04:00
configure :production, :test do
2008-09-09 04:17:13 -04:00
...
2008-03-24 21:28:24 -04:00
end
2008-08-31 03:53:21 -04:00
2008-09-09 04:17:13 -04:00
== Error handling
2008-03-24 21:28:24 -04:00
2009-01-11 10:59:34 -05:00
Error handlers run within the same context as routes and before filters, which
2010-09-10 10:33:45 -04:00
means you get all the goodies it has to offer, like <tt>haml</tt>,
<tt>erb</tt>, <tt>halt</tt>, etc.
2008-03-24 21:28:24 -04:00
2008-09-09 04:17:13 -04:00
=== Not Found
2008-03-24 21:28:24 -04:00
2009-01-11 10:59:34 -05: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-24 21:28:24 -04:00
not_found do
2010-09-10 10:33:45 -04:00
'This is nowhere to be found.'
2008-03-24 21:28:24 -04:00
end
2008-08-31 03:53:21 -04:00
2008-09-09 04:17:13 -04:00
=== Error
2008-03-29 19:59:45 -04:00
2009-01-11 10:59:34 -05:00
The +error+ handler is invoked any time an exception is raised from a route
2009-12-19 16:03:37 -05:00
block or a filter. The exception object can be obtained from the
2009-01-24 02:19:56 -05:00
<tt>sinatra.error</tt> Rack variable:
2008-03-29 19:59:45 -04:00
2008-03-24 21:28:24 -04:00
error do
2009-01-11 10:59:34 -05:00
'Sorry there was a nasty error - ' + env['sinatra.error'].name
2008-03-29 19:59:45 -04:00
end
2008-09-09 04:17:13 -04:00
Custom errors:
2008-03-29 19:59:45 -04:00
error MyCustomError do
2008-04-14 16:31:52 -04:00
'So what happened was...' + request.env['sinatra.error'].message
2008-03-24 21:28:24 -04:00
end
2008-03-29 19:59:45 -04:00
2008-09-09 04:17:13 -04:00
Then, if this happens:
2008-03-29 19:59:45 -04:00
get '/' do
raise MyCustomError, 'something bad'
end
2008-09-09 04:17:13 -04:00
You get this:
2008-03-29 19:59:45 -04:00
So what happened was... something bad
2008-08-31 03:53:21 -04:00
2009-12-22 21:10:14 -05:00
Alternatively, you can install error handler for a status code:
error 403 do
'Access forbidden'
end
get '/secret' do
403
end
Or a range:
error 400..510 do
'Boom'
end
2009-01-24 02:19:56 -05:00
Sinatra installs special <tt>not_found</tt> and <tt>error</tt> handlers when
running under the development environment.
2008-03-29 19:59:45 -04:00
2008-08-31 03:53:21 -04:00
== Mime types
2009-01-11 10:59:34 -05:00
When using <tt>send_file</tt> or static files you may have mime types Sinatra
2009-10-17 19:17:37 -04:00
doesn't understand. Use +mime_type+ to register them by file extension:
2008-03-29 19:59:45 -04:00
2009-10-17 19:17:37 -04:00
mime_type :foo, 'text/foo'
2008-03-24 21:28:24 -04:00
2009-12-22 21:12:23 -05:00
You can also use it with the +content_type+ helper:
content_type :foo
2008-08-31 03:53:21 -04:00
== Rack Middleware
2008-05-19 17:25:09 -04:00
2008-08-31 03:53:21 -04:00
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-05-19 17:25:09 -04:00
2008-09-09 04:17:13 -04:00
Sinatra makes building Rack middleware pipelines a cinch via a top-level
+use+ method:
2008-05-19 17:25:09 -04:00
require 'sinatra'
require 'my_custom_middleware'
use Rack::Lint
use MyCustomMiddleware
get '/hello' do
'Hello World'
end
2008-08-31 03:53:21 -04:00
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:
2008-05-19 17:25:09 -04:00
use Rack::Auth::Basic do |username, password|
username == 'admin' && password == 'secret'
end
2008-08-31 03:53:21 -04:00
Rack is distributed with a variety of standard middleware for logging,
debugging, URL routing, authentication, and session handling. Sinatra uses
many of of these components automatically based on configuration so you
typically don't have to +use+ them explicitly.
2008-05-19 17:25:09 -04:00
2008-08-31 03:53:21 -04:00
== Testing
2008-03-24 21:28:24 -04:00
2009-05-18 08:17:00 -04:00
Sinatra tests can be written using any Rack-based testing library
or framework. {Rack::Test}[http://gitrdoc.com/brynary/rack-test] is
recommended:
2009-01-13 12:53:53 -05:00
2008-09-24 21:48:33 -04:00
require 'my_sinatra_app'
2009-05-18 08:17:00 -04:00
require 'rack/test'
2008-08-31 03:53:21 -04:00
2008-03-24 21:28:24 -04:00
class MyAppTest < Test::Unit::TestCase
2009-05-18 08:17:00 -04:00
include Rack::Test::Methods
def app
Sinatra::Application
end
2008-08-31 03:53:21 -04:00
2009-03-01 21:04:42 -05:00
def test_my_default
2009-01-13 12:53:53 -05:00
get '/'
2009-05-18 08:17:00 -04:00
assert_equal 'Hello World!', last_response.body
2008-03-24 21:28:24 -04:00
end
2008-09-27 06:29:27 -04:00
2009-03-01 21:04:42 -05:00
def test_with_params
2009-05-18 08:17:00 -04:00
get '/meet', :name => 'Frank'
assert_equal 'Hello Frank!', last_response.body
2008-09-27 06:29:27 -04:00
end
2009-03-01 21:04:42 -05:00
def test_with_rack_env
2009-05-18 08:17:00 -04:00
get '/', {}, 'HTTP_USER_AGENT' => 'Songbird'
assert_equal "You're using Songbird!", last_response.body
2009-01-09 01:37:26 -05:00
end
end
2009-05-18 08:17:00 -04:00
NOTE: The built-in Sinatra::Test module and Sinatra::TestHarness class
are deprecated as of the 0.9.2 release.
2008-03-24 21:28:24 -04:00
2009-06-06 06:06:45 -04:00
== Sinatra::Base - Middleware, Libraries, and Modular Apps
Defining your app at the top-level works well for micro-apps but has
considerable drawbacks when building reuseable 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
file, ./public and ./views directories, logging, exception detail page,
etc.). That's where Sinatra::Base comes into play:
require 'sinatra/base'
class MyApp < Sinatra::Base
set :sessions, true
set :foo, 'bar'
get '/' do
'Hello world!'
end
end
The MyApp class is an independent Rack component that can act as
Rack middleware, a Rack application, or Rails metal. You can +use+ or
+run+ this class from a rackup +config.ru+ file; or, control a server
component shipped as a library:
MyApp.run! :host => 'localhost', :port => 9090
The methods available to Sinatra::Base subclasses are exactly as those
available via the top-level DSL. Most top-level apps can be converted to
Sinatra::Base components with two modifications:
* Your file should require +sinatra/base+ 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
of Sinatra::Base.
+Sinatra::Base+ 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.
SIDEBAR: Sinatra's top-level DSL is implemented using a simple delegation
system. The +Sinatra::Application+ class -- a special subclass of
Sinatra::Base -- receives all :get, :put, :post, :delete, :before,
:error, :not_found, :configure, and :set messages sent to the
top-level. Have a look at the code for yourself: here's the
2010-03-01 19:23:06 -05:00
{Sinatra::Delegator mixin}[http://github.com/sinatra/sinatra/blob/ceac46f0bc129a6e994a06100aa854f606fe5992/lib/sinatra/base.rb#L1128]
being {included into the main namespace}[http://github.com/sinatra/sinatra/blob/ceac46f0bc129a6e994a06100aa854f606fe5992/lib/sinatra/main.rb#L28]
2009-06-06 06:06:45 -04:00
2008-08-31 03:53:21 -04:00
== Command line
2008-03-24 21:28:24 -04:00
2008-09-09 04:17:13 -04:00
Sinatra applications can be run directly:
2008-08-31 03:53:21 -04:00
2010-03-01 18:59:03 -05:00
ruby myapp.rb [-h] [-x] [-e ENVIRONMENT] [-p PORT] [-o HOST] [-s HANDLER]
2008-03-24 21:28:24 -04:00
Options are:
-h # help
-p # set the port (default is 4567)
2010-03-01 18:59:03 -05:00
-o # set the host (default is 0.0.0.0)
2008-03-24 21:28:24 -04:00
-e # set the environment (default is development)
2009-01-15 09:08:40 -05:00
-s # specify rack server/handler (default is thin)
2008-04-14 16:31:52 -04:00
-x # turn on the mutex lock (default is off)
2008-03-24 21:28:24 -04:00
2009-01-24 02:19:56 -05:00
== The Bleeding Edge
2008-08-31 08:41:20 -04:00
2009-01-24 02:19:56 -05:00
If you would like to use Sinatra's latest bleeding code, create a local
clone and run your app with the <tt>sinatra/lib</tt> directory on the
<tt>LOAD_PATH</tt>:
2008-08-31 08:41:20 -04:00
2009-01-24 02:19:56 -05:00
cd myapp
2009-01-18 18:22:10 -05:00
git clone git://github.com/sinatra/sinatra.git
2009-01-24 02:19:56 -05:00
ruby -Isinatra/lib myapp.rb
2008-08-31 15:09:10 -04:00
2009-05-12 09:42:50 -04:00
Alternatively, you can add the <tt>sinatra/lib</tt> directory to the
2009-01-24 02:19:56 -05:00
<tt>LOAD_PATH</tt> in your application:
2008-03-24 21:28:24 -04:00
2009-01-11 10:59:34 -05:00
$LOAD_PATH.unshift File.dirname(__FILE__) + '/sinatra/lib'
2009-01-24 02:19:56 -05:00
require 'rubygems'
2008-03-24 21:28:24 -04:00
require 'sinatra'
get '/about' do
2009-01-24 02:19:56 -05:00
"I'm running version " + Sinatra::VERSION
2008-03-24 21:28:24 -04:00
end
2008-08-31 08:37:58 -04:00
2009-01-24 02:19:56 -05:00
To update the Sinatra sources in the future:
2008-08-31 08:46:39 -04:00
2009-01-24 02:19:56 -05:00
cd myproject/sinatra
git pull
2008-08-31 08:37:58 -04:00
2009-01-24 02:19:56 -05:00
== More
2008-08-31 08:37:58 -04:00
2010-03-07 05:50:27 -05:00
* {Project Website}[http://www.sinatrarb.com/] - Additional documentation,
2009-01-24 02:19:56 -05:00
news, and links to other resources.
2010-03-07 05:50:27 -05:00
* {Contributing}[http://www.sinatrarb.com/contributing] - Find a bug? Need
2009-01-24 02:19:56 -05:00
help? Have a patch?
2010-07-01 01:32:11 -04:00
* {Issue tracker}[http://github.com/sinatra/sinatra/issues]
2009-03-01 21:17:47 -05:00
* {Twitter}[http://twitter.com/sinatra]
2010-03-07 05:50:27 -05:00
* {Mailing List}[http://groups.google.com/group/sinatrarb/topics]
2009-01-24 02:19:56 -05:00
* {IRC: #sinatra}[irc://chat.freenode.net/#sinatra] on http://freenode.net