Actions
Patch #29999
closedUpdate rdoc gem
Description
Redmine uses rdoc gem 4.3.0 that was released 2 years ago. According to the commit log of r15945, this is because the newer versions of rdoc requires RubyGems 2.2 which is too high for Redmine at that time.
But now, the current trunk requires Ruby >=2.2, so we can assume that the version of RubyGems is at least 2.4.5. We can update RubyGems to the latest version.
Index: Gemfile
===================================================================
--- Gemfile (revision 17629)
+++ Gemfile (working copy)
@@ -79,7 +79,7 @@
end
group :development do
- gem "rdoc", "~> 4.3"
+ gem "rdoc"
gem "yard"
end
Related issues
Updated by Go MAEDA almost 6 years ago
- Related to Feature #25538: Drop support for Ruby 2.2.1 and ealier, 2.2.2+ is now required added
Updated by Go MAEDA almost 6 years ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
Committed.
Updated by Go MAEDA almost 6 years ago
- Target version changed from 4.1.0 to 4.0.0
Actions