module Pigment::Palette::RGB
Constants
- DEFAULT
Private Class Methods
method_missing(method, *args)
click to toggle source
Calls superclass method
# File lib/pigment/default_rgb_palette.rb, line 884 def method_missing(method, *args) super unless DEFAULT.respond_to?(method) || DEFAULT.names.include?(method) DEFAULT.public_send(method, *args) end