Skip to content

Latest commit

 

History

History
97 lines (64 loc) · 2.22 KB

README.md

File metadata and controls

97 lines (64 loc) · 2.22 KB

RSpec Code Climate Test Coverage CircleCI Supported Ruby Version Supported Rails Version

Rails Twitter Clone

Simple Twitter clone using Ruby on Rails 6.

Twitter Clone Screen Capture

Implementation

This implementation is based on Ruby on Rails Tutorial by @mhartl.

Supported Ruby version

  • v3.2
  • v3.1
  • v3.0
  • v2.7

Setup

Check out this repository and then,

$ bin/setup

Start Rails server

$ bin/rails server

Features

This application doesn't provide many features in order to keep it simple. Here are the features that it does include:

  • See TimeLine
  • Post new Tweet with image
  • Follow/Unfollow User
  • Edit user profile

Used gem

JavaScript

  • webpacker
  • @rails/ujs

CSS

  • bootstrap (v5)

Database

  • sqlite3

For testing

  • rspec
  • capybara
  • factory_bot
  • faker
  • simplecov

For debugging

  • bullet
  • debug
  • rack-mini-profiler
  • rubocop
  • web-console

See more details on Gemfile.

Testing

$ bundle exec rspec

Data reset and sample data creation

$ bin/rails db:reset    # Data reset
$ bin/rails db:populate # Create sample data

Other Resources