diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-10-20 14:54:34 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-10-20 14:55:01 -0700 |
commit | bbb1c7c9d857ca367f7ddf9b6d803b2cbc8b2e0a (patch) | |
tree | 96d150b157e50973bf56f4acfc0ffa228e7ea505 /Rakefile | |
parent | e005d9b85d4bad73ad4a71e007fd8ece0734b9b3 (diff) | |
download | chef-bbb1c7c9d857ca367f7ddf9b6d803b2cbc8b2e0a.tar.gz |
Remove the announcement rake task + minor task updates
- The rake task to generate the announcement no longer works because our release notes file contains all the release notes. We're going to need some automation in the future for this, but this isn't it.
- Convert the docs task from .to_yml to YAML.dump
- Improve the component rake task description
- Nuke another copyright data range
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,7 +1,7 @@ # # Author:: Adam Jacob (<adam@chef.io>) # Author:: Daniel DeLeo (<dan@chef.io>) -# Copyright:: Copyright 2008-2019, Chef Software Inc. +# Copyright:: Copyright, Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -23,7 +23,6 @@ $LOAD_PATH.unshift(File.expand_path("chef-config/lib", __dir__)) begin require_relative "tasks/rspec" require_relative "tasks/dependencies" - require_relative "tasks/announce" require_relative "tasks/docs" require_relative "tasks/spellcheck" require_relative "chef-utils/lib/chef-utils/dist" unless defined?(ChefUtils::Dist) |