Sha256: 301cb74686a26f745dfde0ca604078d12fa73113ae3780ac0adccb55ea929d1f
Contents?: true
Size: 412 Bytes
Versions: 42
Compression:
Stored size: 412 Bytes
Contents
class NSColor def to_s return super unless self.respond_to?(:alpha) alpha_s = ((alpha || 1) < 1 ? "(#{alpha})" : '') if system_name return "NSColor.#{system_name}#{alpha_s.length > 0 ? '.colorWithAlphaComponent' + alpha_s : ''}" elsif css_name return ":#{css_name}.nscolor#{alpha_s}" elsif hex return "'#{hex}'.nscolor#{alpha_s}" else super end end end
Version data entries
42 entries across 42 versions & 1 rubygems