Turn a tuple of rgb colors into its corresponding hexadecimal color value!
gem install rgb_to_hex_color
require 'rgb_to_hex_color'
rgb_to_hex_color = RgbToHexColor.new(170, 187, 204)
rgb_to_hex_color.rgb #=> [170, 187, 204]
rgb_to_hex_color.hex #=> '#AABBCC'
HexToRgb - Convert hex colors into rgb colors.
gem install --dev rgb_to_hex_color
The default Rake task is to run the specs.
rake
MIT