class Sinatra::Base

def enable(*opts)

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