Sha256: 3591cfe44609a2f9df551764d56fe8d656d1548c5ea9d4631f48bccab40f0ca1
Contents?: true
Size: 551 Bytes
Versions: 102
Compression:
Stored size: 551 Bytes
Contents
class RDoc::Markup AttrChanger = Struct.new :turn_on, :turn_off # :nodoc: end ## # An AttrChanger records a change in attributes. It contains a bitmap of the # attributes to turn on, and a bitmap of those to turn off. class RDoc::Markup::AttrChanger def to_s # :nodoc: "Attr: +#{RDoc::Markup::Attribute.as_string turn_on}/-#{RDoc::Markup::Attribute.as_string turn_off}" end def inspect # :nodoc: "+%s/-%s" % [ RDoc::Markup::Attribute.as_string(turn_on), RDoc::Markup::Attribute.as_string(turn_off), ] end end
Version data entries
102 entries across 80 versions & 20 rubygems