Skip to content

Instantly share code, notes, and snippets.

@andruby
Created June 3, 2012 03:28
Show Gist options
  • Save andruby/2861712 to your computer and use it in GitHub Desktop.
Save andruby/2861712 to your computer and use it in GitHub Desktop.
Bypass Devise email reconfirmation from console
u = User.find_by_email("[email protected]")
u.email = "[email protected]"
def u.postpone_email_change?; false; end
u.save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment