Skip to content

Commit

Permalink
Remove has_rdoc from gemspec
Browse files Browse the repository at this point in the history
Gem specification attribute #has_rdoc is deprecated and ignored.
According to deprecation warning, it may be removed "on or after
2018-12-01" with no replacement.

This attribute used to describe whether RDoc can be generated for given
gem or not.  According to RubyGems v1.3.3 release notes, "RDoc is now
generated regardless of Gem::Specification#has_rdoc?".

See:
- https://blog.rubygems.org/2009/05/04/1.3.3-released.html
  • Loading branch information
skalee authored and ueno committed Mar 23, 2019
1 parent c9e924f commit cf693f2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion gpgme.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ Gem::Specification.new do |s|
s.extensions = ['ext/gpgme/extconf.rb']
s.files = Dir['{lib,ext,test,examples}/**/*'] +
Dir['ports/archives/*']
s.has_rdoc = true
s.rubyforge_project = 'ruby-gpgme'
s.homepage = 'http://github.com/ueno/ruby-gpgme'
s.license = 'LGPL-2.1+'
Expand Down

0 comments on commit cf693f2

Please sign in to comment.