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