We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
validate uses String#each, which was removed from Ruby 1.9. So the library doesn't work if you're on 1.9 without the following preamble:
class String alias :each :each_line end