class ChunkyPNG::Chunk::Base

def initialize(type, attributes = {})

def initialize(type, attributes = {})
  self.type = type
  attributes.each { |k, v| send("#{k}=", v) }
end