aboutsummaryrefslogblamecommitdiffstats
path: root/actionmailer/lib/action_mailer/vendor.rb
blob: 0ad7386fd8e1f0c1cc83592a839d4f0f1d9cc6df (plain) (tree)
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.1.0'
rescue Gem::LoadError
  $:.unshift "#{File.dirname(__FILE__)}/vendor/tmail-1.1.0"
end

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