class BlankImage::Image::Gif
Constants
- DATA
Public Class Methods
content_type()
click to toggle source
# File lib/blank_image/image/gif.rb, line 21 def content_type 'image/gif'.freeze end
data()
click to toggle source
# File lib/blank_image/image/gif.rb, line 13 def data DATA end
to_s()
click to toggle source
# File lib/blank_image/image/gif.rb, line 17 def to_s @to_s ||= data.pack('c*') end