Skip to content

Commit 9ac42d7

Browse files
committed
repo initialized
0 parents  commit 9ac42d7

File tree

136 files changed

+9871
-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.

136 files changed

+9871
-0
lines changed

.browserslistrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
defaults

.gitattributes

+10
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

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
/db/*.sqlite3
8+
/db/*.sqlite3-journal
9+
/db/*.sqlite3-[0-9]*
10+
/public/system
11+
/coverage/
12+
/spec/tmp
13+
14+
# Ignore bundler config.
15+
/.bundle
16+
/vendor/bundle
17+
18+
# Ignore all logfiles and tempfiles.
19+
/log/*
20+
/tmp/*
21+
!/log/.keep
22+
!/tmp/.keep
23+
24+
# don't upload secrets
25+
config/initializers/secret_token.rb
26+
27+
# Ignore pidfiles, but keep the directory.
28+
/tmp/pids/*
29+
!/tmp/pids/
30+
!/tmp/pids/.keep
31+
32+
# Ignore uploaded files in development.
33+
/storage/*
34+
!/storage/.keep
35+
36+
/public/assets
37+
.byebug_history
38+
39+
# Ignore master key for decrypting credentials and more.
40+
/config/master.key
41+
42+
/public/packs
43+
/public/packs-test
44+
/node_modules
45+
/yarn-error.log
46+
yarn-debug.log*
47+
.yarn-integrity
48+
49+
# .env
50+
.env
51+
52+
# Ignore node_modules
53+
node_modules/
54+
55+
# my todo list
56+
todo.md

.rspec

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--require spec_helper

.rubocop.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
require:
2+
- rubocop-performance
3+
- rubocop-rails
4+
- rubocop-rspec

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0.2

1.7.0

Whitespace-only changes.

Gemfile

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

0 commit comments

Comments
 (0)