-
Notifications
You must be signed in to change notification settings - Fork 941
Fix the branch 2-4-stable has errors and failure in spec #958
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
Conversation
gem "tlsmail" if RUBY_VERSION <= '1.8.6' | ||
gem "mime-types", "~> 1.16" | ||
gem "treetop", "~> 1.4.10" | ||
gem "i18n", ">= 0.4.0" | ||
gem "i18n", "~> 0.6.11" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'>= 0.4.0', '< 0.7.0'
5544acb
to
c03b7df
Compare
@@ -68,7 +68,7 @@ def Ruby19.q_value_decode(str) | |||
match = str.match(/\=\?(.+)?\?[Qq]\?(.+)?\?\=/m) | |||
if match | |||
encoding = match[1] | |||
str = Encodings::QuotedPrintable.decode(match[2].gsub(/_/, '=20')) | |||
str = Encodings::QuotedPrintable.decode(match[2].gsub(/_/, '=20').gsub(/\=$/, '')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this backporting?
Can you cherry-pick the backported commit directly, preserving the commit message, author, spec, etc?
- i18n (0.7.0) requires ruby (>= 1.9.3) - activesupport (4.0.0) requires ruby (>= 1.9.3) - rake (11.0.1) requires ruby (>= 1.9.3)
@jeremy I updated |
Closed by 2a9061c |
No description provided.