class Sinatra::Base

def disable(*opts)

Same as calling `set :option, false` for each of the given options.
def disable(*opts)
  opts.each { |key| set(key, false) }
end