Sha256: 546eb281b89eb9a4eef97446e286b74f6edc71082a680247d8905dee909ab5a9

Contents?: true

Size: 351 Bytes

Versions: 1

Compression:

Stored size: 351 Bytes

Contents

require 'chunky_png'

module OilyPNG
  
  VERSION = "1.0.0.rc1"

  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.rc1 lib/oily_png.rb