class BMFF::FileContainer
At first, I intended to use “refinements” mechanism to minimize the effects of monkey patch, but BMFF::BOX::Base.parse_data can't be called from anywhere. I guess there is something wrong with the inheritance relationship, but I have no idea. So I have to use bare monkey patch, sorry.
Public Instance Methods
to_s()
click to toggle source
# File lib/bmffglitch/bmffex.rb, line 8 def to_s @children.map {|box| box.to_s}.join end