module Sinatra::RunLater

Constants

VERSION

Public Class Methods

queue() click to toggle source
# File lib/sinatra/run-later.rb, line 10
def self.queue
  @@queue
end
run_now=(run_now) click to toggle source
# File lib/sinatra/run-later.rb, line 18
def self.run_now=(run_now)
  @@run_now = run_now
end
run_now?() click to toggle source
# File lib/sinatra/run-later.rb, line 14
def self.run_now?
  @@run_now
end