##// END OF EJS Templates
remove trailing white-spaces from lib/tasks/migrate_from_mantis.rake...
remove trailing white-spaces from lib/tasks/migrate_from_mantis.rake git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9584 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9346:5e57a1a9d947
r9401:6a1a4e006d0b
Show More
tmail.rb
20 lines | 520 B | text/x-ruby | RubyLexer
$:.unshift "#{File.dirname(__FILE__)}/tmail-1.2.7"
require 'tmail'
module TMail
# TMail::Unquoter.convert_to_with_fallback_on_iso_8859_1 introduced in TMail 1.2.7
# triggers a test failure in test_add_issue_with_japanese_keywords(MailHandlerTest)
class Unquoter
class << self
alias_method :convert_to, :convert_to_without_fallback_on_iso_8859_1
end
end
# Patch for TMail 1.2.7. See http://www.redmine.org/issues/8751
class Encoder
def puts_meta(str)
add_text str
end
end
end