class Sinatra::Base

def initialize(app = nil, **kwargs)

def initialize(app = nil, **kwargs)
  super()
  @app = app
  @template_cache = Tilt::Cache.new
  @pinned_response = nil # whether a before! filter pinned the content-type
  yield self if block_given?
end