class String

def blob?

Returns:
  • (true, false) - If true, this string contains binary data. If false, its a regular string
def blob?
  @blob
end

def bytesize

def bytesize
  self.length
end