class Phlex::SGML
def format_object(object)
-
(String)
-
Other tags:
- Abstract: - Override to define your own format handling for different object types. Please remember to call `super` in the case that the passed object doesn't match, so that object formatting can be added at different layers of the inheritance tree.
def format_object(object) case object when Float, Integer object.to_s end end