Guest User

Untitled

a guest
Aug 26th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. rails c
  2. Loading development environment (Rails 3.0.3)
  3. ruby-1.9.2-p136 :001 > user = User.first
  4. => #<User ...snip...>
  5. ruby-1.9.2-p136 :002 > user.password = "Password"
  6. => "Password"
  7. ruby-1.9.2-p136 :003 > user.password_confirmation = "Password"
  8. => "Password"
  9. ruby-1.9.2-p136 :004 > user.save!
  10. => true
  11. ruby-1.9.2-p136 :005 > exit
Add Comment
Please, Sign In to add comment