# File lib/yard/rubygems/specification.rb, line 29 def _dump_with_rdoc(limit) dmp = _dump_without_rdoc(limit) dmp[15] = @has_rdoc if dmp[15] == true dmp end
# File lib/yard/rubygems/specification.rb, line 14 def has_rdoc? (@has_rdoc ||= true) && @has_rdoc != 'yard' end
# File lib/yard/rubygems/specification.rb, line 9 def has_yardoc @has_rdoc == 'yard' end
@since 0.5.3
# File lib/yard/rubygems/specification.rb, line 5 def has_yardoc=(value) @has_rdoc = value ? 'yard' : false end