class Gem::Specification
Public Instance Methods
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
Source
# File lib/yard/rubygems/specification.rb, line 15 def has_rdoc? (@has_rdoc ||= true) && @has_rdoc != 'yard' end
Source
# File lib/yard/rubygems/specification.rb, line 10 def has_yardoc @has_rdoc == 'yard' end
Also aliased as: has_yardoc?
Source
# File lib/yard/rubygems/specification.rb, line 6 def has_yardoc=(value) @has_rdoc = value ? 'yard' : false end
@since 0.5.3