From 5aff1af960391d1e314498238058d016c849fea9 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Mon, 29 Nov 2010 18:48:17 -0500 Subject: [PATCH] update a few things --- Gemfile.lock | 2 +- Rakefile | 11 ----------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 88ca75c..21bd936 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - apache-config-generator (0.2.5.2) + apache-config-generator (0.2.6) rainbow GEM diff --git a/Rakefile b/Rakefile index 60f8771..6a4c576 100644 --- a/Rakefile +++ b/Rakefile @@ -8,7 +8,6 @@ $LOAD_PATH << 'lib' require 'yaml' require 'apache' -require 'rspec/core/rake_task' namespace :apache do desc "Generate the configs" @@ -19,16 +18,6 @@ namespace :apache do end end -namespace :spec do - desc "Run RCov tests" - RSpec::Core::RakeTask.new(:rcov) do |t| - t.pattern = 'spec/*.rb' - t.rcov = true - t.rcov_opts = ['--exclude', 'spec', '--exclude', 'gems'] - t.rspec_opts = ['-b'] - end -end - task :reek do system('reek -c config/config.reek lib/*') end