Sha256: 3434b1fb4d4e83b54e65ca420a2e42ca0f008fe634278b78bd1bcbd5ee120f84
Contents?: true
Size: 470 Bytes
Versions: 1
Compression:
Stored size: 470 Bytes
Contents
require 'chunky_png' module OilyPNG VERSION = "1.1.0" def self.included(base) base::Canvas.send(:extend, OilyPNG::PNGDecoding) base::Canvas.send(:include, OilyPNG::PNGEncoding) base::Color.send(:include, OilyPNG::Color) base::Color.extend OilyPNG::Color base::Canvas.send(:include, OilyPNG::Resampling) end end require 'oily_png/oily_png' require 'oily_png/canvas' # Include mixin into ChunkyPNG ChunkyPNG.send(:include, OilyPNG)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
oily_png-1.1.0 | lib/oily_png.rb |