class Plympton::Chunk
Class responsible for parsing a YAML serialized chunk object
Attributes
blockList[RW]
YAML entries
endEA[RW]
YAML entries
numBlocks[RW]
YAML entries
startEA[RW]
YAML entries
Public Instance Methods
to_s()
click to toggle source
Convenience method for printing a chunk @return [String] A string representation of a chunk object
# File lib/plympton/chunk.rb, line 15 def to_s() "#{self.class} (#{self.__id__}):" end
to_yaml_type()
click to toggle source
Defines the objects YAML tag @return [String] A string signifying the start of an object of this class
# File lib/plympton/chunk.rb, line 9 def to_yaml_type "!fuzz.io,2011/Chunk" end