Class: BMFF::FileContainer
- Inherits:
-
Object
- Object
- BMFF::FileContainer
- Defined in:
- lib/bmffglitch/bmffex.rb
Overview
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.
Instance Method Summary collapse
Instance Method Details
#to_s ⇒ Object
8 9 10 |
# File 'lib/bmffglitch/bmffex.rb', line 8 def to_s @children.map {|box| box.to_s}.join end |