Skip to content

Instantly share code, notes, and snippets.

@svisamsetty
Created November 7, 2013 13:28
Show Gist options
  • Save svisamsetty/7354562 to your computer and use it in GitHub Desktop.
Save svisamsetty/7354562 to your computer and use it in GitHub Desktop.
how to create a user and add role.
#to create user
@user = User.new
@user.email = 'xyz@gmail.com'
@user.password = 'test123'
@user.save
#to set admin role
@user.add_role :admin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment