sinatra/README.rdoc

504 lines
10 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
== Sample App
2008-03-25 00:20:58 +00:00
# myapp.rb
require 'rubygems'
require 'sinatra'
get '/' do
'Hello world!'
end
Run with <tt>ruby myapp.rb</tt> and view at <tt>http://localhost:4567</tt>
2008-03-25 00:20:58 +00:00
== HTTP Methods
2008-03-25 00:20:58 +00:00
get '/' do
.. show things ..
end
2008-03-25 00:20:58 +00:00
post '/' do
.. create something ..
end
2008-03-25 00:20:58 +00:00
put '/' do
.. update something ..
end
2008-03-25 00:20:58 +00:00
delete '/' do
.. annihilate something ..
end
2008-03-25 01:28:24 +00:00
head '/' do
2008-03-25 01:28:24 +00:00
end
NOTE: <tt>put</tt> and <tt>delete</tt> are also triggered when a
<tt>_method</tt> parameter is set to PUT or DELETE and the HTTP request method
is POST
2008-03-25 01:28:24 +00:00
== Routes
2008-03-25 01:28:24 +00:00
Routes are matched based on the order of declaration. The first route that
matches the request is invoked.
2008-03-25 01:28:24 +00:00
Simple:
2008-03-25 01:28:24 +00:00
get '/hi' do
...
end
Named parameters:
2008-03-25 01:28:24 +00:00
get '/:name' do
# matches /sinatra and the like and sets params[:name]
end
Splat parameters:
2008-03-25 01:28:24 +00:00
get '/say/*/to/*' do
# matches /say/hello/to/world
params["splat"] # => ["hello", "world"]
end
get '/download/*.*' do
# matches /download/path/to/file.xml
params["splat"] # => ["path/to/file", "xml"]
2008-03-25 01:28:24 +00:00
end
User agent matching:
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
# matches non-songbird browsers
end
2008-03-25 00:20:58 +00:00
2008-09-09 08:17:13 +00:00
== Static files
2008-03-27 02:02:28 +00:00
Put all of your static content in the ./public directory
root
\ public
If a file exists that maps to the REQUEST_PATH then it is served and the
request ends. Otherwise, Sinatra will look for an event that matches the
path.
2008-03-25 00:20:58 +00:00
== Views
2008-03-25 00:20:58 +00:00
Views are searched for in a "views" directory in the same location as
your main application.
2008-03-25 00:20:58 +00:00
=== Haml Templates
2008-03-25 00:20:58 +00:00
get '/' do
haml :index
end
Renders <tt>./views/index.haml</tt>.
=== Erb
get '/' do
erb :index
end
Renders <tt>./views/index.erb</tt>
=== Builder
See Sinatra::Builder
2008-03-25 00:20:58 +00:00
=== Sass
get '/stylesheet.css' do
content_type 'text/css', :charset => 'utf-8'
sass :stylesheet
end
Renders <tt>./views/stylesheet.sass</tt>.
=== Inline Templates
2008-03-25 00:20:58 +00:00
get '/' do
haml '%div.title Hello World'
end
Renders the inlined template string.
2008-03-25 00:20:58 +00:00
=== Accessing Variables
Templates are evaluated within the Sinatra::EventContext instance
used to evaluate event blocks. Instance variables set in event
blocks can be accessed direcly in views:
2008-03-25 00:20:58 +00:00
get '/:id' do
@foo = Foo.find(params[:id])
haml '%h1== @foo.name'
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])
haml '%h1== foo.name', :locals => { :foo => foo }
2008-03-25 00:20:58 +00:00
end
This is typically used when rendering templates as partials from within
other templates.
=== In-file 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
get '/' do
haml :index
end
2008-03-29 23:59:45 +00:00
use_in_file_templates!
2008-03-29 23:59:45 +00:00
__END__
2008-05-07 21:18:43 +00:00
@@ layout
2008-03-29 23:59:45 +00:00
X
= yield
X
2008-05-07 21:18:43 +00:00
@@ index
2008-03-29 23:59:45 +00:00
%div.title Hello world!!!!!
It's also possible to define named templates using the top-level template
method:
2008-03-29 23:59:45 +00:00
template :layout do
"X\n=yield\nX"
end
template :index do
'%div.title Hello World!'
end
get '/' do
haml :index
end
== Helpers
2008-03-25 00:20:58 +00:00
The top-level <tt>helpers</tt> method takes a block and extends all
EventContext instances with the methods defined:
2008-03-25 00:20:58 +00:00
helpers do
def bar(name)
"#{name}bar"
end
end
2008-03-25 01:28:24 +00:00
get '/:name' do
bar(params[:name])
end
2008-03-25 00:20:58 +00:00
== Filters
2008-03-25 00:20:58 +00:00
These are run in Sinatra::EventContext before every event.
2008-03-25 01:28:24 +00:00
2008-03-25 00:20:58 +00:00
before do
.. this code will run before each event ..
end
== Halt!
2008-03-25 00:20:58 +00:00
To immediately stop a request during a before filter or event use:
2008-03-25 00:20:58 +00:00
throw :halt
Set the body to the result of a helper method
throw :halt, :helper_method
Set the body to the result of a helper method after sending it parameters from
the local scope
2008-03-25 00:20:58 +00:00
throw :halt, [:helper_method, foo, bar]
2008-03-25 00:20:58 +00:00
Set the body to a simple string
throw :halt, 'this will be the body'
2008-03-25 00:20:58 +00:00
Set status then the body
throw :halt, [401, 'go away!']
2008-03-25 00:20:58 +00:00
Set the status then call a helper method with params from local scope
throw :halt, [401, [:helper_method, foo, bar]]
Run a proc inside the Sinatra::EventContext instance and set the body to the
result
2008-03-25 00:20:58 +00:00
throw :halt, lambda { puts 'In a proc!'; 'I just wrote to $stdout!' }
Create you own to_result
class MyResultObject
def to_result(event_context, *args)
event_context.body = 'This will be the body!
end
end
2008-03-25 00:20:58 +00:00
get '/' do
throw :halt, MyResultObject.new
end
Get the gist? If you want more fun with this then checkout <tt>to_result</tt>
on Array, Symbol, Fixnum, NilClass.
2008-03-25 00:20:58 +00:00
== Configuration and Reloading
2008-03-25 01:28:24 +00:00
2008-09-09 08:17:13 +00:00
Sinatra supports multiple environments and reloading. Reloading happens
before every request when running under the :development environment. Wrap
your configurations in <tt>configure</tt> (i.e. Database connections, Constants,
etc.) to protect them from reloading or to target specific environments.
2008-03-25 01:28:24 +00:00
All environments:
configure do
2008-09-09 08:17:13 +00:00
...
2008-03-25 01:28:24 +00:00
end
2008-09-09 08:17:13 +00:00
Production:
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
2008-03-25 01:28:24 +00:00
Two at a time:
configure :production, :test do
2008-09-09 08:17:13 +00:00
...
2008-03-25 01:28:24 +00:00
end
2008-03-25 01:28:24 +00:00
This is also really nifty for error handling.
2008-09-09 08:17:13 +00:00
== Error handling
2008-03-25 01:28:24 +00:00
2008-09-09 08:17:13 +00:00
Error handlers run inside the current Sinatra::EventContext instance, which
means you get all the goodies it has to offer (i.e. haml, erb, throw :halt,
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
2008-09-09 08:17:13 +00:00
When Sinatra::NotFound is raised, the not_found handler is invoked:
2008-03-25 01:28:24 +00:00
not_found do
'This is nowhere to be found'
end
2008-09-09 08:17:13 +00:00
=== Error
2008-03-29 23:59:45 +00:00
2008-09-09 08:17:13 +00:00
By default, the +error+ handler is invoked on Sinatra::ServerError or when
an unknown error occurs.
2008-03-29 23:59:45 +00:00
2008-09-09 08:17:13 +00:00
The exception can be obtained from the 'sinatra.error' variable in
request.env.
2008-03-29 23:59:45 +00:00
2008-03-25 01:28:24 +00:00
error do
2008-03-29 23:59:45 +00:00
'Sorry there was a nasty error - ' + request.env['sinatra.error'].name
end
2008-09-09 08:17:13 +00:00
Custom errors:
2008-03-29 23:59:45 +00:00
error MyCustomError do
2008-04-14 20:31:52 +00:00
'So what happened was...' + request.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
2008-09-09 08:17:13 +00:00
Sinatra installs special not_found and error handlers when running under
the development.
2008-03-29 23:59:45 +00:00
== Mime types
When using send_file or static files you may have mime types Sinatra doesn't
understand. Use +mime+ in those cases.
2008-03-29 23:59:45 +00:00
mime :foo, 'text/foo'
2008-03-25 01:28:24 +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 of these components automatically based on configuration so you
typically don't have to +use+ them explicitly.
== Testing
2008-03-25 01:28:24 +00:00
=== Test/Unit
2008-09-25 01:48:33 +00:00
require 'rubygems'
require 'sinatra'
2008-03-25 01:28:24 +00:00
require 'sinatra/test/unit'
2008-09-25 01:48:33 +00:00
require 'my_sinatra_app'
2008-03-25 01:28:24 +00:00
class MyAppTest < Test::Unit::TestCase
2008-03-25 01:28:24 +00:00
def test_my_default
get_it '/'
assert_equal 'My Default Page!', @response.body
end
2008-03-25 01:28:24 +00:00
def test_with_agent
get_it '/', :agent => 'Songbird'
assert_equal 'You're in Songbird!', @response.body
end
2008-03-25 01:28:24 +00:00
...
2008-03-25 01:28:24 +00:00
end
=== Specs
2008-03-25 01:28:24 +00:00
2008-09-25 01:48:33 +00:00
require 'rubygems'
require 'sinatra'
2008-03-25 01:28:24 +00:00
require 'sinatra/test/spec'
2008-09-25 01:48:33 +00:00
require 'my_sinatra_app'
2008-03-25 01:28:24 +00:00
2008-09-25 01:48:33 +00:00
describe 'My app' do
2008-09-25 01:48:33 +00:00
it "should show a default page" do
2008-03-25 01:28:24 +00:00
get_it '/'
should.be.ok
2008-03-29 23:59:45 +00:00
body.should.equal 'My Default Page!'
2008-03-25 01:28:24 +00:00
end
...
end
2008-03-25 01:28:24 +00:00
2008-09-09 08:17:13 +00:00
See Sinatra::Test::Methods for more information on +get_it+, +post_it+,
+put_it+, and friends.
2008-03-25 01:28:24 +00:00
== Command line
2008-03-25 01:28:24 +00:00
2008-09-09 08:17:13 +00:00
Sinatra applications can be run directly:
2008-09-09 08:17:13 +00:00
ruby myapp.rb [-h] [-x] [-p PORT] [-e ENVIRONMENT]
2008-03-25 01:28:24 +00:00
Options are:
-h # help
-p # set the port (default is 4567)
-e # set the environment (default is development)
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
== Contributing
2008-03-25 01:28:24 +00:00
=== Tools
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.
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/
=== First Time: Cloning The Sinatra Repo
2008-03-25 01:28:24 +00:00
cd where/you/keep/your/projects
git clone git://github.com/bmizerany/sinatra.git
cd sinatra
cd path/to/your_project
2008-03-25 01:28:24 +00:00
ln -s ../sinatra/
=== Updating Your Existing Sinatra Clone
cd where/you/keep/sinatra
git pull
=== Using Edge Sinatra in Your App
2008-03-25 01:28:24 +00:00
at the top of your sinatra_app.rb file:
2008-03-25 01:28:24 +00:00
$:.unshift File.dirname(__FILE__) + '/sinatra/lib'
require 'sinatra'
get '/about' do
"I'm running on Version " + Sinatra::VERSION
2008-03-25 01:28:24 +00:00
end
=== Contributing a Patch
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.
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).
=== Issue Tracking and Feature Requests
http://sinatra.lighthouseapp.com/
== Community
=== Mailing List
http://groups.google.com/group/sinatrarb
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.
=== IRC Channel
You can find us on the Freenode network in the channel #sinatra
(irc://chat.freenode.net/#sinatra)
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.