mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 09:40:13 +01:00
15 lines
304 B
Ruby
15 lines
304 B
Ruby
|
|
# 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
|