vote up 1 vote down star

I am moderately new to Rails so this may be a stupid question...

I followed the basic steps noted on the github site for the plugin (mainly installed the plugin, ran the generator, modified environment.rb and created the UserObserver class in the models directory)

The error I'm getting is saying it's coming from active_support/dependencies. "'load_missing_constant': uninitialized constant UserObserver (NameError)." Any idea on why it could not find the user observer class?

flag

can you tell which plugin you installed? – serioys sam Mar 12 at 18:15
Whoops I completely forgot to put the site link in. Sorry about that -- the standard restful_authentication at github.com/technoweenie/restful-authentication/… – Ryan Lanciaux Mar 12 at 19:04

3 Answers

vote up 2 vote down check

This means it's looking for a constant called "UserObserver" (which generally means it's a class / module). It can't find it because you may not have a file called user_observer.rb, generally located in app/models or app/observers.

link|flag
vote up 2 vote down

Did you include both of these lines in your environment.rb file? Assuming user_observer.rb is located in app/observers.

config.load_paths += %W( #{RAILS_ROOT}/app/observers )%
config.active_record.observers = :user_observer
link|flag
vote up 1 vote down

I don't know the solution to your particular problem but you could take a look at Bort, which is a skeleton app that already has restful auth setup, and see what they have done that you haven't.

link|flag
Bort looks pretty cool I think I will do that next time around. – Ryan Lanciaux Mar 13 at 15:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.