aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJun Aruga <jaruga@redhat.com>2023-04-21 18:27:33 +0200
committerJun Aruga <jaruga@redhat.com>2023-04-21 18:27:33 +0200
commit4312b072fb02d5f16074493757caa3824eca64a5 (patch)
tree10157f96d707e313caf8d5d1eb9ded0187c12a9c
parent6182ac07821b3a8c6267ca9c31d3bf3f09485e70 (diff)
downloadruby-openssl-4312b072fb02d5f16074493757caa3824eca64a5.tar.gz
Add rdoc as a development dependency.
There is a case of the Ruby where the rdoc is not a default gem. That is Ruby RPM packages on Fedora Linux and the downstream Linux. The intention is to reduce the size of the package.
-rw-r--r--Gemfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 89c37972..d3c15638 100644
--- a/Gemfile
+++ b/Gemfile
@@ -6,4 +6,6 @@ group :development do
gem "rake"
gem "rake-compiler"
gem "test-unit", "~> 3.0", ">= 3.4.6"
+ # In the case of Ruby whose rdoc is not a default gem.
+ gem "rdoc"
end