class Sinatra::Helpers::Stream::Wrapper
Public Class Methods
new(stack, instance)
click to toggle source
# File lib/sinatra/base.rb 1942 def initialize(stack, instance) 1943 @stack, @instance = stack, instance 1944 end
Public Instance Methods
call(env)
click to toggle source
# File lib/sinatra/base.rb 1954 def call(env) 1955 @stack.call(env) 1956 end
helpers()
click to toggle source
# File lib/sinatra/base.rb 1950 def helpers 1951 @instance 1952 end
inspect()
click to toggle source
# File lib/sinatra/base.rb 1958 def inspect 1959 "#<#{@instance.class} app_file=#{settings.app_file.inspect}>" 1960 end
settings()
click to toggle source
# File lib/sinatra/base.rb 1946 def settings 1947 @instance.settings 1948 end