13 May 2008, Posted by Jo Hund in Note to self, Ruby/Rails, 0 Comments
Require Ruby ‘Forwardable’ on Leopard
When I upgraded to Leopard, some of my Rails apps broke. Ruby threw this error at me:
uninitialized constant User::Forwardable
Here is a simple fix:
require 'forwardable'
in environment.rb.
It seems that on Tiger ‘Forwardable’ was included by default, but not on Leopard any more. Not exactly sure why this is.

Posting your comment...
Leave A Comment