หากเกิดปัญหา
undefined local variable or method `version_requirements' for #<Rails::GemDependency:0x1022cc1c8> (NameError)
ท่านสามารถแก้ไขได้โดยการเพิ่มก่อนหน้า Initialize และ boot ซึ้งอยู่ใน config/environment.rb
#Fix rails require bug
if Gem::VERSION >="1.3.6"
module Rails
class GemDependency
def requirement
r = super
(r == Gem::Requirement.default) ? nil : r
end
end
end
end