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

17 lines
315 B
Ruby
Raw Normal View History

2010-05-05 14:44:20 +00:00
module Apache
module Directories
def options(*opt)
2010-05-07 17:56:49 +00:00
create_options_list('Options', *opt)
2010-05-05 16:25:07 +00:00
end
def index_options(*opt)
2010-05-07 17:56:49 +00:00
create_options_list('IndexOptions', *opt)
2010-05-05 14:44:20 +00:00
end
2010-05-07 17:56:49 +00:00
private
def create_options_list(tag, *opt)
self << "#{tag} #{apachify(opt) * " "}"
end
2010-05-05 14:44:20 +00:00
end
end