Sha256: 70a1a51d47f1bb357e8d2b08df0b122619e3440cd2d2875406d10b7a477628ee

Contents?: true

Size: 351 Bytes

Versions: 1

Compression:

Stored size: 351 Bytes

Contents

require 'chunky_png'

module OilyPNG
  
  VERSION = "1.0.0.rc2"

  def self.included(base)
    base::Canvas.send(:extend, OilyPNG::PNGDecoding)
    base::Canvas.send(:include, OilyPNG::PNGEncoding)

    base::Color.send(:include, OilyPNG::Color)
  end
end

require 'oily_png/oily_png'

# Include mixin into ChunkyPNG
ChunkyPNG.send(:include, OilyPNG)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
oily_png-1.0.0.rc2 lib/oily_png.rb