Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Comment about a RUBY BUG (!!!) code limitation
Here is the bug in action: 60.chr # => "<" 60.chr =~ /[[:punct:]]/ # => 0 "<" =~ /[[:punct:]]/ # => nil (wtf!!) It seems that certain string "literals* are not matched by the /[[:punct:]]/ POSIX group, that should be!
- Loading branch information