Method: FLV::FLVTag#inspect

Defined in:
lib/flv/tag.rb

#inspectObject



88
89
90
91
92
93
94
# File 'lib/flv/tag.rb', line 88

def inspect
  out = ["tag: #{self.class}"]
  out << "timestamp: #{@timestamp}"
  out << "size: #{size}"
  out << "data_size: #{data_size}"
  out
end