We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Can you provide a specific location or error message where String#each is used?
String#each
Sorry, something went wrong.
Since travis-ci is passing on 1.9.3 through 2.1, I'm going to close this.
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: