diff options
author | aycabta <[email protected]> | 2021-08-09 20:37:49 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2021-08-10 02:36:00 +0900 |
commit | d8eeee97ce162aff42a05f36a459074b9f61e11c (patch) | |
tree | 88ea9888c20f4f882cfbb678bed25afc47e966b4 | |
parent | 638c72e162f1a478578c61bbbdf643e66058f62f (diff) |
[ruby/rdoc] Move dev dependency of gettext to Gemfile
https://github.com/ruby/rdoc/commit/a177377b6f
-rw-r--r-- | lib/rdoc/Gemfile | 1 | ||||
-rw-r--r-- | lib/rdoc/rdoc.gemspec | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/lib/rdoc/Gemfile b/lib/rdoc/Gemfile index 83a4863794..9d3931c653 100644 --- a/lib/rdoc/Gemfile +++ b/lib/rdoc/Gemfile @@ -9,4 +9,5 @@ group :development do gem 'test-unit' gem 'minitest' # for test_rdoc_rubygems_hook.rb gem 'rubocop' + gem 'gettext' end diff --git a/lib/rdoc/rdoc.gemspec b/lib/rdoc/rdoc.gemspec index 75f8534b9e..525a15fcde 100644 --- a/lib/rdoc/rdoc.gemspec +++ b/lib/rdoc/rdoc.gemspec @@ -246,5 +246,4 @@ RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentat s.required_rubygems_version = Gem::Requirement.new(">= 2.2") s.add_dependency 'psych', '>= 4.0.0' - s.add_development_dependency("gettext") end |