Any idea how to create and save a new User object with devise from the ruby console?

When i tried to save it, I'm getting always false. I'm guessing i'm missing something but i can't find any info related.

Thank you.

link|improve this question

68% accept rate
1  
Not an answer to your question, and you probably already know about Railcasts, but I found these video's useful when learning about Devise: railscasts.com/episodes/209-introducing-devise, railscasts.com/episodes/210-customizing-devise. They have a few more really useful videos about Devise on there too. Good luck. – Mike Bethany Nov 30 '10 at 19:08
1  
Yea i watched them both, but they don't say anything about what i'm asking. – Martin Dec 6 '10 at 14:40
feedback

2 Answers

up vote 20 down vote accepted

You can add false to the save method to skip the validations if you want.

User.new({:email => "guy@gmail.com", :roles => ["admin"], :password => "111111", :password_confirmation => "111111" }).save(false)

Otherwise I'd do this

User.create!({:email => "guy@gmail.com", :roles => ["admin"], :password => "111111", :password_confirmation => "111111" })
link|improve this answer
4  
Looks like save(false) is depcreated, now should be save(:validate => false) – Martin Dec 6 '10 at 14:47
there is just so much magic happening here.. The User model extends Active Record. how come the create method is overriden. Where is the password being encrypted? – codeAnand Dec 16 '11 at 11:15
What does the devise call actually do – codeAnand Dec 16 '11 at 11:19
feedback

You should be able to do this using

u = User.new(:email => "user@name.com", :password => 'password', :password_confirmation => 'password')
u.save

if this returns false, you can call

u.errors

to see what's gone wrong.

link|improve this answer
3  
If you use :confirmable, don't forget to also set :confirmed_at attribute to Time.now so you can log in right away. – David Sulc Nov 30 '10 at 18:20
ooh, good call! – Sam Ritchie Nov 30 '10 at 18:20
Thank you both of you! – Martin Nov 30 '10 at 18:48
Martin, could you choose one of these answers as the right one, if they helped? – Sam Ritchie Nov 30 '10 at 19:19
feedback

Your Answer

 
or
required, but never shown

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