2008-03-24 20:20:58 -04:00
|
|
|
= Sinatra
|
|
|
|
|
2008-08-31 03:53:21 -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 'rubygems'
|
|
|
|
require 'sinatra'
|
|
|
|
get '/' do
|
|
|
|
'Hello world!'
|
|
|
|
end
|
|
|
|
|
2008-08-31 03:53:21 -04:00
|
|
|
Run with <tt>ruby myapp.rb</tt> and view at <tt>http://localhost:4567</tt>
|
2008-03-24 20:20:58 -04:00
|
|
|
|
2008-08-31 03:53:21 -04:00
|
|
|
== HTTP Methods
|
2008-03-24 20:20:58 -04:00
|
|
|
|
|
|
|
get '/' do
|
|
|
|
.. show things ..
|
|
|
|
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
|
|
|
|
|
|
|
== Routes
|
2008-03-24 21:28:24 -04:00
|
|
|
|
2008-08-31 03:53:21 -04:00
|
|
|
Routes are matched based on the order of declaration. The first route that
|
|
|
|
matches the request is invoked.
|
2008-03-24 21:28:24 -04:00
|
|
|
|
2008-12-13 16:06:02 -05:00
|
|
|
Basic routes:
|
2008-03-24 21:28:24 -04:00
|
|
|
|
|
|
|
get '/hi' do
|
|
|
|
...
|
|
|
|
end
|
2008-08-31 03:53:21 -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
|
|
|
|
|
|
|
get '/:name' do
|
2008-12-13 16:06:02 -05:00
|
|
|
# matches "GET /foo" and "GET /bar"
|
|
|
|
# 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-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
|
|
|
|
|
|
|
|
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
|
|
|
|
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-11 10:59:34 -05:00
|
|
|
== Views / Templates
|
2008-03-24 20:20:58 -04:00
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
Templates are assumed to be located directly under a <tt>./views</tt>
|
|
|
|
directory. To use a different views directory:
|
2008-12-13 16:06:02 -05:00
|
|
|
|
|
|
|
set :views, File.dirname(__FILE__) + '/templates'
|
|
|
|
|
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:
|
|
|
|
|
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>.
|
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
=== Erb Templates
|
2008-08-31 03:53:21 -04:00
|
|
|
|
|
|
|
get '/' do
|
|
|
|
erb :index
|
|
|
|
end
|
|
|
|
|
|
|
|
Renders <tt>./views/index.erb</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-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
|
|
|
|
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>.
|
|
|
|
|
|
|
|
=== 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
|
|
|
|
|
|
|
=== Accessing Variables
|
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
Templates are evaluated within the same context as the route blocks. Instance
|
|
|
|
variables set in route blocks are available in 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.
|
|
|
|
|
|
|
|
=== In-file 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
|
|
|
|
|
|
|
get '/' do
|
|
|
|
haml :index
|
|
|
|
end
|
2008-08-31 03:53:21 -04:00
|
|
|
|
2008-03-29 19:59:45 -04:00
|
|
|
use_in_file_templates!
|
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!!!!!
|
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
It's also possible to define named templates using the top-level template
|
|
|
|
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
|
|
|
|
route blocks 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
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
Before filters are evaluated before each request within the context of the
|
|
|
|
request 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
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
== Halting
|
2008-12-13 16:06:02 -05:00
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
To immediately stop a request during a before 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
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
You can also specify a body when halting ...
|
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
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
Set the status and body ...
|
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
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
== Passing
|
2008-08-31 03:53:21 -04:00
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
A route can punt processing to the next matching route using the <tt>pass</tt>
|
|
|
|
statement:
|
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'
|
|
|
|
"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-24 20:20:58 -04:00
|
|
|
|
2008-08-31 03:53:21 -04:00
|
|
|
== Configuration and Reloading
|
2008-03-24 21:28:24 -04:00
|
|
|
|
2008-09-09 04:17:13 -04:00
|
|
|
Sinatra supports multiple environments and reloading. Reloading happens
|
2009-01-11 10:59:34 -05:00
|
|
|
before each request when running under the <tt>:development</tt>
|
|
|
|
environment. Wrap your configurations (e.g., database connections, constants,
|
|
|
|
etc.) in <tt>configure</tt> blocks to protect them from reloading or to
|
|
|
|
target specific environments.
|
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
|
|
|
|
<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-01-11 10:59:34 -05:00
|
|
|
Run when the environment (RACK_ENV environment variable) 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
|
|
|
|
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
|
|
|
|
'This is nowhere to be found'
|
|
|
|
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
|
|
|
|
block or before filter. The exception object can be obtained from the
|
|
|
|
'sinatra.error' 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
|
|
|
|
2008-09-09 04:17:13 -04:00
|
|
|
Sinatra installs special not_found and error handlers when running under
|
2009-01-11 10:59:34 -05:00
|
|
|
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
|
|
|
|
doesn't understand. Use +mime+ to register them by file extension:
|
2008-03-29 19:59:45 -04:00
|
|
|
|
|
|
|
mime :foo, 'text/foo'
|
2008-03-24 21:28:24 -04:00
|
|
|
|
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-01-13 12:53:53 -05:00
|
|
|
The Sinatra::Test module includes a variety of helper methods for testing
|
|
|
|
your Sinatra app. Sinatra includes support for Test::Unit, test-spec, RSpec,
|
|
|
|
and Bacon through separate source files.
|
|
|
|
|
|
|
|
=== Test::Unit
|
2008-03-24 21:28:24 -04:00
|
|
|
|
2008-09-24 21:48:33 -04:00
|
|
|
require 'sinatra'
|
2008-03-24 21:28:24 -04:00
|
|
|
require 'sinatra/test/unit'
|
2008-09-24 21:48:33 -04:00
|
|
|
require 'my_sinatra_app'
|
2008-08-31 03:53:21 -04:00
|
|
|
|
2008-03-24 21:28:24 -04:00
|
|
|
class MyAppTest < Test::Unit::TestCase
|
|
|
|
def test_my_default
|
2009-01-13 12:53:53 -05:00
|
|
|
get '/'
|
2008-03-24 21:28:24 -04:00
|
|
|
assert_equal 'My Default Page!', @response.body
|
|
|
|
end
|
2008-08-31 03:53:21 -04:00
|
|
|
|
2008-03-24 21:28:24 -04:00
|
|
|
def test_with_agent
|
2009-01-13 12:53:53 -05:00
|
|
|
get '/', :agent => 'Songbird'
|
2008-03-24 21:28:24 -04:00
|
|
|
assert_equal 'You're in Songbird!', @response.body
|
|
|
|
end
|
2008-08-31 03:53:21 -04:00
|
|
|
|
2008-03-24 21:28:24 -04:00
|
|
|
...
|
|
|
|
end
|
2008-08-31 03:53:21 -04:00
|
|
|
|
2009-01-13 12:53:53 -05:00
|
|
|
=== Test::Spec
|
|
|
|
|
|
|
|
Install the test-spec gem and require <tt>'sinatra/test/spec'</tt> before
|
|
|
|
your app:
|
2008-03-24 21:28:24 -04:00
|
|
|
|
2008-09-24 21:48:33 -04:00
|
|
|
require 'sinatra'
|
2008-03-24 21:28:24 -04:00
|
|
|
require 'sinatra/test/spec'
|
2008-09-24 21:48:33 -04:00
|
|
|
require 'my_sinatra_app'
|
2008-03-24 21:28:24 -04:00
|
|
|
|
2008-09-24 21:48:33 -04:00
|
|
|
describe 'My app' do
|
|
|
|
it "should show a default page" do
|
2009-01-13 12:53:53 -05:00
|
|
|
get '/'
|
2008-03-24 21:28:24 -04:00
|
|
|
should.be.ok
|
2008-03-29 19:59:45 -04:00
|
|
|
body.should.equal 'My Default Page!'
|
2008-03-24 21:28:24 -04:00
|
|
|
end
|
2008-09-27 06:29:27 -04:00
|
|
|
|
|
|
|
...
|
|
|
|
end
|
|
|
|
|
|
|
|
=== RSpec
|
|
|
|
|
2009-01-13 12:53:53 -05:00
|
|
|
Install the rspec gem and require <tt>'sinatra/test/rspec'</tt> before
|
|
|
|
your app:
|
|
|
|
|
2008-09-27 06:29:27 -04:00
|
|
|
require 'sinatra'
|
|
|
|
require 'sinatra/test/rspec'
|
|
|
|
require 'my_sinatra_app'
|
|
|
|
|
|
|
|
describe 'My app' do
|
|
|
|
it 'should show a default page' do
|
2009-01-13 12:53:53 -05:00
|
|
|
get '/'
|
2008-09-27 06:29:27 -04:00
|
|
|
@response.should be_ok
|
|
|
|
@response.body.should == 'My Default Page!'
|
|
|
|
end
|
|
|
|
|
2008-03-24 21:28:24 -04:00
|
|
|
...
|
|
|
|
|
2008-08-31 03:53:21 -04:00
|
|
|
end
|
2008-03-24 21:28:24 -04:00
|
|
|
|
2008-09-09 04:17:13 -04:00
|
|
|
See Sinatra::Test::Methods for more information on +get_it+, +post_it+,
|
|
|
|
+put_it+, and friends.
|
2008-03-24 21:28:24 -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
|
|
|
|
2008-09-09 04:17:13 -04:00
|
|
|
ruby myapp.rb [-h] [-x] [-p PORT] [-e ENVIRONMENT]
|
2008-03-24 21:28:24 -04:00
|
|
|
|
|
|
|
Options are:
|
|
|
|
|
|
|
|
-h # help
|
|
|
|
-p # set the port (default is 4567)
|
|
|
|
-e # set the environment (default is development)
|
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
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
== Contributing
|
2008-03-24 21:28:24 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
=== Tools
|
2008-08-31 08:41:20 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
Besides Ruby itself, you only need a text editor, preferably one that supports
|
|
|
|
Ruby syntax hilighting. VIM and Emacs are a fine choice on any platform, but
|
|
|
|
feel free to use whatever you're familiar with.
|
2008-08-31 08:41:20 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
Sinatra uses the Git source code management system. If you're unfamiliar with
|
|
|
|
Git, you can find more information and tutorials on http://git.or.cz/ as well
|
|
|
|
as http://git-scm.com/. Scott Chacon created a great series of introductory
|
|
|
|
screencasts about Git, which you can find here: http://www.gitcasts.com/
|
2008-08-31 08:41:20 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
=== First Time: Cloning The Sinatra Repo
|
2008-08-31 08:05:31 -04:00
|
|
|
|
2008-03-24 21:28:24 -04:00
|
|
|
cd where/you/keep/your/projects
|
|
|
|
git clone git://github.com/bmizerany/sinatra.git
|
2008-08-31 08:05:31 -04:00
|
|
|
cd sinatra
|
|
|
|
cd path/to/your_project
|
2008-03-24 21:28:24 -04:00
|
|
|
ln -s ../sinatra/
|
2008-08-31 15:09:10 -04:00
|
|
|
|
|
|
|
=== Updating Your Existing Sinatra Clone
|
|
|
|
|
2008-08-31 08:05:31 -04:00
|
|
|
cd where/you/keep/sinatra
|
|
|
|
git pull
|
2008-08-31 15:09:10 -04:00
|
|
|
|
|
|
|
=== Using Edge Sinatra in Your App
|
2008-03-24 21:28:24 -04:00
|
|
|
|
2008-08-31 08:05:31 -04:00
|
|
|
at the top of your sinatra_app.rb file:
|
2008-03-24 21:28:24 -04:00
|
|
|
|
2009-01-11 10:59:34 -05:00
|
|
|
$LOAD_PATH.unshift File.dirname(__FILE__) + '/sinatra/lib'
|
2008-03-24 21:28:24 -04:00
|
|
|
require 'sinatra'
|
|
|
|
|
|
|
|
get '/about' do
|
2008-08-31 03:53:21 -04:00
|
|
|
"I'm running on Version " + Sinatra::VERSION
|
2008-03-24 21:28:24 -04:00
|
|
|
end
|
2008-08-31 08:37:58 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
=== Contributing a Patch
|
2008-08-31 08:46:39 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
There are several ways to do this. Probably the easiest (and preferred) way is
|
|
|
|
to fork Sinatra on GitHub (http://github.com/bmizerany/sinatra), push your
|
|
|
|
changes to your Sinatra repo, and then send Blake Mizerany (bmizerany on
|
|
|
|
GitHub) a pull request.
|
2008-08-31 08:46:39 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
You can also create a patch file and attach it to a feature request or bug fix
|
|
|
|
on the issue tracker (see below) or send it to the mailing list (see Community
|
|
|
|
section).
|
2008-08-31 08:46:39 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
=== Issue Tracking and Feature Requests
|
2008-08-31 08:46:39 -04:00
|
|
|
|
|
|
|
http://sinatra.lighthouseapp.com/
|
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
== Community
|
2008-08-31 08:37:58 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
=== Mailing List
|
2008-08-31 08:37:58 -04:00
|
|
|
|
|
|
|
http://groups.google.com/group/sinatrarb
|
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
If you have a problem or question, please make sure to include all the
|
|
|
|
relevant information in your mail, like the Sinatra version you're using, what
|
|
|
|
version of Ruby you have, and so on.
|
2008-08-31 08:37:58 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
=== IRC Channel
|
2008-08-31 08:37:58 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
You can find us on the Freenode network in the channel #sinatra
|
|
|
|
(irc://chat.freenode.net/#sinatra)
|
2008-08-31 08:37:58 -04:00
|
|
|
|
2008-08-31 15:09:10 -04:00
|
|
|
There's usually someone online at any given time, but we cannot pay attention
|
|
|
|
to the channel all the time, so please stick around for a while after asking a
|
|
|
|
question.
|