v. 3.0.0
- created, ignoring all previous incarnations of the rules, from draft of an email
v 3.0.1
- Clarifications
| module EventMachine | |
| module WebSocket | |
| class MaskedString < String | |
| def read_mask | |
| raise "Too short" if bytesize < 4 # TODO - change | |
| @masking_key = String.new(self[0..3]) | |
| end |