class Id3::V1::Tag
- Id3::V1::Tag
- Reference
- Object
Defined in:
id3/v1.crConstructors
Instance Method Summary
- #album : String | Nil
- #artist : String | Nil
- #comment : String | Nil
- #genre : Genre | Nil
-
#pretty_print(pp : PrettyPrint)
Pretty prints
self
into the given printer. - #title : String | Nil
- #to_tuple
- #track : String | Nil
- #version : Int32
- #year : String | Nil
Constructor Detail
def self.new(version : Int32, title : Nil | String, artist : Nil | String, album : Nil | String, year : Nil | String, comment : Nil | String, track : Nil | String, genre : Id3::V1::Genre | Nil)
#
Instance Method Detail
def pretty_print(pp : PrettyPrint)
#
Description copied from class Object
Pretty prints self
into the given printer.
By default appends a text that is the result of invoking
#inspect
on self
. Subclasses should override
for custom pretty printing.