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
When running webby-gen under Ruby 1.9.1 an invalid multibyte character in the String extensions file will potentially produce an encoding error.
webby-gen
webby-0.9.4/lib/webby.rb:104:in `require': gems/ruby-1.9.1-p378/gems/webby-0.9.4/lib/webby/core_ext/string.rb:15: invalid multibyte char (US-ASCII) (SyntaxError)
webby-0.9.4/lib/webby/core_ext/string.rb:15: invalid multibyte char (US-ASCII)
This can be fixed by simply specifying UTF-8 encoding throughout the string extensions file using something like…
# encoding: utf-8
Maybe this fix could be added to master?
The text was updated successfully, but these errors were encountered:
Thanks for that. I can run the specs now under 1.9.1 but there are three failures due to the core extension to Hash.
Sorry, something went wrong.
No branches or pull requests
When running
webby-gen
under Ruby 1.9.1 an invalid multibyte character in the String extensions file will potentially produce an encoding error.webby-0.9.4/lib/webby/core_ext/string.rb:15: invalid multibyte char (US-ASCII)
This can be fixed by simply specifying UTF-8 encoding throughout the string extensions file using something like…
Maybe this fix could be added to master?
The text was updated successfully, but these errors were encountered: