apache-config-generator/Rakefile

23 lines
376 B
Ruby
Raw Normal View History

2010-10-26 14:24:45 +00:00
require 'rubygems'
require 'bundler'
Bundler.require(:default)
2010-04-27 20:11:47 +00:00
$LOAD_PATH << 'lib'
2010-09-15 22:05:34 +00:00
require 'yaml'
2010-11-29 23:48:52 +00:00
require 'apache/config'
2010-04-27 20:11:47 +00:00
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
2010-05-04 15:48:59 +00:00
2010-05-18 16:43:57 +00:00
task :reek do
2010-05-18 21:43:23 +00:00
system('reek -c config/config.reek lib/*')
2010-05-18 16:43:57 +00:00
end