Skip to content
New issue

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

Use of String#each breaks Ruby 1.9 #78

Closed
windlass opened this issue Sep 11, 2013 · 2 comments
Closed

Use of String#each breaks Ruby 1.9 #78

windlass opened this issue Sep 11, 2013 · 2 comments

Comments

@windlass
Copy link

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
@hoxworth
Copy link
Contributor

Can you provide a specific location or error message where String#each is used?

@pd
Copy link
Contributor

pd commented Oct 25, 2014

Since travis-ci is passing on 1.9.3 through 2.1, I'm going to close this.

@pd pd closed this as completed Oct 25, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants