From 755b9d8cb82a446984c246d3177c7bf857e19914 Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Wed, 20 Nov 2024 22:52:22 +0000 Subject: [PATCH] Add RDoc to development dependencies RDoc has started receiving more updates, especially around the default theme. By having it as a development dependency, we can use the latest theme for Prism's Ruby documentation too. --- Gemfile | 3 ++- Gemfile.lock | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index c6977319e2..7a7950b399 100644 --- a/Gemfile +++ b/Gemfile @@ -14,6 +14,7 @@ platforms :mri, :mswin, :mingw, :x64_mingw do gem "parser" gem "ruby_memcheck" gem "ruby_parser" -end + gem "rdoc" +end gem "onigmo", platforms: :ruby diff --git a/Gemfile.lock b/Gemfile.lock index a4bf9f8ffa..d6dad59c41 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -18,16 +18,21 @@ GEM ast (~> 2.4.1) racc power_assert (2.0.3) + psych (5.2.0) + stringio racc (1.8.0) rake (13.2.1) rake-compiler (1.2.7) rake + rdoc (6.8.1) + psych (>= 4.0.0) ruby_memcheck (3.0.0) nokogiri ruby_parser (3.21.0) racc (~> 1.5) sexp_processor (~> 4.16) sexp_processor (4.17.1) + stringio (3.1.2) test-unit (3.6.2) power_assert @@ -42,6 +47,7 @@ DEPENDENCIES prism! rake rake-compiler + rdoc ruby_memcheck ruby_parser test-unit