Sha256: 4c419c0e5a0593d70a331556a2ca33800320421ed637c0fd6f8deb55b49d969c
Contents?: true
Size: 428 Bytes
Versions: 14
Compression:
Stored size: 428 Bytes
Contents
/* * Size utility. * * Synopsis: * * size: <width> <height> | <width & height> * * Examples: * * size: 100% 30px * yields: * width: 100% * height: 30px * * size: 5px * yields: * width: 5px * height: 5px * */ size() if length(arguments) == 1 width: arguments[0] height: arguments[0] else width: arguments[0] height: arguments[1]
Version data entries
14 entries across 14 versions & 1 rubygems