diff --git a/.document b/.document deleted file mode 100644 index 3d618dd..0000000 --- a/.document +++ /dev/null @@ -1,5 +0,0 @@ -lib/**/*.rb -bin/* -- -features/**/*.feature -LICENSE.txt diff --git a/Rakefile b/Rakefile index c040ac5..bd9e150 100644 --- a/Rakefile +++ b/Rakefile @@ -1,18 +1,8 @@ require "bundler/gem_tasks" require "rspec/core/rake_task" -require "rdoc/task" task :default => :spec RSpec::Core::RakeTask.new(:spec) do |t| t.verbose = false end - -RDoc::Task.new do |rdoc| - version = File.exist?('VERSION') ? File.read('VERSION') : "" - - rdoc.rdoc_dir = 'rdoc' - rdoc.title = "pagerduty #{version}" - rdoc.rdoc_files.include('README*') - rdoc.rdoc_files.include('lib/**/*.rb') -end