The Ruby on Rails and ClojureScript experts

May 13, 2008

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.