apache-config-generator/lib/apache/directory.rb

9 lines
156 B
Ruby
Raw Normal View History

2010-05-05 14:44:20 +00:00
module Apache
module Directories
def options(*opt)
opt = opt.collect { |o| apachify(o) }
self << "Options #{opt * " "}"
end
end
end