выпилять работу более старых версий rails можно путем добавления в environment.rb следующего
сразу после
require File.join(File.dirname(__FILE__), 'boot')
добавить
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.3.7')
module Rails
class GemDependency
def requirement
r = super
(r == Gem::Requirement.default) ? nil : r
end
end
end
end
и в config/boot.rb
require 'thread'
в начало файла
Комментариев нет:
Отправить комментарий