If (on Edge Hobo) you get "wrong number of arguments (1 for 2)" in
do_signup, it's due to a recent change to the Lifecycles API.
In user.rb, you need to change
create :anybody, :signup, :params =>
[:username
, :email_address, :password, :password_confirmation], :become
=> :active, :if => proc {|_, u| u.guest?}
to
create :anybody, :signup, :params =>
[:username
, :email_address, :password, :password_confirmation], :become
=> :active, :if => proc {|u| u.acitng_user.guest?}
(the change is in the :if part)
Tom
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Hobo
Users" 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/hobousers?hl=en
-~----------~----~----~----~------~----~------~--~---