module Hermes

hermes/cli/pop.rb – POP client

Overview

This library provides classes for generating and parsing mail, HTML and CSS. Further, it is a CGI library.

Constants

AUTHORS
Colour

Generate HTML color values.

Examples

red = Color.new 0xff, 0, 0
black = Color.grey 0
red.to_s                           #=> "#ff0000"
red.to_fract                       #=> [ 1.0, 0.0, 0.0]

(Color.new 0xff, 0, 0).to_hsv      #=> [0.0, 1.0, 1.0]
(Color.new 0, 0xff, 0).to_hsv      #=> [120.0, 1.0, 1.0]
(Color.new 0, 0x7f, 0x7f).to_hsv   #=> [180.0, 1.0, 0.49804]
(Color.new 0, 0x80, 0x80).to_hsv   #=> [180.0, 1.0, 0.50196]
(Color.from_hsv 180, 1, 0.5).to_s  #=> "#007f7f"
DESCRIPTION
ENCODING
HOMEPAGE
LICENSE
MAIL
NAME
SUMMARY
VERSION