aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/vendor.rb
blob: 7a20e9bd6e1c9fab8a0baffe4ea01e9996547a37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Prefer gems to the bundled libs.
require 'rubygems'

begin
  gem 'tmail', '~> 1.2.3'
rescue Gem::LoadError
  $:.unshift "#{File.dirname(__FILE__)}/vendor/tmail-1.2.3"
end

begin
  gem 'text-format', '>= 0.6.3'
rescue Gem::LoadError
  $:.unshift "#{File.dirname(__FILE__)}/vendor/text-format-0.6.3"
end