Module: Sinatra

Defined in:
lib/sinatra/base.rb,
lib/sinatra/main.rb,
lib/sinatra/version.rb,
lib/sinatra/show_exceptions.rb,
lib/sinatra/indifferent_hash.rb

Defined Under Namespace

Modules: Delegator, Helpers, Templates Classes: Application, BadRequest, Base, CommonLogger, Error, ExtendedRack, IndifferentHash, NotFound, Request, Response, ShowExceptions, TemplateCache, Wrapper

Constant Summary collapse

PARAMS_CONFIG =
{}
VERSION =
'4.0.0'

Class Method Summary collapse

Class Method Details

.helpers(*extensions, &block) ⇒ Object

Include the helper modules provided in Sinatra's request context.



2136
2137
2138
# File 'lib/sinatra/base.rb', line 2136

def self.helpers(*extensions, &block)
  Delegator.target.helpers(*extensions, &block)
end

.new(base = Base, &block) ⇒ Object

Create a new Sinatra application; the block is evaluated in the class scope.



2124
2125
2126
2127
2128
# File 'lib/sinatra/base.rb', line 2124

def self.new(base = Base, &block)
  base = Class.new(base)
  base.class_eval(&block) if block_given?
  base
end

.register(*extensions, &block) ⇒ Object

Extend the top-level DSL with the modules provided.



2131
2132
2133
# File 'lib/sinatra/base.rb', line 2131

def self.register(*extensions, &block)
  Delegator.target.register(*extensions, &block)
end

.use(*args, &block) ⇒ Object

Use the middleware for classic applications.



2141
2142
2143
# File 'lib/sinatra/base.rb', line 2141

def self.use(*args, &block)
  Delegator.target.use(*args, &block)
end