5292899c9a
Updated Instiki to Rails 2.1 RC1 (aka 2.0.991).
15 lines
304 B
Ruby
15 lines
304 B
Ruby
# Prefer gems to the bundled libs.
|
|
require 'rubygems'
|
|
|
|
begin
|
|
gem 'tmail', '~> 1.2.2'
|
|
rescue Gem::LoadError
|
|
$:.unshift "#{File.dirname(__FILE__)}/vendor/tmail-1.2.2"
|
|
end
|
|
|
|
begin
|
|
gem 'text-format', '>= 0.6.3'
|
|
rescue Gem::LoadError
|
|
$:.unshift "#{File.dirname(__FILE__)}/vendor/text-format-0.6.3"
|
|
end
|