| Class | HTTP::Cookie::Scanner |
| In: |
lib/http/cookie/scanner.rb
|
| Parent: | StringScanner |
| RE_WSP | = | /[ \t]+/ | Whitespace. | |
| RE_NAME | = | /(?!#{RE_WSP})[^,;\\"=]*/ | A pattern that matches a cookie name or attribute name which may be empty, capturing trailing whitespace. | |
| RE_BAD_CHAR | = | /([\x00-\x20\x7F",;\\])/ | ||
| RE_COOKIE_COMMA | = | /,(?=#{RE_WSP}?#{RE_NAME}=)/ | A pattern that matches the comma in a (typically date) value. |