Well, it seems I forgot to add the acts_as_authenticated to the repository on my...
[selectricity-live] / vendor / plugins / acts_as_authenticated / generators / authenticated_mailer / templates / observer.rb
1 class <%= class_name %>Observer < ActiveRecord::Observer
2   def after_create(<%= file_name %>)
3     <%= class_name %>Notifier.deliver_signup_notification(<%= file_name %>)
4   end
5
6   def after_save(<%= file_name %>)
7     <%= class_name %>Notifier.deliver_activation(<%= file_name %>) if <%= file_name %>.recently_activated?
8   end
9 end

Benjamin Mako Hill || Want to submit a patch?