summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-10-20 15:23:05 -0700
committerGitHub <noreply@github.com>2020-10-20 15:23:05 -0700
commitfc6ac9b145cc76eb9feb6865b8b77b64ba278fdc (patch)
tree902c54d73e0359d55bab5f64c99b02b68c411d3b /Rakefile
parent4c29787c5b859e02dbc7236083d515fb29686c98 (diff)
parent3da27e34f965784bb3cb297604fa24aacaedc6f8 (diff)
downloadchef-fc6ac9b145cc76eb9feb6865b8b77b64ba278fdc.tar.gz
Merge pull request #10541 from chef/nuke_yard_task
Remove the yard doc generation task / group
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/Rakefile b/Rakefile
index 20249d552e..93ec6b647f 100644
--- a/Rakefile
+++ b/Rakefile
@@ -97,15 +97,3 @@ begin
rescue LoadError
puts "chefstyle/rubocop is not available. bundle install first to make sure all dependencies are installed."
end
-
-begin
- require "yard"
- DOC_FILES = [ "spec/tiny_server.rb", "lib/**/*.rb" ].freeze
-
- YARD::Rake::YardocTask.new(:docs) do |t|
- t.files = DOC_FILES
- t.options = ["--format", "html"]
- end
-rescue LoadError
- puts "yard is not available. bundle install first to make sure all dependencies are installed."
-end