Method: Sequel::SQL::Blob#inspect
- Defined in:
- lib/sequel/sql.rb
permalink #inspect ⇒ Object
Return a string showing that this is a blob, the size, and the some or all of the content, depending on the size.
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 |
# File 'lib/sequel/sql.rb', line 1041 def inspect size = length content = if size > 20 "start=#{self[0...10].to_s.inspect} end=#{self[-10..-1].to_s.inspect}" else "content=#{super}" end "#<#{self.class}:0x#{"%x" % object_id} bytes=#{size} #{content}>" end |