Skip to content

Commit 5b18838

Browse files
committed
initial commit
0 parents  commit 5b18838

File tree

2,519 files changed

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

2,519 files changed

+3309
-0
lines changed

Gemfile

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
source "https://rubygems.org"
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby "2.7.0"
5+
6+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7+
gem "rails", "~> 5.2.4", ">= 5.2.4.2"
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.0"
14+
# Use Uglifier as compressor for JavaScript assets
15+
gem "uglifier", ">= 1.3.0"
16+
# See https://github.com/rails/execjs#readme for more supported runtimes
17+
# gem 'mini_racer', platforms: :ruby
18+
19+
# Use CoffeeScript for .coffee assets and views
20+
gem "coffee-rails", "~> 4.2"
21+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
22+
gem "turbolinks", "~> 5"
23+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
24+
gem "jbuilder", "~> 2.5"
25+
# Use Redis adapter to run Action Cable in production
26+
# gem 'redis', '~> 4.0'
27+
# Use ActiveModel has_secure_password
28+
# gem 'bcrypt', '~> 3.1.7'
29+
30+
# Use ActiveStorage variant
31+
# gem 'mini_magick', '~> 4.8'
32+
33+
# Use Capistrano for deployment
34+
# gem 'capistrano-rails', group: :development
35+
36+
# Reduces boot times through caching; required in config/boot.rb
37+
gem "bootsnap", ">= 1.1.0", require: false
38+
39+
group :development, :test do
40+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
41+
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
42+
end
43+
44+
group :development do
45+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
46+
gem "web-console", ">= 3.3.0"
47+
gem "listen", ">= 3.0.5", "< 3.2"
48+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
49+
gem "spring"
50+
gem "spring-watcher-listen", "~> 2.0.0"
51+
# Better Errors replaces the standard Rails error page with a much better and more useful error page. Read more: https://github.com/BetterErrors/better_errors
52+
gem "better_errors"
53+
gem "binding_of_caller"
54+
55+
# Guard automates various tasks by running custom rules whenever file or directories are modified. Read more: https://github.com/guard/guard
56+
# LiveReload guard allows to automatically reload your browser when 'view' files are modified. Read more: https://github.com/guard/guard-livereload
57+
gem "guard"
58+
gem "guard-livereload", "~> 2.5", require: false
59+
end
60+
61+
group :test do
62+
# Adds support for Capybara system testing and selenium driver
63+
gem "capybara", ">= 2.15"
64+
gem "selenium-webdriver"
65+
# Easy installation and use of chromedriver to run system tests with Chrome
66+
gem "chromedriver-helper"
67+
end
68+
69+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
70+
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
71+
72+
gem "devise", "~> 4.7"
73+
74+
gem "aws-sdk-s3", "~> 1.64"
75+
76+
gem "bootstrap", "~> 4.4"
77+
78+
gem "jquery", "~> 0.0.1"
79+
80+
gem "jquery-rails", "~> 4.4"

Gemfile.lock

+314
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,314 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (5.2.4.2)
5+
actionpack (= 5.2.4.2)
6+
nio4r (~> 2.0)
7+
websocket-driver (>= 0.6.1)
8+
actionmailer (5.2.4.2)
9+
actionpack (= 5.2.4.2)
10+
actionview (= 5.2.4.2)
11+
activejob (= 5.2.4.2)
12+
mail (~> 2.5, >= 2.5.4)
13+
rails-dom-testing (~> 2.0)
14+
actionpack (5.2.4.2)
15+
actionview (= 5.2.4.2)
16+
activesupport (= 5.2.4.2)
17+
rack (~> 2.0, >= 2.0.8)
18+
rack-test (>= 0.6.3)
19+
rails-dom-testing (~> 2.0)
20+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
21+
actionview (5.2.4.2)
22+
activesupport (= 5.2.4.2)
23+
builder (~> 3.1)
24+
erubi (~> 1.4)
25+
rails-dom-testing (~> 2.0)
26+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
27+
activejob (5.2.4.2)
28+
activesupport (= 5.2.4.2)
29+
globalid (>= 0.3.6)
30+
activemodel (5.2.4.2)
31+
activesupport (= 5.2.4.2)
32+
activerecord (5.2.4.2)
33+
activemodel (= 5.2.4.2)
34+
activesupport (= 5.2.4.2)
35+
arel (>= 9.0)
36+
activestorage (5.2.4.2)
37+
actionpack (= 5.2.4.2)
38+
activerecord (= 5.2.4.2)
39+
marcel (~> 0.3.1)
40+
activesupport (5.2.4.2)
41+
concurrent-ruby (~> 1.0, >= 1.0.2)
42+
i18n (>= 0.7, < 2)
43+
minitest (~> 5.1)
44+
tzinfo (~> 1.1)
45+
addressable (2.7.0)
46+
public_suffix (>= 2.0.2, < 5.0)
47+
archive-zip (0.12.0)
48+
io-like (~> 0.3.0)
49+
arel (9.0.0)
50+
autoprefixer-rails (9.7.6)
51+
execjs
52+
aws-eventstream (1.1.0)
53+
aws-partitions (1.312.0)
54+
aws-sdk-core (3.95.0)
55+
aws-eventstream (~> 1, >= 1.0.2)
56+
aws-partitions (~> 1, >= 1.239.0)
57+
aws-sigv4 (~> 1.1)
58+
jmespath (~> 1.0)
59+
aws-sdk-kms (1.31.0)
60+
aws-sdk-core (~> 3, >= 3.71.0)
61+
aws-sigv4 (~> 1.1)
62+
aws-sdk-s3 (1.64.0)
63+
aws-sdk-core (~> 3, >= 3.83.0)
64+
aws-sdk-kms (~> 1)
65+
aws-sigv4 (~> 1.1)
66+
aws-sigv4 (1.1.3)
67+
aws-eventstream (~> 1.0, >= 1.0.2)
68+
bcrypt (3.1.13)
69+
better_errors (2.7.0)
70+
coderay (>= 1.0.0)
71+
erubi (>= 1.0.0)
72+
rack (>= 0.9.0)
73+
bindex (0.8.1)
74+
binding_of_caller (0.8.0)
75+
debug_inspector (>= 0.0.1)
76+
bootsnap (1.4.6)
77+
msgpack (~> 1.0)
78+
bootstrap (4.4.1)
79+
autoprefixer-rails (>= 9.1.0)
80+
popper_js (>= 1.14.3, < 2)
81+
sassc-rails (>= 2.0.0)
82+
builder (3.2.4)
83+
byebug (11.1.3)
84+
capybara (3.32.1)
85+
addressable
86+
mini_mime (>= 0.1.3)
87+
nokogiri (~> 1.8)
88+
rack (>= 1.6.0)
89+
rack-test (>= 0.6.3)
90+
regexp_parser (~> 1.5)
91+
xpath (~> 3.2)
92+
childprocess (3.0.0)
93+
chromedriver-helper (2.1.1)
94+
archive-zip (~> 0.10)
95+
nokogiri (~> 1.8)
96+
coderay (1.1.2)
97+
coffee-rails (4.2.2)
98+
coffee-script (>= 2.2.0)
99+
railties (>= 4.0.0)
100+
coffee-script (2.4.1)
101+
coffee-script-source
102+
execjs
103+
coffee-script-source (1.12.2)
104+
concurrent-ruby (1.1.6)
105+
crass (1.0.6)
106+
debug_inspector (0.0.3)
107+
devise (4.7.1)
108+
bcrypt (~> 3.0)
109+
orm_adapter (~> 0.1)
110+
railties (>= 4.1.0)
111+
responders
112+
warden (~> 1.2.3)
113+
em-websocket (0.5.1)
114+
eventmachine (>= 0.12.9)
115+
http_parser.rb (~> 0.6.0)
116+
erubi (1.9.0)
117+
eventmachine (1.2.7)
118+
execjs (2.7.0)
119+
ffi (1.12.2)
120+
formatador (0.2.5)
121+
globalid (0.4.2)
122+
activesupport (>= 4.2.0)
123+
guard (2.16.2)
124+
formatador (>= 0.2.4)
125+
listen (>= 2.7, < 4.0)
126+
lumberjack (>= 1.0.12, < 2.0)
127+
nenv (~> 0.1)
128+
notiffany (~> 0.0)
129+
pry (>= 0.9.12)
130+
shellany (~> 0.0)
131+
thor (>= 0.18.1)
132+
guard-compat (1.2.1)
133+
guard-livereload (2.5.2)
134+
em-websocket (~> 0.5)
135+
guard (~> 2.8)
136+
guard-compat (~> 1.0)
137+
multi_json (~> 1.8)
138+
http_parser.rb (0.6.0)
139+
i18n (1.8.2)
140+
concurrent-ruby (~> 1.0)
141+
io-like (0.3.1)
142+
jbuilder (2.10.0)
143+
activesupport (>= 5.0.0)
144+
jmespath (1.4.0)
145+
jquery (0.0.1)
146+
jquery-rails (4.4.0)
147+
rails-dom-testing (>= 1, < 3)
148+
railties (>= 4.2.0)
149+
thor (>= 0.14, < 2.0)
150+
listen (3.1.5)
151+
rb-fsevent (~> 0.9, >= 0.9.4)
152+
rb-inotify (~> 0.9, >= 0.9.7)
153+
ruby_dep (~> 1.2)
154+
loofah (2.5.0)
155+
crass (~> 1.0.2)
156+
nokogiri (>= 1.5.9)
157+
lumberjack (1.2.4)
158+
mail (2.7.1)
159+
mini_mime (>= 0.1.1)
160+
marcel (0.3.3)
161+
mimemagic (~> 0.3.2)
162+
method_source (1.0.0)
163+
mimemagic (0.3.5)
164+
mini_mime (1.0.2)
165+
mini_portile2 (2.4.0)
166+
minitest (5.14.0)
167+
msgpack (1.3.3)
168+
multi_json (1.14.1)
169+
nenv (0.3.0)
170+
nio4r (2.5.2)
171+
nokogiri (1.10.9)
172+
mini_portile2 (~> 2.4.0)
173+
notiffany (0.1.3)
174+
nenv (~> 0.1)
175+
shellany (~> 0.0)
176+
orm_adapter (0.5.0)
177+
pg (1.2.3)
178+
popper_js (1.16.0)
179+
pry (0.13.1)
180+
coderay (~> 1.1)
181+
method_source (~> 1.0)
182+
public_suffix (4.0.5)
183+
puma (3.12.4)
184+
rack (2.2.2)
185+
rack-test (1.1.0)
186+
rack (>= 1.0, < 3)
187+
rails (5.2.4.2)
188+
actioncable (= 5.2.4.2)
189+
actionmailer (= 5.2.4.2)
190+
actionpack (= 5.2.4.2)
191+
actionview (= 5.2.4.2)
192+
activejob (= 5.2.4.2)
193+
activemodel (= 5.2.4.2)
194+
activerecord (= 5.2.4.2)
195+
activestorage (= 5.2.4.2)
196+
activesupport (= 5.2.4.2)
197+
bundler (>= 1.3.0)
198+
railties (= 5.2.4.2)
199+
sprockets-rails (>= 2.0.0)
200+
rails-dom-testing (2.0.3)
201+
activesupport (>= 4.2.0)
202+
nokogiri (>= 1.6)
203+
rails-html-sanitizer (1.3.0)
204+
loofah (~> 2.3)
205+
railties (5.2.4.2)
206+
actionpack (= 5.2.4.2)
207+
activesupport (= 5.2.4.2)
208+
method_source
209+
rake (>= 0.8.7)
210+
thor (>= 0.19.0, < 2.0)
211+
rake (13.0.1)
212+
rb-fsevent (0.10.4)
213+
rb-inotify (0.10.1)
214+
ffi (~> 1.0)
215+
regexp_parser (1.7.0)
216+
responders (3.0.0)
217+
actionpack (>= 5.0)
218+
railties (>= 5.0)
219+
ruby_dep (1.5.0)
220+
rubyzip (2.3.0)
221+
sass (3.7.4)
222+
sass-listen (~> 4.0.0)
223+
sass-listen (4.0.0)
224+
rb-fsevent (~> 0.9, >= 0.9.4)
225+
rb-inotify (~> 0.9, >= 0.9.7)
226+
sass-rails (5.1.0)
227+
railties (>= 5.2.0)
228+
sass (~> 3.1)
229+
sprockets (>= 2.8, < 4.0)
230+
sprockets-rails (>= 2.0, < 4.0)
231+
tilt (>= 1.1, < 3)
232+
sassc (2.3.0)
233+
ffi (~> 1.9)
234+
sassc-rails (2.1.2)
235+
railties (>= 4.0.0)
236+
sassc (>= 2.0)
237+
sprockets (> 3.0)
238+
sprockets-rails
239+
tilt
240+
selenium-webdriver (3.142.7)
241+
childprocess (>= 0.5, < 4.0)
242+
rubyzip (>= 1.2.2)
243+
shellany (0.0.1)
244+
spring (2.1.0)
245+
spring-watcher-listen (2.0.1)
246+
listen (>= 2.7, < 4.0)
247+
spring (>= 1.2, < 3.0)
248+
sprockets (3.7.2)
249+
concurrent-ruby (~> 1.0)
250+
rack (> 1, < 3)
251+
sprockets-rails (3.2.1)
252+
actionpack (>= 4.0)
253+
activesupport (>= 4.0)
254+
sprockets (>= 3.0.0)
255+
thor (1.0.1)
256+
thread_safe (0.3.6)
257+
tilt (2.0.10)
258+
turbolinks (5.2.1)
259+
turbolinks-source (~> 5.2)
260+
turbolinks-source (5.2.0)
261+
tzinfo (1.2.7)
262+
thread_safe (~> 0.1)
263+
uglifier (4.2.0)
264+
execjs (>= 0.3.0, < 3)
265+
warden (1.2.8)
266+
rack (>= 2.0.6)
267+
web-console (3.7.0)
268+
actionview (>= 5.0)
269+
activemodel (>= 5.0)
270+
bindex (>= 0.4.0)
271+
railties (>= 5.0)
272+
websocket-driver (0.7.1)
273+
websocket-extensions (>= 0.1.0)
274+
websocket-extensions (0.1.4)
275+
xpath (3.2.0)
276+
nokogiri (~> 1.8)
277+
278+
PLATFORMS
279+
ruby
280+
281+
DEPENDENCIES
282+
aws-sdk-s3 (~> 1.64)
283+
better_errors
284+
binding_of_caller
285+
bootsnap (>= 1.1.0)
286+
bootstrap (~> 4.4)
287+
byebug
288+
capybara (>= 2.15)
289+
chromedriver-helper
290+
coffee-rails (~> 4.2)
291+
devise (~> 4.7)
292+
guard
293+
guard-livereload (~> 2.5)
294+
jbuilder (~> 2.5)
295+
jquery (~> 0.0.1)
296+
jquery-rails (~> 4.4)
297+
listen (>= 3.0.5, < 3.2)
298+
pg (>= 0.18, < 2.0)
299+
puma (~> 3.11)
300+
rails (~> 5.2.4, >= 5.2.4.2)
301+
sass-rails (~> 5.0)
302+
selenium-webdriver
303+
spring
304+
spring-watcher-listen (~> 2.0.0)
305+
turbolinks (~> 5)
306+
tzinfo-data
307+
uglifier (>= 1.3.0)
308+
web-console (>= 3.3.0)
309+
310+
RUBY VERSION
311+
ruby 2.7.0p0
312+
313+
BUNDLED WITH
314+
2.1.4

0 commit comments

Comments
 (0)