Sha256: e337c44173b453d7ba3151bc029fdd8dee2d0bd1635261daa1c8d10e760b0918
Contents?: true
Size: 935 Bytes
Versions: 94
Compression:
Stored size: 935 Bytes
Contents
## # A section of verbatim text class RDoc::Markup::Verbatim < RDoc::Markup::Raw ## # Format of this verbatim section attr_accessor :format def initialize *parts # :nodoc: super @format = nil end ## # Calls #accept_verbatim on +visitor+ def accept visitor visitor.accept_verbatim self end ## # Collapses 3+ newlines into two newlines def normalize parts = [] newlines = 0 @parts.each do |part| case part when /^\s*\n/ then newlines += 1 parts << part if newlines == 1 else newlines = 0 parts << part end end parts.pop if parts.last =~ /\A\r?\n\z/ @parts = parts end ## # Is this verbatim section ruby code? def ruby? @format ||= nil # TODO for older ri data, switch the tree to marshal_dump @format == :ruby end ## # The text of the section def text @parts.join end end
Version data entries
94 entries across 74 versions & 20 rubygems