mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
grammar/formatting pass over README
Fix whitespace errors, wrap text sanely, and rework english a bit.
This commit is contained in:
parent
60d50062d7
commit
f44fb6aa2e
1 changed files with 152 additions and 139 deletions
193
README.rdoc
193
README.rdoc
|
@ -1,21 +1,20 @@
|
|||
= Sinatra
|
||||
|
||||
Sinatra a DSL for quickly creating web-applications in Ruby with minimal effort.
|
||||
Sinatra is a DSL for quickly creating web-applications in Ruby with minimal
|
||||
effort.
|
||||
|
||||
= Sample app:
|
||||
== Sample App
|
||||
|
||||
# myapp.rb
|
||||
|
||||
require 'rubygems'
|
||||
require 'sinatra'
|
||||
|
||||
get '/' do
|
||||
'Hello world!'
|
||||
end
|
||||
|
||||
Ruby this as <tt>ruby myapp.rb</tt> and view at <tt>http://localhost:4567</tt>
|
||||
Run with <tt>ruby myapp.rb</tt> and view at <tt>http://localhost:4567</tt>
|
||||
|
||||
= RESTful
|
||||
== HTTP Methods
|
||||
|
||||
get '/' do
|
||||
.. show things ..
|
||||
|
@ -37,25 +36,28 @@ Ruby this as <tt>ruby myapp.rb</tt> and view at <tt>http://localhost:4567</tt>
|
|||
|
||||
end
|
||||
|
||||
NOTE: <tt>put</tt> and <tt>delete</tt> are triggered when a <tt>_method</tt> param is set to PUT or DELETE and the HTTP_REQUEST_METHOD is a POST
|
||||
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
|
||||
|
||||
= Routes
|
||||
== Routes
|
||||
|
||||
NOTE: Routes are looked up in order of declaration
|
||||
Routes are matched based on the order of declaration. The first route that
|
||||
matches the request is invoked.
|
||||
|
||||
Simple
|
||||
Simple:
|
||||
|
||||
get '/hi' do
|
||||
...
|
||||
end
|
||||
|
||||
With params
|
||||
Named parameters:
|
||||
|
||||
get '/:name' do
|
||||
# matches /sinatra and the like and sets params[:name]
|
||||
end
|
||||
|
||||
Splat'n
|
||||
Splat parameters:
|
||||
|
||||
get '/say/*/to/*' do
|
||||
# matches /say/hello/to/world
|
||||
|
@ -67,7 +69,7 @@ Splat'n
|
|||
params["splat"] # => ["path/to/file", "xml"]
|
||||
end
|
||||
|
||||
Get an agent!
|
||||
User agent matching:
|
||||
|
||||
get '/foo', :agent => /Songbird (\d\.\d)[\d\/]*?/ do
|
||||
"You're using Songbird version #{params[:agent][0]}"
|
||||
|
@ -84,63 +86,76 @@ 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 end; Sinatra will look for and event that matches the path otherwise
|
||||
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.
|
||||
|
||||
= Views (if you need MVC)
|
||||
== Views
|
||||
|
||||
All file-based views are looked up in:
|
||||
Views are searched for in a "views" directory in the same location as
|
||||
your main application.
|
||||
|
||||
root
|
||||
| - views/
|
||||
|
||||
|
||||
== Templates
|
||||
|
||||
=== Haml
|
||||
=== Haml Templates
|
||||
|
||||
get '/' do
|
||||
haml :index
|
||||
end
|
||||
|
||||
This will render <tt>./views/index.haml</tt>
|
||||
Renders <tt>./views/index.haml</tt>.
|
||||
|
||||
=== Erb
|
||||
|
||||
get '/' do
|
||||
erb :index
|
||||
end
|
||||
|
||||
Renders <tt>./views/index.erb</tt>
|
||||
|
||||
=== Builder
|
||||
|
||||
See Sinatra::Builder
|
||||
|
||||
=== Sass
|
||||
|
||||
get '/stylesheet.css' do
|
||||
content_type 'text/css', :charset => 'utf-8'
|
||||
sass :stylesheet
|
||||
end
|
||||
|
||||
This will render <tt>./views/stylesheet.sass</tt>
|
||||
Renders <tt>./views/stylesheet.sass</tt>.
|
||||
|
||||
=== Inline
|
||||
=== Inline Templates
|
||||
|
||||
get '/' do
|
||||
haml '%div.title Hello World'
|
||||
end
|
||||
|
||||
This will render the inlined template string
|
||||
Renders the inlined template string.
|
||||
|
||||
=== Accessing Variables
|
||||
|
||||
Templates are rendered in the context the current Sinatra::EventContext. This means you get all instance/class variables and methods it has access to.
|
||||
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:
|
||||
|
||||
get '/:id' do
|
||||
@foo = Foo.find(params[:id])
|
||||
haml '%h1== @foo.name'
|
||||
end
|
||||
|
||||
Send local objects like:
|
||||
Or, specify an explicit Hash of local variables:
|
||||
|
||||
get '/:id' do
|
||||
localvar = Foo.find(params[:id])
|
||||
haml '%h1== localvar.name', :locals => { :localvar => localvar }
|
||||
foo = Foo.find(params[:id])
|
||||
haml '%h1== foo.name', :locals => { :foo => foo }
|
||||
end
|
||||
|
||||
This is more ideal for rendering templates as partials from within templates
|
||||
This is typically used when rendering templates as partials from within
|
||||
other templates.
|
||||
|
||||
== In file templates
|
||||
=== In-file Templates
|
||||
|
||||
This one is cool:
|
||||
Templates may be defined at the end of the source file:
|
||||
|
||||
get '/' do
|
||||
haml :index
|
||||
|
@ -158,9 +173,7 @@ This one is cool:
|
|||
@@ index
|
||||
%div.title Hello world!!!!!
|
||||
|
||||
Try it!
|
||||
|
||||
= You can do this too but it's not as cool
|
||||
It's also possible to define named templates using the
|
||||
|
||||
template :layout do
|
||||
"X\n=yield\nX"
|
||||
|
@ -174,57 +187,41 @@ Try it!
|
|||
haml :index
|
||||
end
|
||||
|
||||
=== Erb
|
||||
== Helpers
|
||||
|
||||
This works like Haml except you use <tt>erb</tt> instead of <tt>haml</tt>
|
||||
|
||||
=== Sass
|
||||
|
||||
This works like Haml except you use <tt>sass</tt> instead of <tt>haml</tt>. It's also a good idea to add <tt>content_type 'text/css', :charset => 'utf-8'</tt> before your call to <tt>sass</tt> so Sinatra returns the proper content type header with the file.
|
||||
|
||||
=== Builder
|
||||
|
||||
See Sinatra::Builder
|
||||
|
||||
= Helpers
|
||||
|
||||
It is ill-advised to create helpers on (main). Use the handy <tt>helpers</tt> to install helper methods on Sinatra::EventContext for use inside events and templates.
|
||||
|
||||
Example:
|
||||
The top-level <tt>helpers</tt> method takes a block and extends all
|
||||
EventContext instances with the methods defined:
|
||||
|
||||
helpers do
|
||||
|
||||
def bar(name)
|
||||
"#{name}bar"
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
get '/:name' do
|
||||
bar(params[:name])
|
||||
end
|
||||
|
||||
= Before filters
|
||||
== Filters
|
||||
|
||||
These are run in Sinatra::EventContext
|
||||
These are run in Sinatra::EventContext before every event.
|
||||
|
||||
before do
|
||||
.. this code will run before each event ..
|
||||
end
|
||||
|
||||
= Halt!
|
||||
== Halt!
|
||||
|
||||
To immediately stop a request during a before filter or event use:
|
||||
|
||||
throw :halt
|
||||
|
||||
=== Variations
|
||||
|
||||
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
|
||||
Set the body to the result of a helper method after sending it parameters from
|
||||
the local scope
|
||||
|
||||
throw :halt, [:helper_method, foo, bar]
|
||||
|
||||
|
@ -240,7 +237,8 @@ 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
|
||||
Run a proc inside the Sinatra::EventContext instance and set the body to the
|
||||
result
|
||||
|
||||
throw :halt, lambda { puts 'In a proc!'; 'I just wrote to $stdout!' }
|
||||
|
||||
|
@ -256,11 +254,15 @@ Create you own to_result
|
|||
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.
|
||||
Get the gist? If you want more fun with this then checkout <tt>to_result</tt>
|
||||
on Array, Symbol, Fixnum, NilClass.
|
||||
|
||||
= Configuration & Re-loading
|
||||
== Configuration and Reloading
|
||||
|
||||
Sinatra supports multiple environments and re-loading. Re-loading happens on every request when in :development. Wrap your configurations in <tt>configure</tt> (i.e. Database connections, Constants, etc.) to protect them from re-loading and to only work in certain environments.
|
||||
Sinatra supports multiple environments and re-loading. Re-loading happens on
|
||||
every request when in :development. Wrap your configurations in
|
||||
<tt>configure</tt> (i.e. Database connections, Constants, etc.) to protect
|
||||
them from re-loading and to only work in certain environments.
|
||||
|
||||
All environments:
|
||||
|
||||
|
@ -284,9 +286,10 @@ This is also really nifty for error handling.
|
|||
|
||||
= Error handling
|
||||
|
||||
=== Not Found
|
||||
== Not Found
|
||||
|
||||
Remember: These are run inside the Sinatra::EventContext which means you get all the goodies is has to offer (i.e. haml, erb, :halt, etc.)
|
||||
Remember: These are run inside the Sinatra::EventContext which means you get
|
||||
all the goodies is has to offer (i.e. haml, erb, :halt, etc.)
|
||||
|
||||
Whenever NotFound is raised this will be called
|
||||
|
||||
|
@ -294,7 +297,7 @@ Whenever NotFound is raised this will be called
|
|||
'This is nowhere to be found'
|
||||
end
|
||||
|
||||
=== Error
|
||||
== Error
|
||||
|
||||
By default +error+ will catch Sinatra::ServerError
|
||||
|
||||
|
@ -326,10 +329,9 @@ one guess what this does ;)
|
|||
'I have no clue what you're looking for'
|
||||
end
|
||||
|
||||
Try it!
|
||||
|
||||
|
||||
Because Sinatra give you a default <tt>not_found</tt> and <tt>error</tt> do :production that are secure. If you want to customize only for :production but want to keep the friendly helper screens for :development then do this:
|
||||
Because Sinatra gives you a default <tt>not_found</tt> and <tt>error</tt> do
|
||||
:production that are secure. If you want to customize only for :production
|
||||
but want to keep the friendly helper screens for :development then do this:
|
||||
|
||||
configure :production do
|
||||
|
||||
|
@ -343,17 +345,26 @@ Because Sinatra give you a default <tt>not_found</tt> and <tt>error</tt> do :pro
|
|||
|
||||
end
|
||||
|
||||
= Mime types
|
||||
== Mime types
|
||||
|
||||
When using send_file or static files you may have mime types Sinatra doesn't understand. Use +mime+ in those cases.
|
||||
When using send_file or static files you may have mime types Sinatra doesn't
|
||||
understand. Use +mime+ in those cases.
|
||||
|
||||
mime :foo, 'text/foo'
|
||||
|
||||
= Using Rack Middleware
|
||||
== 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. What's more, middleware is portable between web frameworks, so middleware components developed under, e.g., Merb, can be used with Sinatra and vice versa.
|
||||
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.
|
||||
What's more, middleware is portable between web frameworks, so middleware
|
||||
components developed under, e.g., Merb, can be used with Sinatra and vice
|
||||
versa.
|
||||
|
||||
Sinatra makes building Rack middleware pipelines a cinch via a top-level +use+ method:
|
||||
Sinatra makes building Rack middleware pipelines a cinch via a top-level +use+
|
||||
method:
|
||||
|
||||
require 'sinatra'
|
||||
require 'my_custom_middleware'
|
||||
|
@ -365,15 +376,21 @@ Sinatra makes building Rack middleware pipelines a cinch via a top-level +use+ m
|
|||
'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:
|
||||
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.
|
||||
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
|
||||
== Testing
|
||||
|
||||
=== Methods
|
||||
|
||||
|
@ -410,7 +427,7 @@ also works with:
|
|||
|
||||
end
|
||||
|
||||
=== Test/Spec
|
||||
=== Specs
|
||||
|
||||
require 'my_sinatra_app'
|
||||
require 'sinatra/test/spec'
|
||||
|
@ -426,15 +443,11 @@ also works with:
|
|||
|
||||
end
|
||||
|
||||
== Test helpers
|
||||
=== Test Helpers
|
||||
|
||||
See Sinatra::Test::Methods
|
||||
|
||||
= Irb
|
||||
|
||||
This will be back in soon
|
||||
|
||||
= Command line
|
||||
== Command line
|
||||
|
||||
Run your sinatra file like:
|
||||
|
||||
|
@ -447,18 +460,18 @@ Options are:
|
|||
-e # set the environment (default is development)
|
||||
-x # turn on the mutex lock (default is off)
|
||||
|
||||
= Contribute
|
||||
== Contribute
|
||||
|
||||
cd where/you/keep/your/projects
|
||||
git clone git://github.com/bmizerany/sinatra.git
|
||||
cd your_project
|
||||
ln -s ../sinatra/
|
||||
|
||||
at the top of your sinatra.rb file
|
||||
At the top of your sinatra.rb file:
|
||||
|
||||
$:.unshift File.dirname(__FILE__) + '/sinatra/lib'
|
||||
require 'sinatra'
|
||||
|
||||
get '/about' do
|
||||
"I'm running on Version " + Sinatra::Version.combined
|
||||
"I'm running on Version " + Sinatra::VERSION
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue