On Sun, Jan 30, 2011 at 5:06 PM, Jason Preston <[email protected]> wrote:
> as part of my user model (built from scrach) I explicitly called
> "require 'Digest'" in order to do a one-way hash on user passwords,
> I'm guessing that was the issue.
The problem here might be that your local filesystem is
case-insensitive (e.g., if you're on OS X) but the filesystem on
Heroku is case-sensitive (since it's Linux). Therefore you want to
make sure to use the correct case for the ruby file you're loading,
which is probably:
require 'digest'
Adam
--
You received this message because you are subscribed to the Google Groups
"Heroku" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/heroku?hl=en.