mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
17 lines
274 B
Ruby
17 lines
274 B
Ruby
# Prefer gems to the bundled libs.
|
|
require 'rubygems'
|
|
|
|
begin
|
|
gem 'tmail', '~> 1.2.3'
|
|
rescue Gem::LoadError
|
|
$:.unshift "#{File.dirname(__FILE__)}/tmail-1.2.3"
|
|
end
|
|
|
|
module TMail
|
|
end
|
|
|
|
require 'tmail'
|
|
|
|
silence_warnings do
|
|
TMail::Encoder.const_set("MAX_LINE_LEN", 200)
|
|
end
|