Skip to content

Commit

Permalink
Ruby on Rails
Browse files Browse the repository at this point in the history
  • Loading branch information
msatmod committed Aug 30, 2022
1 parent b91bfe9 commit 2cc44a8
Show file tree
Hide file tree
Showing 127 changed files with 2,924 additions and 0 deletions.
76 changes: 76 additions & 0 deletions Day 23 - Day 30/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Friends List App
👉🏻 It is a simple Friends List App using Ruby on Rails with SQLite3 database.

- This is my first Ruby on Rails Project!

---

>WebApp Deployment by [Mega Satish](https://github.com/msatmod)
- [GitHub Repository](https://github.com/msatmod/friendsapp) | [My Fork](https://github.com/Amey-Thakur/FRIENDSAPP)

- [Web Application](https://rubyonrailsfriendwebapp.herokuapp.com)

---

### Home Page

![image](https://user-images.githubusercontent.com/54937357/171351723-8a2ae379-c868-45e1-bafb-cee36adcfc36.png)


### About Us

![image](https://user-images.githubusercontent.com/54937357/171352064-c8741d53-0fce-4b1d-a0e6-b8bb7e4fe3dd.png)


### Sign Up

![image](https://user-images.githubusercontent.com/54937357/171352158-108a9a45-c09e-4bfa-b6ef-67e0f957ccbb.png)


### Sign In

![image](https://user-images.githubusercontent.com/54937357/171355313-2e172883-9b6a-405b-bb8e-dcafd83475ae.png)


### Edit Profile

![image](https://user-images.githubusercontent.com/54937357/171352330-94646fc5-5d80-484f-8f12-05d6da93d8de.png)


### Add Friend (Create)

![image](https://user-images.githubusercontent.com/54937357/171352508-81cadc1b-bf33-4624-9ec7-d297549fc742.png)


### Show Friend (Read)

![image](https://user-images.githubusercontent.com/54937357/171354346-32953656-e64d-4f6d-91d5-b604d0b98aac.png)

![image](https://user-images.githubusercontent.com/54937357/171354383-39ed6c23-436c-463a-992f-0fa66d82bb4c.png)


### Update Friend (Update)

![image](https://user-images.githubusercontent.com/54937357/171354922-e71c7872-3293-43e6-9ac3-6dc6f84d0cb4.png)


### Delete Friend (Delete)

![image](https://user-images.githubusercontent.com/54937357/171354505-423514bb-4477-4228-b3ac-e145ff5d4340.png)


### Friends List

![image](https://user-images.githubusercontent.com/54937357/171353993-eec5ab06-a76f-41c0-9764-790313741866.png)


### Sign Out

![image](https://user-images.githubusercontent.com/54937357/171355107-f11d1990-00bf-4de4-8c6d-5e1a8f430904.png)

---

<p align="center"> <b> 👉🏻 Created to Learn Ruby on Rails 👈🏻 <b> </p>

<p align="center"><a href='https://github.com/Amey-Thakur/RAILSFRIENDS', style='color: greenyellow;'> ✌🏻 Back To Repository ✌🏻</p>
Binary file added Day 23 - Day 30/RailsFriends/.DS_Store
Binary file not shown.
7 changes: 7 additions & 0 deletions Day 23 - Day 30/RailsFriends/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# See https://git-scm.com/docs/gitattributes for more about git attribute files.

# Mark the database schema as having been generated.
db/schema.rb linguist-generated

# Mark any vendored files as having been vendored.
vendor/* linguist-vendored
35 changes: 35 additions & 0 deletions Day 23 - Day 30/RailsFriends/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'

# Ignore bundler config.
/.bundle

# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-*

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep

# Ignore pidfiles, but keep the directory.
/tmp/pids/*
!/tmp/pids/
!/tmp/pids/.keep

# Ignore uploaded files in development.
/storage/*
!/storage/.keep
/tmp/storage/*
!/tmp/storage/
!/tmp/storage/.keep

/public/assets

# Ignore master key for decrypting credentials and more.
/config/master.key
1 change: 1 addition & 0 deletions Day 23 - Day 30/RailsFriends/.ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby-3.1.2
79 changes: 79 additions & 0 deletions Day 23 - Day 30/RailsFriends/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "3.1.2"

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.0.3"

# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"

# Use sqlite3 as the database for Active Record
gem "sqlite3", "~> 1.4"

# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 5.0"

# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem "importmap-rails"

# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"

# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"

# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem "jbuilder"

# Use Redis adapter to run Action Cable in production
# gem "redis", "~> 4.0"

# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"

# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem "bcrypt", "~> 3.1.7"

group :producation do
gem 'pg', '~> 1.3', '>= 1.3.5'
#gem 'rails_12factor', '0.0.2'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]

# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false

gem 'devise', '~> 4.8', '>= 4.8.1'

# Use Sass to process CSS
# gem "sassc-rails"

# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"

group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end

group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"

# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem "rack-mini-profiler"

# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
end

group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
end
Loading

0 comments on commit 2cc44a8

Please sign in to comment.