Fixed install error with rdoc.gemspec

"lib/rdoc" is only workds on rdoc repository structure.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59848 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2017-09-12 05:19:20 +00:00
Родитель 997f230c29
Коммит c08f7b8088
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,4 +1,10 @@
require_relative "lib/rdoc"
# -*- encoding: utf-8 -*-
begin
require_relative "lib/rdoc"
rescue LoadError
# for Ruby repository
require_relative "../rdoc"
end
Gem::Specification.new do |s|
s.name = "rdoc"