diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-22 12:08:13 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-22 12:08:13 +0000 |
commit | 145433d9a54856ec633220755f089a7e78fb28ce (patch) | |
tree | 303b591d7ceea9f3adabb5493aeecf9f641e6ec1 /lib/rdoc.rb | |
parent | 618035b5317ebcb3484b9e7b371a305d763c558a (diff) |
* lib/rdoc.rb: bump version to 4.2.1. It contains following fixes.
https://github.com/rdoc/rdoc/pull/340
https://github.com/rdoc/rdoc/pull/341
https://github.com/rdoc/rdoc/pull/367
https://github.com/rdoc/rdoc/pull/368
* lib/rdoc/*: ditto.
* test/rdoc/*: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc.rb')
-rw-r--r-- | lib/rdoc.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/rdoc.rb b/lib/rdoc.rb index bdd3b06e2a..d6e26114c0 100644 --- a/lib/rdoc.rb +++ b/lib/rdoc.rb @@ -65,7 +65,7 @@ module RDoc ## # RDoc version you are using - VERSION = '4.2.0' + VERSION = '4.2.1' ## # Method visibilities @@ -110,6 +110,8 @@ module RDoc def self.load_yaml begin gem 'psych' + rescue NameError => e # --disable-gems + raise unless e.name == :gem rescue Gem::LoadError end |