From d36e6fb986537fe0891416250c3740d67a3f4fb6 Mon Sep 17 00:00:00 2001 From: Chris Baker Date: Thu, 2 May 2013 16:45:04 -0700 Subject: [PATCH] cleanup rakefile --- Rakefile | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Rakefile b/Rakefile index 1e96347..b9f6b7f 100644 --- a/Rakefile +++ b/Rakefile @@ -28,19 +28,4 @@ RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end -RSpec::Core::RakeTask.new(:rcov) do |spec| - spec.pattern = 'spec/**/*_spec.rb' - spec.rcov = true -end - task :default => :spec - -require 'rake/rdoctask' -Rake::RDocTask.new do |rdoc| - version = File.exist?('VERSION') ? File.read('VERSION') : "" - - rdoc.rdoc_dir = 'rdoc' - rdoc.title = "attr_enumerator #{version}" - rdoc.rdoc_files.include('README*') - rdoc.rdoc_files.include('lib/**/*.rb') -end