Skip to content

Commit 2a04800

Browse files
committed
rollback to last worked version
0 parents  commit 2a04800

File tree

195 files changed

+36200
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

195 files changed

+36200
-0
lines changed

.browserslistrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
defaults

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# See https://git-scm.com/docs/gitattributes for more about git attribute files.
2+
3+
# Mark the database schema as having been generated.
4+
db/schema.rb linguist-generated
5+
6+
# Mark the yarn lockfile as having been generated.
7+
yarn.lock linguist-generated
8+
9+
# Mark any vendored files as having been vendored.
10+
vendor/* linguist-vendored

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-*
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
# Ignore pidfiles, but keep the directory.
21+
/tmp/pids/*
22+
!/tmp/pids/
23+
!/tmp/pids/.keep
24+
25+
# Ignore uploaded files in development.
26+
/storage/*
27+
!/storage/.keep
28+
29+
/public/assets
30+
.byebug_history
31+
32+
# Ignore master key for decrypting credentials and more.
33+
/config/master.key
34+
35+
/public/packs
36+
/public/packs-test
37+
/node_modules
38+
/yarn-error.log
39+
yarn-debug.log*
40+
.yarn-integrity

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0.1

Gemfile

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '3.0.1'
5+
gem 'omniauth-github', github: 'omniauth/omniauth-github', branch: 'master'
6+
gem "omniauth-rails_csrf_protection"
7+
gem 'omniauth-google-oauth2'
8+
gem 'bootstrap-sass'
9+
gem 'gravatar_image_tag'
10+
gem 'bootstrap'
11+
gem 'jquery-rails'
12+
gem 'devise'
13+
gem 'faker'
14+
gem 'will_paginate-bootstrap'
15+
gem 'acts_as_votable'
16+
17+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
18+
gem 'rails', '~> 6.1.4', '>= 6.1.4.1'
19+
# Use sqlite3 as the database for Active Record
20+
# gem 'sqlite3', '~> 1.4'
21+
22+
23+
gem 'mysql2'
24+
25+
# Use Puma as the app server
26+
gem 'puma', '~> 5.0'
27+
# Use SCSS for stylesheets
28+
gem 'sass-rails', '>= 6'
29+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
30+
gem 'webpacker', '~> 5.0'
31+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
32+
gem 'turbolinks', '~> 5'
33+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
34+
gem 'jbuilder', '~> 2.7'
35+
# Use Redis adapter to run Action Cable in production
36+
# gem 'redis', '~> 4.0'
37+
# Use Active Model has_secure_password
38+
# gem 'bcrypt', '~> 3.1.7'
39+
40+
# Use Active Storage variant
41+
gem 'image_processing', '~> 1.2'
42+
43+
# Reduces boot times through caching; required in config/boot.rb
44+
gem 'bootsnap', '>= 1.4.4', require: false
45+
46+
group :development, :test do
47+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
48+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
49+
end
50+
51+
group :development do
52+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
53+
gem 'web-console', '>= 4.1.0'
54+
# Display performance information such as SQL time and flame graphs for each request in your browser.
55+
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
56+
# gem 'rack-mini-profiler', '~> 2.0'
57+
gem 'listen', '~> 3.3'
58+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
59+
gem 'spring'
60+
end
61+
62+
group :test do
63+
# Adds support for Capybara system testing and selenium driver
64+
gem 'capybara', '>= 3.26'
65+
gem 'selenium-webdriver'
66+
# Easy installation and use of web drivers to run system tests with browsers
67+
gem 'webdrivers'
68+
end
69+
70+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
71+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
72+
73+
group :production do
74+
gem 'pg'
75+
gem 'rails_12factor'
76+
end

0 commit comments

Comments
 (0)