An example application, illustrating a system where the user can create posts and comment on them.
To run it, clone this repo locally, and then run these commands on the Terminal.
cd ~/micro-reddit
rails console
You can then create new users, posts or comments simply by using:
item.create
where item could be User, Post or Comment.