Skip to content

Commit 81bbc80

Browse files
committed
initial commit
0 parents  commit 81bbc80

Some content is hidden

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

85 files changed

+8936
-0
lines changed

.browserslistrc

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

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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 all logfiles and tempfiles.
11+
/log/*
12+
/tmp/*
13+
!/log/.keep
14+
!/tmp/.keep
15+
16+
# Ignore uploaded files in development.
17+
/storage/*
18+
!/storage/.keep
19+
20+
/public/assets
21+
.byebug_history
22+
23+
# Ignore master key for decrypting credentials and more.
24+
/config/master.key
25+
26+
/public/packs
27+
/public/packs-test
28+
/node_modules
29+
/yarn-error.log
30+
yarn-debug.log*
31+
.yarn-integrity

.ruby-version

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

Gemfile

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '2.6.3'
5+
6+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7+
gem 'rails', '~> 6.0.0'
8+
# Use postgresql as the database for Active Record
9+
gem 'pg', '>= 0.18', '< 2.0'
10+
# Use Puma as the app server
11+
gem 'puma', '~> 3.11'
12+
# Use SCSS for stylesheets
13+
gem 'sass-rails', '~> 5'
14+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
15+
gem 'webpacker', '~> 4.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.2', require: false
30+
31+
group :development, :test do
32+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
33+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
34+
end
35+
36+
group :development do
37+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
38+
gem 'web-console', '>= 3.3.0'
39+
gem 'listen', '>= 3.0.5', '< 3.2'
40+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
41+
gem 'spring'
42+
gem 'spring-watcher-listen', '~> 2.0.0'
43+
end
44+
45+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
46+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

Lines changed: 199 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,199 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (6.0.0)
5+
actionpack (= 6.0.0)
6+
nio4r (~> 2.0)
7+
websocket-driver (>= 0.6.1)
8+
actionmailbox (6.0.0)
9+
actionpack (= 6.0.0)
10+
activejob (= 6.0.0)
11+
activerecord (= 6.0.0)
12+
activestorage (= 6.0.0)
13+
activesupport (= 6.0.0)
14+
mail (>= 2.7.1)
15+
actionmailer (6.0.0)
16+
actionpack (= 6.0.0)
17+
actionview (= 6.0.0)
18+
activejob (= 6.0.0)
19+
mail (~> 2.5, >= 2.5.4)
20+
rails-dom-testing (~> 2.0)
21+
actionpack (6.0.0)
22+
actionview (= 6.0.0)
23+
activesupport (= 6.0.0)
24+
rack (~> 2.0)
25+
rack-test (>= 0.6.3)
26+
rails-dom-testing (~> 2.0)
27+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
28+
actiontext (6.0.0)
29+
actionpack (= 6.0.0)
30+
activerecord (= 6.0.0)
31+
activestorage (= 6.0.0)
32+
activesupport (= 6.0.0)
33+
nokogiri (>= 1.8.5)
34+
actionview (6.0.0)
35+
activesupport (= 6.0.0)
36+
builder (~> 3.1)
37+
erubi (~> 1.4)
38+
rails-dom-testing (~> 2.0)
39+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
40+
activejob (6.0.0)
41+
activesupport (= 6.0.0)
42+
globalid (>= 0.3.6)
43+
activemodel (6.0.0)
44+
activesupport (= 6.0.0)
45+
activerecord (6.0.0)
46+
activemodel (= 6.0.0)
47+
activesupport (= 6.0.0)
48+
activestorage (6.0.0)
49+
actionpack (= 6.0.0)
50+
activejob (= 6.0.0)
51+
activerecord (= 6.0.0)
52+
marcel (~> 0.3.1)
53+
activesupport (6.0.0)
54+
concurrent-ruby (~> 1.0, >= 1.0.2)
55+
i18n (>= 0.7, < 2)
56+
minitest (~> 5.1)
57+
tzinfo (~> 1.1)
58+
zeitwerk (~> 2.1, >= 2.1.8)
59+
bindex (0.8.1)
60+
bootsnap (1.4.5)
61+
msgpack (~> 1.0)
62+
builder (3.2.3)
63+
byebug (11.0.1)
64+
concurrent-ruby (1.1.5)
65+
crass (1.0.5)
66+
erubi (1.9.0)
67+
ffi (1.11.1)
68+
globalid (0.4.2)
69+
activesupport (>= 4.2.0)
70+
i18n (1.7.0)
71+
concurrent-ruby (~> 1.0)
72+
jbuilder (2.9.1)
73+
activesupport (>= 4.2.0)
74+
listen (3.1.5)
75+
rb-fsevent (~> 0.9, >= 0.9.4)
76+
rb-inotify (~> 0.9, >= 0.9.7)
77+
ruby_dep (~> 1.2)
78+
loofah (2.3.1)
79+
crass (~> 1.0.2)
80+
nokogiri (>= 1.5.9)
81+
mail (2.7.1)
82+
mini_mime (>= 0.1.1)
83+
marcel (0.3.3)
84+
mimemagic (~> 0.3.2)
85+
method_source (0.9.2)
86+
mimemagic (0.3.3)
87+
mini_mime (1.0.2)
88+
mini_portile2 (2.4.0)
89+
minitest (5.13.0)
90+
msgpack (1.3.1)
91+
nio4r (2.5.2)
92+
nokogiri (1.10.4)
93+
mini_portile2 (~> 2.4.0)
94+
pg (1.1.4)
95+
puma (3.12.1)
96+
rack (2.0.7)
97+
rack-proxy (0.6.5)
98+
rack
99+
rack-test (1.1.0)
100+
rack (>= 1.0, < 3)
101+
rails (6.0.0)
102+
actioncable (= 6.0.0)
103+
actionmailbox (= 6.0.0)
104+
actionmailer (= 6.0.0)
105+
actionpack (= 6.0.0)
106+
actiontext (= 6.0.0)
107+
actionview (= 6.0.0)
108+
activejob (= 6.0.0)
109+
activemodel (= 6.0.0)
110+
activerecord (= 6.0.0)
111+
activestorage (= 6.0.0)
112+
activesupport (= 6.0.0)
113+
bundler (>= 1.3.0)
114+
railties (= 6.0.0)
115+
sprockets-rails (>= 2.0.0)
116+
rails-dom-testing (2.0.3)
117+
activesupport (>= 4.2.0)
118+
nokogiri (>= 1.6)
119+
rails-html-sanitizer (1.3.0)
120+
loofah (~> 2.3)
121+
railties (6.0.0)
122+
actionpack (= 6.0.0)
123+
activesupport (= 6.0.0)
124+
method_source
125+
rake (>= 0.8.7)
126+
thor (>= 0.20.3, < 2.0)
127+
rake (13.0.0)
128+
rb-fsevent (0.10.3)
129+
rb-inotify (0.10.0)
130+
ffi (~> 1.0)
131+
ruby_dep (1.5.0)
132+
sass (3.7.4)
133+
sass-listen (~> 4.0.0)
134+
sass-listen (4.0.0)
135+
rb-fsevent (~> 0.9, >= 0.9.4)
136+
rb-inotify (~> 0.9, >= 0.9.7)
137+
sass-rails (5.1.0)
138+
railties (>= 5.2.0)
139+
sass (~> 3.1)
140+
sprockets (>= 2.8, < 4.0)
141+
sprockets-rails (>= 2.0, < 4.0)
142+
tilt (>= 1.1, < 3)
143+
spring (2.1.0)
144+
spring-watcher-listen (2.0.1)
145+
listen (>= 2.7, < 4.0)
146+
spring (>= 1.2, < 3.0)
147+
sprockets (3.7.2)
148+
concurrent-ruby (~> 1.0)
149+
rack (> 1, < 3)
150+
sprockets-rails (3.2.1)
151+
actionpack (>= 4.0)
152+
activesupport (>= 4.0)
153+
sprockets (>= 3.0.0)
154+
thor (0.20.3)
155+
thread_safe (0.3.6)
156+
tilt (2.0.10)
157+
turbolinks (5.2.1)
158+
turbolinks-source (~> 5.2)
159+
turbolinks-source (5.2.0)
160+
tzinfo (1.2.5)
161+
thread_safe (~> 0.1)
162+
web-console (4.0.1)
163+
actionview (>= 6.0.0)
164+
activemodel (>= 6.0.0)
165+
bindex (>= 0.4.0)
166+
railties (>= 6.0.0)
167+
webpacker (4.0.7)
168+
activesupport (>= 4.2)
169+
rack-proxy (>= 0.6.1)
170+
railties (>= 4.2)
171+
websocket-driver (0.7.1)
172+
websocket-extensions (>= 0.1.0)
173+
websocket-extensions (0.1.4)
174+
zeitwerk (2.2.0)
175+
176+
PLATFORMS
177+
ruby
178+
179+
DEPENDENCIES
180+
bootsnap (>= 1.4.2)
181+
byebug
182+
jbuilder (~> 2.7)
183+
listen (>= 3.0.5, < 3.2)
184+
pg (>= 0.18, < 2.0)
185+
puma (~> 3.11)
186+
rails (~> 6.0.0)
187+
sass-rails (~> 5)
188+
spring
189+
spring-watcher-listen (~> 2.0.0)
190+
turbolinks (~> 5)
191+
tzinfo-data
192+
web-console (>= 3.3.0)
193+
webpacker (~> 4.0)
194+
195+
RUBY VERSION
196+
ruby 2.6.3p62
197+
198+
BUNDLED WITH
199+
2.0.2

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# README
2+
3+
This README would normally document whatever steps are necessary to get the
4+
application up and running.
5+
6+
Things you may want to cover:
7+
8+
* Ruby version
9+
10+
* System dependencies
11+
12+
* Configuration
13+
14+
* Database creation
15+
16+
* Database initialization
17+
18+
* How to run the test suite
19+
20+
* Services (job queues, cache servers, search engines, etc.)
21+
22+
* Deployment instructions
23+
24+
* ...

Rakefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require_relative 'config/application'
5+
6+
Rails.application.load_tasks

app/assets/config/manifest.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
//= link_tree ../images
2+
//= link_directory ../stylesheets .css

app/assets/images/.keep

Whitespace-only changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* This is a manifest file that'll be compiled into application.css, which will include all the files
3+
* listed below.
4+
*
5+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
6+
* vendor/assets/stylesheets directory can be referenced here using a relative path.
7+
*
8+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
9+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10+
* files in this directory. Styles in this file should be added after the last require_* statement.
11+
* It is generally better to create a new file per style scope.
12+
*
13+
*= require_tree .
14+
*= require_self
15+
*/

0 commit comments

Comments
 (0)