Method: Color::Palette::AdobeColor.from_io

Defined in:
lib/color/palette/adobecolor.rb

.from_io(io) ⇒ Object

Create an AdobeColor palette object from the provided IO.

[View source]

30
31
32
# File 'lib/color/palette/adobecolor.rb', line 30

def from_io(io)
  Color::Palette::AdobeColor.new(io.read)
end