Skip to content

Commit 0c44381

Browse files
committed
first commit
0 parents  commit 0c44381

File tree

124 files changed

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

+10053
-0
lines changed

.browserslistrc

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

.ruby-version

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

Gemfile

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
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', '~> 5.2.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.0'
14+
# Use Uglifier as compressor for JavaScript assets
15+
gem 'uglifier', '>= 1.3.0'
16+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
17+
gem 'webpacker'
18+
# See https://github.com/rails/execjs#readme for more supported runtimes
19+
# gem 'mini_racer', platforms: :ruby
20+
21+
# Use CoffeeScript for .coffee assets and views
22+
gem 'coffee-rails', '~> 4.2'
23+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
24+
gem 'turbolinks', '~> 5'
25+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
26+
gem 'jbuilder', '~> 2.5'
27+
# Use Redis adapter to run Action Cable in production
28+
# gem 'redis', '~> 4.0'
29+
# Use ActiveModel has_secure_password
30+
# gem 'bcrypt', '~> 3.1.7'
31+
32+
# Use ActiveStorage variant
33+
# gem 'mini_magick', '~> 4.8'
34+
35+
# Use Capistrano for deployment
36+
# gem 'capistrano-rails', group: :development
37+
38+
# Reduces boot times through caching; required in config/boot.rb
39+
gem 'bootsnap', '>= 1.1.0', require: false
40+
41+
42+
gem 'slim-rails'
43+
gem 'jquery-rails'
44+
gem 'bootstrap', '~> 4.1.1'
45+
gem 'rails-i18n'
46+
gem 'devise'
47+
48+
49+
group :development, :test do
50+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
51+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
52+
53+
# not default
54+
gem 'pry-byebug'
55+
end
56+
57+
group :development do
58+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
59+
gem 'web-console', '>= 3.3.0'
60+
gem 'listen', '>= 3.0.5', '< 3.2'
61+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
62+
gem 'spring'
63+
gem 'spring-watcher-listen', '~> 2.0.0'
64+
end
65+
66+
group :test do
67+
# Adds support for Capybara system testing and selenium driver
68+
gem 'capybara', '>= 2.15'
69+
gem 'selenium-webdriver'
70+
# Easy installation and use of chromedriver to run system tests with Chrome
71+
gem 'chromedriver-helper'
72+
end
73+
74+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
75+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

+272
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,272 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (5.2.3)
5+
actionpack (= 5.2.3)
6+
nio4r (~> 2.0)
7+
websocket-driver (>= 0.6.1)
8+
actionmailer (5.2.3)
9+
actionpack (= 5.2.3)
10+
actionview (= 5.2.3)
11+
activejob (= 5.2.3)
12+
mail (~> 2.5, >= 2.5.4)
13+
rails-dom-testing (~> 2.0)
14+
actionpack (5.2.3)
15+
actionview (= 5.2.3)
16+
activesupport (= 5.2.3)
17+
rack (~> 2.0)
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.3)
22+
activesupport (= 5.2.3)
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.3)
28+
activesupport (= 5.2.3)
29+
globalid (>= 0.3.6)
30+
activemodel (5.2.3)
31+
activesupport (= 5.2.3)
32+
activerecord (5.2.3)
33+
activemodel (= 5.2.3)
34+
activesupport (= 5.2.3)
35+
arel (>= 9.0)
36+
activestorage (5.2.3)
37+
actionpack (= 5.2.3)
38+
activerecord (= 5.2.3)
39+
marcel (~> 0.3.1)
40+
activesupport (5.2.3)
41+
concurrent-ruby (~> 1.0, >= 1.0.2)
42+
i18n (>= 0.7, < 2)
43+
minitest (~> 5.1)
44+
tzinfo (~> 1.1)
45+
addressable (2.6.0)
46+
public_suffix (>= 2.0.2, < 4.0)
47+
archive-zip (0.12.0)
48+
io-like (~> 0.3.0)
49+
arel (9.0.0)
50+
autoprefixer-rails (9.6.1)
51+
execjs
52+
bcrypt (3.1.13)
53+
bindex (0.8.1)
54+
bootsnap (1.4.4)
55+
msgpack (~> 1.0)
56+
bootstrap (4.1.3)
57+
autoprefixer-rails (>= 6.0.3)
58+
popper_js (>= 1.12.9, < 2)
59+
sass (>= 3.5.2)
60+
builder (3.2.3)
61+
byebug (11.0.1)
62+
capybara (3.28.0)
63+
addressable
64+
mini_mime (>= 0.1.3)
65+
nokogiri (~> 1.8)
66+
rack (>= 1.6.0)
67+
rack-test (>= 0.6.3)
68+
regexp_parser (~> 1.5)
69+
xpath (~> 3.2)
70+
childprocess (1.0.1)
71+
rake (< 13.0)
72+
chromedriver-helper (2.1.1)
73+
archive-zip (~> 0.10)
74+
nokogiri (~> 1.8)
75+
coderay (1.1.2)
76+
coffee-rails (4.2.2)
77+
coffee-script (>= 2.2.0)
78+
railties (>= 4.0.0)
79+
coffee-script (2.4.1)
80+
coffee-script-source
81+
execjs
82+
coffee-script-source (1.12.2)
83+
concurrent-ruby (1.1.5)
84+
crass (1.0.4)
85+
devise (4.6.2)
86+
bcrypt (~> 3.0)
87+
orm_adapter (~> 0.1)
88+
railties (>= 4.1.0, < 6.0)
89+
responders
90+
warden (~> 1.2.3)
91+
erubi (1.8.0)
92+
execjs (2.7.0)
93+
ffi (1.11.1)
94+
globalid (0.4.2)
95+
activesupport (>= 4.2.0)
96+
i18n (1.6.0)
97+
concurrent-ruby (~> 1.0)
98+
io-like (0.3.0)
99+
jbuilder (2.9.1)
100+
activesupport (>= 4.2.0)
101+
jquery-rails (4.3.5)
102+
rails-dom-testing (>= 1, < 3)
103+
railties (>= 4.2.0)
104+
thor (>= 0.14, < 2.0)
105+
listen (3.1.5)
106+
rb-fsevent (~> 0.9, >= 0.9.4)
107+
rb-inotify (~> 0.9, >= 0.9.7)
108+
ruby_dep (~> 1.2)
109+
loofah (2.2.3)
110+
crass (~> 1.0.2)
111+
nokogiri (>= 1.5.9)
112+
mail (2.7.1)
113+
mini_mime (>= 0.1.1)
114+
marcel (0.3.3)
115+
mimemagic (~> 0.3.2)
116+
method_source (0.9.2)
117+
mimemagic (0.3.3)
118+
mini_mime (1.0.2)
119+
mini_portile2 (2.4.0)
120+
minitest (5.11.3)
121+
msgpack (1.3.1)
122+
nio4r (2.4.0)
123+
nokogiri (1.10.3)
124+
mini_portile2 (~> 2.4.0)
125+
orm_adapter (0.5.0)
126+
pg (1.1.4)
127+
popper_js (1.14.5)
128+
pry (0.12.2)
129+
coderay (~> 1.1.0)
130+
method_source (~> 0.9.0)
131+
pry-byebug (3.7.0)
132+
byebug (~> 11.0)
133+
pry (~> 0.10)
134+
public_suffix (3.1.1)
135+
puma (3.12.1)
136+
rack (2.0.7)
137+
rack-proxy (0.6.5)
138+
rack
139+
rack-test (1.1.0)
140+
rack (>= 1.0, < 3)
141+
rails (5.2.3)
142+
actioncable (= 5.2.3)
143+
actionmailer (= 5.2.3)
144+
actionpack (= 5.2.3)
145+
actionview (= 5.2.3)
146+
activejob (= 5.2.3)
147+
activemodel (= 5.2.3)
148+
activerecord (= 5.2.3)
149+
activestorage (= 5.2.3)
150+
activesupport (= 5.2.3)
151+
bundler (>= 1.3.0)
152+
railties (= 5.2.3)
153+
sprockets-rails (>= 2.0.0)
154+
rails-dom-testing (2.0.3)
155+
activesupport (>= 4.2.0)
156+
nokogiri (>= 1.6)
157+
rails-html-sanitizer (1.1.0)
158+
loofah (~> 2.2, >= 2.2.2)
159+
rails-i18n (5.1.3)
160+
i18n (>= 0.7, < 2)
161+
railties (>= 5.0, < 6)
162+
railties (5.2.3)
163+
actionpack (= 5.2.3)
164+
activesupport (= 5.2.3)
165+
method_source
166+
rake (>= 0.8.7)
167+
thor (>= 0.19.0, < 2.0)
168+
rake (12.3.3)
169+
rb-fsevent (0.10.3)
170+
rb-inotify (0.10.0)
171+
ffi (~> 1.0)
172+
regexp_parser (1.6.0)
173+
responders (3.0.0)
174+
actionpack (>= 5.0)
175+
railties (>= 5.0)
176+
ruby_dep (1.5.0)
177+
rubyzip (1.2.3)
178+
sass (3.7.4)
179+
sass-listen (~> 4.0.0)
180+
sass-listen (4.0.0)
181+
rb-fsevent (~> 0.9, >= 0.9.4)
182+
rb-inotify (~> 0.9, >= 0.9.7)
183+
sass-rails (5.0.7)
184+
railties (>= 4.0.0, < 6)
185+
sass (~> 3.1)
186+
sprockets (>= 2.8, < 4.0)
187+
sprockets-rails (>= 2.0, < 4.0)
188+
tilt (>= 1.1, < 3)
189+
selenium-webdriver (3.142.3)
190+
childprocess (>= 0.5, < 2.0)
191+
rubyzip (~> 1.2, >= 1.2.2)
192+
slim (4.0.1)
193+
temple (>= 0.7.6, < 0.9)
194+
tilt (>= 2.0.6, < 2.1)
195+
slim-rails (3.2.0)
196+
actionpack (>= 3.1)
197+
railties (>= 3.1)
198+
slim (>= 3.0, < 5.0)
199+
spring (2.1.0)
200+
spring-watcher-listen (2.0.1)
201+
listen (>= 2.7, < 4.0)
202+
spring (>= 1.2, < 3.0)
203+
sprockets (3.7.2)
204+
concurrent-ruby (~> 1.0)
205+
rack (> 1, < 3)
206+
sprockets-rails (3.2.1)
207+
actionpack (>= 4.0)
208+
activesupport (>= 4.0)
209+
sprockets (>= 3.0.0)
210+
temple (0.8.1)
211+
thor (0.20.3)
212+
thread_safe (0.3.6)
213+
tilt (2.0.9)
214+
turbolinks (5.2.0)
215+
turbolinks-source (~> 5.2)
216+
turbolinks-source (5.2.0)
217+
tzinfo (1.2.5)
218+
thread_safe (~> 0.1)
219+
uglifier (4.1.20)
220+
execjs (>= 0.3.0, < 3)
221+
warden (1.2.8)
222+
rack (>= 2.0.6)
223+
web-console (3.7.0)
224+
actionview (>= 5.0)
225+
activemodel (>= 5.0)
226+
bindex (>= 0.4.0)
227+
railties (>= 5.0)
228+
webpacker (4.0.7)
229+
activesupport (>= 4.2)
230+
rack-proxy (>= 0.6.1)
231+
railties (>= 4.2)
232+
websocket-driver (0.7.1)
233+
websocket-extensions (>= 0.1.0)
234+
websocket-extensions (0.1.4)
235+
xpath (3.2.0)
236+
nokogiri (~> 1.8)
237+
238+
PLATFORMS
239+
ruby
240+
241+
DEPENDENCIES
242+
bootsnap (>= 1.1.0)
243+
bootstrap (~> 4.1.1)
244+
byebug
245+
capybara (>= 2.15)
246+
chromedriver-helper
247+
coffee-rails (~> 4.2)
248+
devise
249+
jbuilder (~> 2.5)
250+
jquery-rails
251+
listen (>= 3.0.5, < 3.2)
252+
pg (>= 0.18, < 2.0)
253+
pry-byebug
254+
puma (~> 3.11)
255+
rails (~> 5.2.0)
256+
rails-i18n
257+
sass-rails (~> 5.0)
258+
selenium-webdriver
259+
slim-rails
260+
spring
261+
spring-watcher-listen (~> 2.0.0)
262+
turbolinks (~> 5)
263+
tzinfo-data
264+
uglifier (>= 1.3.0)
265+
web-console (>= 3.3.0)
266+
webpacker
267+
268+
RUBY VERSION
269+
ruby 2.6.3p62
270+
271+
BUNDLED WITH
272+
2.0.2

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

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//= link_tree ../images
2+
//= link_directory ../javascripts .js
3+
//= link_directory ../stylesheets .css

app/assets/images/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)