apache-config-generator/lib/apache/directory.rb
2010-05-05 12:25:07 -04:00

12 lines
211 B
Ruby

module Apache
module Directories
def options(*opt)
self << "Options #{apachify(opt) * " "}"
end
def index_options(*opt)
self << "IndexOptions #{apachify(opt) * " "}"
end
end
end