Skip to content

Commit 3a2fdd0

Browse files
author
Andy Leverenz
committed
Initial commit
0 parents  commit 3a2fdd0

File tree

124 files changed

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

+10632
-0
lines changed

.browserslistrc

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

.gitignore

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

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
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.0'
8+
# Use sqlite3 as the database for Active Record
9+
gem 'sqlite3', '~> 1.4'
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+
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'
57+
gem 'friendly_id', '~> 5.2', '>= 5.2.5'
58+
gem 'sidekiq', '~> 5.2', '>= 5.2.7'

Gemfile.lock

+253
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,253 @@
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+
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.5)
64+
msgpack (~> 1.0)
65+
builder (3.2.3)
66+
byebug (11.0.1)
67+
capybara (3.29.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 (2.0.0)
76+
rake (< 13.0)
77+
concurrent-ruby (1.1.5)
78+
connection_pool (2.2.2)
79+
crass (1.0.4)
80+
devise (4.7.1)
81+
bcrypt (~> 3.0)
82+
orm_adapter (~> 0.1)
83+
railties (>= 4.1.0)
84+
responders
85+
warden (~> 1.2.3)
86+
erubi (1.8.0)
87+
ffi (1.11.1)
88+
friendly_id (5.2.5)
89+
activerecord (>= 4.0.0)
90+
globalid (0.4.2)
91+
activesupport (>= 4.2.0)
92+
i18n (1.6.0)
93+
concurrent-ruby (~> 1.0)
94+
jbuilder (2.9.1)
95+
activesupport (>= 4.2.0)
96+
listen (3.1.5)
97+
rb-fsevent (~> 0.9, >= 0.9.4)
98+
rb-inotify (~> 0.9, >= 0.9.7)
99+
ruby_dep (~> 1.2)
100+
loofah (2.2.3)
101+
crass (~> 1.0.2)
102+
nokogiri (>= 1.5.9)
103+
mail (2.7.1)
104+
mini_mime (>= 0.1.1)
105+
marcel (0.3.3)
106+
mimemagic (~> 0.3.2)
107+
method_source (0.9.2)
108+
mimemagic (0.3.3)
109+
mini_mime (1.0.2)
110+
mini_portile2 (2.4.0)
111+
minitest (5.11.3)
112+
msgpack (1.3.1)
113+
nio4r (2.5.1)
114+
nokogiri (1.10.4)
115+
mini_portile2 (~> 2.4.0)
116+
orm_adapter (0.5.0)
117+
public_suffix (4.0.1)
118+
puma (3.12.1)
119+
rack (2.0.7)
120+
rack-protection (2.0.7)
121+
rack
122+
rack-proxy (0.6.5)
123+
rack
124+
rack-test (1.1.0)
125+
rack (>= 1.0, < 3)
126+
rails (6.0.0)
127+
actioncable (= 6.0.0)
128+
actionmailbox (= 6.0.0)
129+
actionmailer (= 6.0.0)
130+
actionpack (= 6.0.0)
131+
actiontext (= 6.0.0)
132+
actionview (= 6.0.0)
133+
activejob (= 6.0.0)
134+
activemodel (= 6.0.0)
135+
activerecord (= 6.0.0)
136+
activestorage (= 6.0.0)
137+
activesupport (= 6.0.0)
138+
bundler (>= 1.3.0)
139+
railties (= 6.0.0)
140+
sprockets-rails (>= 2.0.0)
141+
rails-dom-testing (2.0.3)
142+
activesupport (>= 4.2.0)
143+
nokogiri (>= 1.6)
144+
rails-html-sanitizer (1.2.0)
145+
loofah (~> 2.2, >= 2.2.2)
146+
railties (6.0.0)
147+
actionpack (= 6.0.0)
148+
activesupport (= 6.0.0)
149+
method_source
150+
rake (>= 0.8.7)
151+
thor (>= 0.20.3, < 2.0)
152+
rake (12.3.3)
153+
rb-fsevent (0.10.3)
154+
rb-inotify (0.10.0)
155+
ffi (~> 1.0)
156+
redis (4.1.2)
157+
regexp_parser (1.6.0)
158+
responders (3.0.0)
159+
actionpack (>= 5.0)
160+
railties (>= 5.0)
161+
ruby_dep (1.5.0)
162+
rubyzip (1.2.4)
163+
sass (3.7.4)
164+
sass-listen (~> 4.0.0)
165+
sass-listen (4.0.0)
166+
rb-fsevent (~> 0.9, >= 0.9.4)
167+
rb-inotify (~> 0.9, >= 0.9.7)
168+
sass-rails (5.1.0)
169+
railties (>= 5.2.0)
170+
sass (~> 3.1)
171+
sprockets (>= 2.8, < 4.0)
172+
sprockets-rails (>= 2.0, < 4.0)
173+
tilt (>= 1.1, < 3)
174+
selenium-webdriver (3.142.4)
175+
childprocess (>= 0.5, < 3.0)
176+
rubyzip (~> 1.2, >= 1.2.2)
177+
sidekiq (5.2.7)
178+
connection_pool (~> 2.2, >= 2.2.2)
179+
rack (>= 1.5.0)
180+
rack-protection (>= 1.5.0)
181+
redis (>= 3.3.5, < 5)
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 (3.7.2)
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+
sqlite3 (1.4.1)
194+
thor (0.20.3)
195+
thread_safe (0.3.6)
196+
tilt (2.0.9)
197+
turbolinks (5.2.0)
198+
turbolinks-source (~> 5.2)
199+
turbolinks-source (5.2.0)
200+
tzinfo (1.2.5)
201+
thread_safe (~> 0.1)
202+
warden (1.2.8)
203+
rack (>= 2.0.6)
204+
web-console (4.0.1)
205+
actionview (>= 6.0.0)
206+
activemodel (>= 6.0.0)
207+
bindex (>= 0.4.0)
208+
railties (>= 6.0.0)
209+
webdrivers (4.1.2)
210+
nokogiri (~> 1.6)
211+
rubyzip (~> 1.0)
212+
selenium-webdriver (>= 3.0, < 4.0)
213+
webpacker (4.0.7)
214+
activesupport (>= 4.2)
215+
rack-proxy (>= 0.6.1)
216+
railties (>= 4.2)
217+
websocket-driver (0.7.1)
218+
websocket-extensions (>= 0.1.0)
219+
websocket-extensions (0.1.4)
220+
xpath (3.2.0)
221+
nokogiri (~> 1.8)
222+
zeitwerk (2.1.10)
223+
224+
PLATFORMS
225+
ruby
226+
227+
DEPENDENCIES
228+
bootsnap (>= 1.4.2)
229+
byebug
230+
capybara (>= 2.15)
231+
devise (~> 4.7)
232+
friendly_id (~> 5.2, >= 5.2.5)
233+
jbuilder (~> 2.7)
234+
listen (>= 3.0.5, < 3.2)
235+
puma (~> 3.11)
236+
rails (~> 6.0.0)
237+
sass-rails (~> 5)
238+
selenium-webdriver
239+
sidekiq (~> 5.2, >= 5.2.7)
240+
spring
241+
spring-watcher-listen (~> 2.0.0)
242+
sqlite3 (~> 1.4)
243+
turbolinks (~> 5)
244+
tzinfo-data
245+
web-console (>= 3.3.0)
246+
webdrivers
247+
webpacker (~> 4.0)
248+
249+
RUBY VERSION
250+
ruby 2.6.3p62
251+
252+
BUNDLED WITH
253+
2.0.1

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

0 commit comments

Comments
 (0)