apache-config-generator/Rakefile

13 lines
225 B
Ruby
Raw Normal View History

2010-04-27 20:11:47 +00:00
$LOAD_PATH << 'lib'
require 'apache'
namespace :apache do
desc "Generate the configs"
task :generate, :path do |t, args|
Dir[File.join(args[:path], '**', '*.rb')].each do |file|
require file
end
end
end