class Gem::Specification
Public Instance Methods
_dump_with_rdoc(limit)
click to toggle source
# File lib/yard/rubygems/specification.rb, line 30 def _dump_with_rdoc(limit) dmp = _dump_without_rdoc(limit) dmp[15] = @has_rdoc if dmp[15] == true dmp end
Also aliased as: _dump
has_rdoc?()
click to toggle source
# File lib/yard/rubygems/specification.rb, line 15 def has_rdoc? (@has_rdoc ||= true) && @has_rdoc != 'yard' end
has_yardoc()
click to toggle source
# File lib/yard/rubygems/specification.rb, line 10 def has_yardoc @has_rdoc == 'yard' end
Also aliased as: has_yardoc?
has_yardoc=(value)
click to toggle source
@since 0.5.3
# File lib/yard/rubygems/specification.rb, line 6 def has_yardoc=(value) @has_rdoc = value ? 'yard' : false end