A twitter clone application.
- Ruby (Sinatra)
- ActiveRecords
- bcrypt
- erb
- SASS
First install all gems and dependencies:
bundle install
To build the database on your local machine:
rake db:create
To populate the database with data:
rake db:seed
rake db:seed RACK_ENV="test"
This will populate the database with fake data using faker
All tests pass and i was able to implement automatic database cleaning with database-cleaner however i was unable to re-seed the databse with each clean.