Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toshimaru/railstwitterclone
Simple Twitter clone using Ruby on Rails 6.
https://github.com/toshimaru/railstwitterclone
rails ruby
Last synced: 6 days ago
JSON representation
Simple Twitter clone using Ruby on Rails 6.
- Host: GitHub
- URL: https://github.com/toshimaru/railstwitterclone
- Owner: toshimaru
- License: mit
- Created: 2014-03-15T12:06:40.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-05-27T23:21:07.000Z (5 months ago)
- Last Synced: 2024-05-28T08:42:15.694Z (5 months ago)
- Topics: rails, ruby
- Language: Ruby
- Homepage:
- Size: 1.97 MB
- Stars: 119
- Watchers: 9
- Forks: 74
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
[![RSpec](https://github.com/toshimaru/RailsTwitterClone/actions/workflows/rspec.yml/badge.svg?branch=main)](https://github.com/toshimaru/RailsTwitterClone/actions/workflows/rspec.yml)
[![Code Climate](https://codeclimate.com/github/toshimaru/RailsTwitterClone/badges/gpa.svg)](https://codeclimate.com/github/toshimaru/RailsTwitterClone)
[![Test Coverage](https://codeclimate.com/github/toshimaru/RailsTwitterClone/badges/coverage.svg)](https://codeclimate.com/github/toshimaru/RailsTwitterClone/coverage)
[![CircleCI](https://circleci.com/gh/toshimaru/RailsTwitterClone.svg?style=svg)](https://circleci.com/gh/toshimaru/RailsTwitterClone)
![Supported Ruby Version](https://img.shields.io/badge/Ruby-v3.2-green)
![Supported Rails Version](https://img.shields.io/badge/Rails-v6.1-green)# Rails Twitter Clone
Simple Twitter clone using Ruby on Rails 6.
![Twitter Clone Screen Capture](https://user-images.githubusercontent.com/803398/154789978-e2a4c50d-150b-4d21-885a-81209fc6893e.png)
## Implementation
This implementation is based on [Ruby on Rails Tutorial](https://www.railstutorial.org/book) by [@mhartl](https://github.com/mhartl).
## Supported Ruby version
- v3.2
- v3.1
- v3.0
- v2.7## Setup
Check out this repository and then,
```console
$ bin/setup
```### Start Rails server
```console
$ 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-consoleSee more details on [Gemfile](./Gemfile).
## Testing
```console
$ bundle exec rspec
```## Data reset and sample data creation
```console
$ bin/rails db:reset # Data reset
$ bin/rails db:populate # Create sample data
```## Other Resources
- [mhartl/sample_app_6th_ed: The main sample app for the Ruby on Rails Tutorial, 6th Edition](https://github.com/mhartl/sample_app_6th_ed)
- [Ruby on Rails Guides (v6.1)](https://guides.rubyonrails.org/v6.1/)