diff options
author | Dorian MariƩ <[email protected]> | 2020-07-07 23:50:37 +0200 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-01-24 16:46:11 +0900 |
commit | 68e7dc532d8c658050fa513bbf6c80126832b070 (patch) | |
tree | 8bc0b3cd435d4003e1d45a87747491e3aa7f91bb /lib/rdoc/rdoc.gemspec | |
parent | 1bd27a78827109f85357f80827a9975fae9bb2a5 (diff) |
[ruby/rdoc] Fix failing test by adding gettext as a development dependency
The failing test was:
========================================================================================
rdoc/test/rdoc/test_rdoc_i18n_locale.rb:35:in `rescue in test_load_existent_po'
Omission: gettext gem is not found [test_load_existent_po(TestRDocI18nLocale)]
========================================================================================
https://github.com/ruby/rdoc/commit/e5f85839e1
Diffstat (limited to 'lib/rdoc/rdoc.gemspec')
-rw-r--r-- | lib/rdoc/rdoc.gemspec | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/rdoc/rdoc.gemspec b/lib/rdoc/rdoc.gemspec index fd222d47e0..6146e09bb6 100644 --- a/lib/rdoc/rdoc.gemspec +++ b/lib/rdoc/rdoc.gemspec @@ -243,4 +243,6 @@ RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentat s.required_ruby_version = Gem::Requirement.new(">= 2.4.0") s.required_rubygems_version = Gem::Requirement.new(">= 2.2") + + s.add_development_dependency("gettext") end |