Skip to content

Commit 922a039

Browse files
committed
Initial commit
0 parents  commit 922a039

File tree

124 files changed

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

124 files changed

+10974
-0
lines changed

.browserslistrc

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

.gitignore

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

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby-2.6.3

Gemfile

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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.2', '>= 6.0.2.1'
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', '~> 4.1'
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', '~> 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+
group :test do
46+
# Adds support for Capybara system testing and selenium driver
47+
gem 'capybara', '>= 2.15'
48+
gem 'selenium-webdriver'
49+
# Easy installation and use of web drivers to run system tests with browsers
50+
gem 'webdrivers'
51+
end
52+
53+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
54+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
55+
56+
gem 'devise', '~> 4.7', '>= 4.7.1'
57+
gem 'friendly_id', '~> 5.3'
58+
gem 'sidekiq', '~> 6.0', '>= 6.0.1'

Gemfile.lock

+252
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,252 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (6.0.2.1)
5+
actionpack (= 6.0.2.1)
6+
nio4r (~> 2.0)
7+
websocket-driver (>= 0.6.1)
8+
actionmailbox (6.0.2.1)
9+
actionpack (= 6.0.2.1)
10+
activejob (= 6.0.2.1)
11+
activerecord (= 6.0.2.1)
12+
activestorage (= 6.0.2.1)
13+
activesupport (= 6.0.2.1)
14+
mail (>= 2.7.1)
15+
actionmailer (6.0.2.1)
16+
actionpack (= 6.0.2.1)
17+
actionview (= 6.0.2.1)
18+
activejob (= 6.0.2.1)
19+
mail (~> 2.5, >= 2.5.4)
20+
rails-dom-testing (~> 2.0)
21+
actionpack (6.0.2.1)
22+
actionview (= 6.0.2.1)
23+
activesupport (= 6.0.2.1)
24+
rack (~> 2.0, >= 2.0.8)
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.2.1)
29+
actionpack (= 6.0.2.1)
30+
activerecord (= 6.0.2.1)
31+
activestorage (= 6.0.2.1)
32+
activesupport (= 6.0.2.1)
33+
nokogiri (>= 1.8.5)
34+
actionview (6.0.2.1)
35+
activesupport (= 6.0.2.1)
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.2.1)
41+
activesupport (= 6.0.2.1)
42+
globalid (>= 0.3.6)
43+
activemodel (6.0.2.1)
44+
activesupport (= 6.0.2.1)
45+
activerecord (6.0.2.1)
46+
activemodel (= 6.0.2.1)
47+
activesupport (= 6.0.2.1)
48+
activestorage (6.0.2.1)
49+
actionpack (= 6.0.2.1)
50+
activejob (= 6.0.2.1)
51+
activerecord (= 6.0.2.1)
52+
marcel (~> 0.3.1)
53+
activesupport (6.0.2.1)
54+
concurrent-ruby (~> 1.0, >= 1.0.2)
55+
i18n (>= 0.7, < 2)
56+
minitest (~> 5.1)
57+
tzinfo (~> 1.1)
58+
zeitwerk (~> 2.2)
59+
addressable (2.7.0)
60+
public_suffix (>= 2.0.2, < 5.0)
61+
bcrypt (3.1.13)
62+
bindex (0.8.1)
63+
bootsnap (1.4.6)
64+
msgpack (~> 1.0)
65+
builder (3.2.4)
66+
byebug (11.1.1)
67+
capybara (3.31.0)
68+
addressable
69+
mini_mime (>= 0.1.3)
70+
nokogiri (~> 1.8)
71+
rack (>= 1.6.0)
72+
rack-test (>= 0.6.3)
73+
regexp_parser (~> 1.5)
74+
xpath (~> 3.2)
75+
childprocess (3.0.0)
76+
concurrent-ruby (1.1.6)
77+
connection_pool (2.2.2)
78+
crass (1.0.6)
79+
devise (4.7.1)
80+
bcrypt (~> 3.0)
81+
orm_adapter (~> 0.1)
82+
railties (>= 4.1.0)
83+
responders
84+
warden (~> 1.2.3)
85+
erubi (1.9.0)
86+
ffi (1.12.2)
87+
friendly_id (5.3.0)
88+
activerecord (>= 4.0.0)
89+
globalid (0.4.2)
90+
activesupport (>= 4.2.0)
91+
i18n (1.8.2)
92+
concurrent-ruby (~> 1.0)
93+
jbuilder (2.10.0)
94+
activesupport (>= 5.0.0)
95+
listen (3.1.5)
96+
rb-fsevent (~> 0.9, >= 0.9.4)
97+
rb-inotify (~> 0.9, >= 0.9.7)
98+
ruby_dep (~> 1.2)
99+
loofah (2.4.0)
100+
crass (~> 1.0.2)
101+
nokogiri (>= 1.5.9)
102+
mail (2.7.1)
103+
mini_mime (>= 0.1.1)
104+
marcel (0.3.3)
105+
mimemagic (~> 0.3.2)
106+
method_source (0.9.2)
107+
mimemagic (0.3.4)
108+
mini_mime (1.0.2)
109+
mini_portile2 (2.4.0)
110+
minitest (5.14.0)
111+
msgpack (1.3.3)
112+
nio4r (2.5.2)
113+
nokogiri (1.10.9)
114+
mini_portile2 (~> 2.4.0)
115+
orm_adapter (0.5.0)
116+
pg (1.2.2)
117+
public_suffix (4.0.3)
118+
puma (4.3.3)
119+
nio4r (~> 2.0)
120+
rack (2.2.2)
121+
rack-protection (2.0.8.1)
122+
rack
123+
rack-proxy (0.6.5)
124+
rack
125+
rack-test (1.1.0)
126+
rack (>= 1.0, < 3)
127+
rails (6.0.2.1)
128+
actioncable (= 6.0.2.1)
129+
actionmailbox (= 6.0.2.1)
130+
actionmailer (= 6.0.2.1)
131+
actionpack (= 6.0.2.1)
132+
actiontext (= 6.0.2.1)
133+
actionview (= 6.0.2.1)
134+
activejob (= 6.0.2.1)
135+
activemodel (= 6.0.2.1)
136+
activerecord (= 6.0.2.1)
137+
activestorage (= 6.0.2.1)
138+
activesupport (= 6.0.2.1)
139+
bundler (>= 1.3.0)
140+
railties (= 6.0.2.1)
141+
sprockets-rails (>= 2.0.0)
142+
rails-dom-testing (2.0.3)
143+
activesupport (>= 4.2.0)
144+
nokogiri (>= 1.6)
145+
rails-html-sanitizer (1.3.0)
146+
loofah (~> 2.3)
147+
railties (6.0.2.1)
148+
actionpack (= 6.0.2.1)
149+
activesupport (= 6.0.2.1)
150+
method_source
151+
rake (>= 0.8.7)
152+
thor (>= 0.20.3, < 2.0)
153+
rake (13.0.1)
154+
rb-fsevent (0.10.3)
155+
rb-inotify (0.10.1)
156+
ffi (~> 1.0)
157+
redis (4.1.3)
158+
regexp_parser (1.7.0)
159+
responders (3.0.0)
160+
actionpack (>= 5.0)
161+
railties (>= 5.0)
162+
ruby_dep (1.5.0)
163+
rubyzip (2.2.0)
164+
sass-rails (6.0.0)
165+
sassc-rails (~> 2.1, >= 2.1.1)
166+
sassc (2.2.1)
167+
ffi (~> 1.9)
168+
sassc-rails (2.1.2)
169+
railties (>= 4.0.0)
170+
sassc (>= 2.0)
171+
sprockets (> 3.0)
172+
sprockets-rails
173+
tilt
174+
selenium-webdriver (3.142.7)
175+
childprocess (>= 0.5, < 4.0)
176+
rubyzip (>= 1.2.2)
177+
sidekiq (6.0.5)
178+
connection_pool (>= 2.2.2)
179+
rack (~> 2.0)
180+
rack-protection (>= 2.0.0)
181+
redis (>= 4.1.0)
182+
spring (2.1.0)
183+
spring-watcher-listen (2.0.1)
184+
listen (>= 2.7, < 4.0)
185+
spring (>= 1.2, < 3.0)
186+
sprockets (4.0.0)
187+
concurrent-ruby (~> 1.0)
188+
rack (> 1, < 3)
189+
sprockets-rails (3.2.1)
190+
actionpack (>= 4.0)
191+
activesupport (>= 4.0)
192+
sprockets (>= 3.0.0)
193+
thor (1.0.1)
194+
thread_safe (0.3.6)
195+
tilt (2.0.10)
196+
turbolinks (5.2.1)
197+
turbolinks-source (~> 5.2)
198+
turbolinks-source (5.2.0)
199+
tzinfo (1.2.6)
200+
thread_safe (~> 0.1)
201+
warden (1.2.8)
202+
rack (>= 2.0.6)
203+
web-console (4.0.1)
204+
actionview (>= 6.0.0)
205+
activemodel (>= 6.0.0)
206+
bindex (>= 0.4.0)
207+
railties (>= 6.0.0)
208+
webdrivers (4.2.0)
209+
nokogiri (~> 1.6)
210+
rubyzip (>= 1.3.0)
211+
selenium-webdriver (>= 3.0, < 4.0)
212+
webpacker (4.2.2)
213+
activesupport (>= 4.2)
214+
rack-proxy (>= 0.6.1)
215+
railties (>= 4.2)
216+
websocket-driver (0.7.1)
217+
websocket-extensions (>= 0.1.0)
218+
websocket-extensions (0.1.4)
219+
xpath (3.2.0)
220+
nokogiri (~> 1.8)
221+
zeitwerk (2.3.0)
222+
223+
PLATFORMS
224+
ruby
225+
226+
DEPENDENCIES
227+
bootsnap (>= 1.4.2)
228+
byebug
229+
capybara (>= 2.15)
230+
devise (~> 4.7, >= 4.7.1)
231+
friendly_id (~> 5.3)
232+
jbuilder (~> 2.7)
233+
listen (>= 3.0.5, < 3.2)
234+
pg (>= 0.18, < 2.0)
235+
puma (~> 4.1)
236+
rails (~> 6.0.2, >= 6.0.2.1)
237+
sass-rails (>= 6)
238+
selenium-webdriver
239+
sidekiq (~> 6.0, >= 6.0.1)
240+
spring
241+
spring-watcher-listen (~> 2.0.0)
242+
turbolinks (~> 5)
243+
tzinfo-data
244+
web-console (>= 3.3.0)
245+
webdrivers
246+
webpacker (~> 4.0)
247+
248+
RUBY VERSION
249+
ruby 2.6.3p62
250+
251+
BUNDLED WITH
252+
2.0.2

Procfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
web: rails server
2+
sidekiq: sidekiq
3+
webpack: bin/webpack-dev-server

README.md

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

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

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

app/assets/stylesheets/application.scss

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module ApplicationCable
2+
class Channel < ActionCable::Channel::Base
3+
end
4+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module ApplicationCable
2+
class Connection < ActionCable::Connection::Base
3+
end
4+
end

0 commit comments

Comments
 (0)