Ruby on Rails blog application using ActionCable for realtime chat/response. The application was built MVC design pattern along with BDD practice.
rails version 5.1
-Models
-Views
-Routes
###Functional Tests -Controllers
###Integrational Tests -Emulation User
-Process followed to completion to meet objective
git clone https://github.com/aarias89/rails-app.git
bundle install
rails db:create
rails db:migrate
rails s -p 3001
On browser go to http://localhost:3001/
Open separate tab on terminal and run the following:
bundle binstubs guard
guard init
guard
Deployed RailsBlogApp.