Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,11 @@ bundler/lib/bundler/version.rb
bundler/lib/bundler/vlad.rb
bundler/lib/bundler/worker.rb
bundler/lib/bundler/yaml_serializer.rb
doc/MAINTAINERS.txt
doc/bundler/UPGRADING.md
doc/rubygems/CONTRIBUTING.md
doc/rubygems/POLICIES.md
doc/rubygems/UPGRADING.md
exe/gem
exe/update_rubygems
hide_lib_for_update/note.txt
Expand Down
9 changes: 9 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,15 @@ module Rubygems
files << path
end

# Restore important documents
%w[
doc/MAINTAINERS.txt
doc/bundler/UPGRADING.md
doc/rubygems/CONTRIBUTING.md
doc/rubygems/POLICIES.md
doc/rubygems/UPGRADING.md
].each {|f| files << f }

files.sort
end
end
Expand Down
5 changes: 4 additions & 1 deletion rubygems-update.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ Gem::Specification.new do |s|
s.require_paths = ["hide_lib_for_update"]
s.rdoc_options = ["--main", "README.md", "--title=RubyGems Update Documentation"]
s.extra_rdoc_files = [
"LICENSE.txt", "MIT.txt", "Manifest.txt", "README.md", "CODE_OF_CONDUCT.md",
"LICENSE.txt", "doc/MAINTAINERS.txt",
"MIT.txt", "Manifest.txt", "README.md",
"doc/rubygems/UPGRADING.md", "doc/rubygems/POLICIES.md", "CODE_OF_CONDUCT.md",
"doc/rubygems/CONTRIBUTING.md",
"bundler/LICENSE.md", "bundler/README.md",
"hide_lib_for_update/note.txt", *Dir["bundler/lib/bundler/man/*.1", base: __dir__]
]
Expand Down