Skip to content

Commit 2632c70

Browse files
committed
first commit
0 parents  commit 2632c70

File tree

151 files changed

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

151 files changed

+8910
-0
lines changed

.browserslistrc

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

.gitignore

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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+
/node_modules
25+
/yarn-error.log
26+
27+
/public/assets
28+
.byebug_history
29+
30+
# Ignore master key for decrypting credentials and more.
31+
/config/master.key
32+
33+
/public/packs
34+
/public/packs-test
35+
/node_modules
36+
/yarn-error.log
37+
yarn-debug.log*
38+
.yarn-integrity

.postcssrc.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tailwindcss: "app/javascript/css/tailwind.config.js"

.ruby-version

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

Gemfile

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.3'
8+
# Use sqlite3 as the database for Active Record
9+
gem 'sqlite3'
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+
gem 'devise'
39+
40+
# tailwind
41+
gem 'webpacker', '~> 4.0.0'
42+
gem 'tailwindcss', '~> 1.0.0'
43+
44+
group :development, :test do
45+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
46+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
47+
end
48+
49+
group :development do
50+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
51+
gem 'web-console', '>= 3.3.0'
52+
gem 'listen', '>= 3.0.5', '< 3.2'
53+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
54+
gem 'spring'
55+
gem 'spring-watcher-listen', '~> 2.0.0'
56+
end
57+
58+
group :test do
59+
# Adds support for Capybara system testing and selenium driver
60+
gem 'capybara', '>= 2.15'
61+
gem 'selenium-webdriver'
62+
# Easy installation and use of chromedriver to run system tests with Chrome
63+
gem 'chromedriver-helper'
64+
end
65+
66+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
67+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

+241
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,241 @@
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+
bcrypt (3.1.13)
51+
bindex (0.8.1)
52+
bootsnap (1.4.4)
53+
msgpack (~> 1.0)
54+
builder (3.2.3)
55+
byebug (11.0.1)
56+
capybara (3.28.0)
57+
addressable
58+
mini_mime (>= 0.1.3)
59+
nokogiri (~> 1.8)
60+
rack (>= 1.6.0)
61+
rack-test (>= 0.6.3)
62+
regexp_parser (~> 1.5)
63+
xpath (~> 3.2)
64+
childprocess (1.0.1)
65+
rake (< 13.0)
66+
chromedriver-helper (2.1.1)
67+
archive-zip (~> 0.10)
68+
nokogiri (~> 1.8)
69+
coffee-rails (4.2.2)
70+
coffee-script (>= 2.2.0)
71+
railties (>= 4.0.0)
72+
coffee-script (2.4.1)
73+
coffee-script-source
74+
execjs
75+
coffee-script-source (1.12.2)
76+
concurrent-ruby (1.1.5)
77+
crass (1.0.4)
78+
devise (4.6.2)
79+
bcrypt (~> 3.0)
80+
orm_adapter (~> 0.1)
81+
railties (>= 4.1.0, < 6.0)
82+
responders
83+
warden (~> 1.2.3)
84+
erubi (1.8.0)
85+
execjs (2.7.0)
86+
ffi (1.11.1)
87+
globalid (0.4.2)
88+
activesupport (>= 4.2.0)
89+
i18n (1.6.0)
90+
concurrent-ruby (~> 1.0)
91+
io-like (0.3.0)
92+
jbuilder (2.9.1)
93+
activesupport (>= 4.2.0)
94+
listen (3.1.5)
95+
rb-fsevent (~> 0.9, >= 0.9.4)
96+
rb-inotify (~> 0.9, >= 0.9.7)
97+
ruby_dep (~> 1.2)
98+
loofah (2.2.3)
99+
crass (~> 1.0.2)
100+
nokogiri (>= 1.5.9)
101+
mail (2.7.1)
102+
mini_mime (>= 0.1.1)
103+
marcel (0.3.3)
104+
mimemagic (~> 0.3.2)
105+
method_source (0.9.2)
106+
mimemagic (0.3.3)
107+
mini_mime (1.0.2)
108+
mini_portile2 (2.4.0)
109+
minitest (5.11.3)
110+
msgpack (1.3.1)
111+
nio4r (2.4.0)
112+
nokogiri (1.10.4)
113+
mini_portile2 (~> 2.4.0)
114+
orm_adapter (0.5.0)
115+
public_suffix (3.1.1)
116+
puma (3.12.1)
117+
rack (2.0.7)
118+
rack-proxy (0.6.5)
119+
rack
120+
rack-test (1.1.0)
121+
rack (>= 1.0, < 3)
122+
rails (5.2.3)
123+
actioncable (= 5.2.3)
124+
actionmailer (= 5.2.3)
125+
actionpack (= 5.2.3)
126+
actionview (= 5.2.3)
127+
activejob (= 5.2.3)
128+
activemodel (= 5.2.3)
129+
activerecord (= 5.2.3)
130+
activestorage (= 5.2.3)
131+
activesupport (= 5.2.3)
132+
bundler (>= 1.3.0)
133+
railties (= 5.2.3)
134+
sprockets-rails (>= 2.0.0)
135+
rails-dom-testing (2.0.3)
136+
activesupport (>= 4.2.0)
137+
nokogiri (>= 1.6)
138+
rails-html-sanitizer (1.2.0)
139+
loofah (~> 2.2, >= 2.2.2)
140+
railties (5.2.3)
141+
actionpack (= 5.2.3)
142+
activesupport (= 5.2.3)
143+
method_source
144+
rake (>= 0.8.7)
145+
thor (>= 0.19.0, < 2.0)
146+
rake (12.3.3)
147+
rb-fsevent (0.10.3)
148+
rb-inotify (0.10.0)
149+
ffi (~> 1.0)
150+
regexp_parser (1.6.0)
151+
responders (3.0.0)
152+
actionpack (>= 5.0)
153+
railties (>= 5.0)
154+
ruby_dep (1.5.0)
155+
rubyzip (1.2.3)
156+
sass (3.7.4)
157+
sass-listen (~> 4.0.0)
158+
sass-listen (4.0.0)
159+
rb-fsevent (~> 0.9, >= 0.9.4)
160+
rb-inotify (~> 0.9, >= 0.9.7)
161+
sass-rails (5.1.0)
162+
railties (>= 5.2.0)
163+
sass (~> 3.1)
164+
sprockets (>= 2.8, < 4.0)
165+
sprockets-rails (>= 2.0, < 4.0)
166+
tilt (>= 1.1, < 3)
167+
selenium-webdriver (3.142.3)
168+
childprocess (>= 0.5, < 2.0)
169+
rubyzip (~> 1.2, >= 1.2.2)
170+
spring (2.1.0)
171+
spring-watcher-listen (2.0.1)
172+
listen (>= 2.7, < 4.0)
173+
spring (>= 1.2, < 3.0)
174+
sprockets (3.7.2)
175+
concurrent-ruby (~> 1.0)
176+
rack (> 1, < 3)
177+
sprockets-rails (3.2.1)
178+
actionpack (>= 4.0)
179+
activesupport (>= 4.0)
180+
sprockets (>= 3.0.0)
181+
sqlite3 (1.4.1)
182+
tailwindcss (1.0.1)
183+
railties (>= 4.1.0, < 6.0)
184+
thor (0.20.3)
185+
thread_safe (0.3.6)
186+
tilt (2.0.9)
187+
turbolinks (5.2.0)
188+
turbolinks-source (~> 5.2)
189+
turbolinks-source (5.2.0)
190+
tzinfo (1.2.5)
191+
thread_safe (~> 0.1)
192+
uglifier (4.1.20)
193+
execjs (>= 0.3.0, < 3)
194+
warden (1.2.8)
195+
rack (>= 2.0.6)
196+
web-console (3.7.0)
197+
actionview (>= 5.0)
198+
activemodel (>= 5.0)
199+
bindex (>= 0.4.0)
200+
railties (>= 5.0)
201+
webpacker (4.0.7)
202+
activesupport (>= 4.2)
203+
rack-proxy (>= 0.6.1)
204+
railties (>= 4.2)
205+
websocket-driver (0.7.1)
206+
websocket-extensions (>= 0.1.0)
207+
websocket-extensions (0.1.4)
208+
xpath (3.2.0)
209+
nokogiri (~> 1.8)
210+
211+
PLATFORMS
212+
ruby
213+
214+
DEPENDENCIES
215+
bootsnap (>= 1.1.0)
216+
byebug
217+
capybara (>= 2.15)
218+
chromedriver-helper
219+
coffee-rails (~> 4.2)
220+
devise
221+
jbuilder (~> 2.5)
222+
listen (>= 3.0.5, < 3.2)
223+
puma (~> 3.11)
224+
rails (~> 5.2.3)
225+
sass-rails (~> 5.0)
226+
selenium-webdriver
227+
spring
228+
spring-watcher-listen (~> 2.0.0)
229+
sqlite3
230+
tailwindcss (~> 1.0.0)
231+
turbolinks (~> 5)
232+
tzinfo-data
233+
uglifier (>= 1.3.0)
234+
web-console (>= 3.3.0)
235+
webpacker (~> 4.0.0)
236+
237+
RUBY VERSION
238+
ruby 2.6.3p62
239+
240+
BUNDLED WITH
241+
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)