From 9dc8645c32ff1e30333fde7b370c391b92f78113 Mon Sep 17 00:00:00 2001 From: Will Bradley Date: Sat, 26 Oct 2013 03:21:48 -0700 Subject: [PATCH] Update README.rdoc --- README.rdoc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.rdoc b/README.rdoc index c98dc4a..6e019ff 100644 --- a/README.rdoc +++ b/README.rdoc @@ -14,7 +14,8 @@ To use: * Copy config/database.yml.example to config/database.yml and edit appropriately * Copy config/initializers/secret_token.rb.example to config/config/initializers/secret_token.rb and edit appropriately * Run bundle install, rake db:migrate, etc. -* Use the Rails console to create a new User and set user.admin = true -** user = User.new -** user.password = "foobar" -** etc +* Use the Rails console to create a new User with admin rights + * user = User.new + * user.password = "foobar" + * user.admin = true + * user.save