Skip to content

Commit ed6f292

Browse files
committed
Initial commit
0 parents  commit ed6f292

File tree

100 files changed

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

100 files changed

+8003
-0
lines changed

.babelrc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"presets": [
3+
["env", {
4+
"modules": false,
5+
"targets": {
6+
"browsers": "> 1%",
7+
"uglify": true
8+
},
9+
"useBuiltIns": true
10+
}]
11+
],
12+
13+
"plugins": [
14+
"syntax-dynamic-import",
15+
"transform-object-rest-spread",
16+
["transform-class-properties", { "spec": true }]
17+
]
18+
}

.gitignore

Lines changed: 38 additions & 0 deletions
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 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+
/node_modules
21+
/yarn-error.log
22+
23+
/public/assets
24+
.byebug_history
25+
26+
# Ignore master key for decrypting credentials and more.
27+
/config/master.key
28+
29+
/config/database.yml
30+
/config/ssl/*
31+
!/config/ssl/.keep
32+
33+
/public/packs
34+
/public/packs-test
35+
36+
/node_modules
37+
yarn-debug.log*
38+
.yarn-integrity

.postcssrc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
plugins:
2+
postcss-import: {}
3+
postcss-cssnext: {}

Gemfile

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '2.4.2'
5+
6+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7+
gem 'rails', '~> 5.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', '~> 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+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
20+
gem 'jbuilder', '~> 2.5'
21+
# Use ActiveModel has_secure_password
22+
# gem 'bcrypt', '~> 3.1.7'
23+
24+
# Use ActiveStorage variant
25+
# gem 'mini_magick', '~> 4.8'
26+
27+
# Use Capistrano for deployment
28+
# gem 'capistrano-rails', group: :development
29+
30+
gem 'webpacker'
31+
32+
# Reduces boot times through caching; required in config/boot.rb
33+
gem 'bootsnap', '>= 1.1.0', require: false
34+
35+
group :development, :test do
36+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
37+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
38+
end
39+
40+
group :development do
41+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
42+
gem 'web-console', '>= 3.3.0'
43+
gem 'listen', '>= 3.0.5', '< 3.2'
44+
end
45+
46+
group :test do
47+
# Adds support for Capybara system testing and selenium driver
48+
gem 'capybara', '>= 2.15'
49+
gem 'selenium-webdriver'
50+
gem 'webdrivers', '~> 3.0'
51+
end
52+
53+
group :development, :test do
54+
gem 'awesome_print' # very useful for debugging & logging
55+
gem 'binding_of_caller', require: false
56+
gem 'factory_bot_rails'
57+
gem 'pry-byebug'
58+
gem 'rspec-rails'
59+
end
60+
61+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
62+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

Lines changed: 243 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,243 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (5.2.1)
5+
actionpack (= 5.2.1)
6+
nio4r (~> 2.0)
7+
websocket-driver (>= 0.6.1)
8+
actionmailer (5.2.1)
9+
actionpack (= 5.2.1)
10+
actionview (= 5.2.1)
11+
activejob (= 5.2.1)
12+
mail (~> 2.5, >= 2.5.4)
13+
rails-dom-testing (~> 2.0)
14+
actionpack (5.2.1)
15+
actionview (= 5.2.1)
16+
activesupport (= 5.2.1)
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.1)
22+
activesupport (= 5.2.1)
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.1)
28+
activesupport (= 5.2.1)
29+
globalid (>= 0.3.6)
30+
activemodel (5.2.1)
31+
activesupport (= 5.2.1)
32+
activerecord (5.2.1)
33+
activemodel (= 5.2.1)
34+
activesupport (= 5.2.1)
35+
arel (>= 9.0)
36+
activestorage (5.2.1)
37+
actionpack (= 5.2.1)
38+
activerecord (= 5.2.1)
39+
marcel (~> 0.3.1)
40+
activesupport (5.2.1)
41+
concurrent-ruby (~> 1.0, >= 1.0.2)
42+
i18n (>= 0.7, < 2)
43+
minitest (~> 5.1)
44+
tzinfo (~> 1.1)
45+
addressable (2.5.2)
46+
public_suffix (>= 2.0.2, < 4.0)
47+
arel (9.0.0)
48+
awesome_print (1.8.0)
49+
bindex (0.5.0)
50+
binding_of_caller (0.8.0)
51+
debug_inspector (>= 0.0.1)
52+
bootsnap (1.3.1)
53+
msgpack (~> 1.0)
54+
builder (3.2.3)
55+
byebug (10.0.2)
56+
capybara (3.6.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+
xpath (~> 3.1)
63+
childprocess (0.9.0)
64+
ffi (~> 1.0, >= 1.0.11)
65+
coderay (1.1.2)
66+
concurrent-ruby (1.0.5)
67+
crass (1.0.4)
68+
debug_inspector (0.0.3)
69+
diff-lcs (1.3)
70+
erubi (1.7.1)
71+
execjs (2.7.0)
72+
factory_bot (4.10.0)
73+
activesupport (>= 3.0.0)
74+
factory_bot_rails (4.10.0)
75+
factory_bot (~> 4.10.0)
76+
railties (>= 3.0.0)
77+
ffi (1.9.25)
78+
globalid (0.4.1)
79+
activesupport (>= 4.2.0)
80+
i18n (1.1.0)
81+
concurrent-ruby (~> 1.0)
82+
jbuilder (2.7.0)
83+
activesupport (>= 4.2.0)
84+
multi_json (>= 1.2)
85+
listen (3.1.5)
86+
rb-fsevent (~> 0.9, >= 0.9.4)
87+
rb-inotify (~> 0.9, >= 0.9.7)
88+
ruby_dep (~> 1.2)
89+
loofah (2.2.2)
90+
crass (~> 1.0.2)
91+
nokogiri (>= 1.5.9)
92+
mail (2.7.0)
93+
mini_mime (>= 0.1.1)
94+
marcel (0.3.2)
95+
mimemagic (~> 0.3.2)
96+
method_source (0.9.0)
97+
mimemagic (0.3.2)
98+
mini_mime (1.0.1)
99+
mini_portile2 (2.3.0)
100+
minitest (5.11.3)
101+
msgpack (1.2.4)
102+
multi_json (1.13.1)
103+
nio4r (2.3.1)
104+
nokogiri (1.8.4)
105+
mini_portile2 (~> 2.3.0)
106+
pg (1.0.0)
107+
pry (0.11.3)
108+
coderay (~> 1.1.0)
109+
method_source (~> 0.9.0)
110+
pry-byebug (3.6.0)
111+
byebug (~> 10.0)
112+
pry (~> 0.10)
113+
public_suffix (3.0.3)
114+
puma (3.12.0)
115+
rack (2.0.5)
116+
rack-proxy (0.6.4)
117+
rack
118+
rack-test (1.1.0)
119+
rack (>= 1.0, < 3)
120+
rails (5.2.1)
121+
actioncable (= 5.2.1)
122+
actionmailer (= 5.2.1)
123+
actionpack (= 5.2.1)
124+
actionview (= 5.2.1)
125+
activejob (= 5.2.1)
126+
activemodel (= 5.2.1)
127+
activerecord (= 5.2.1)
128+
activestorage (= 5.2.1)
129+
activesupport (= 5.2.1)
130+
bundler (>= 1.3.0)
131+
railties (= 5.2.1)
132+
sprockets-rails (>= 2.0.0)
133+
rails-dom-testing (2.0.3)
134+
activesupport (>= 4.2.0)
135+
nokogiri (>= 1.6)
136+
rails-html-sanitizer (1.0.4)
137+
loofah (~> 2.2, >= 2.2.2)
138+
railties (5.2.1)
139+
actionpack (= 5.2.1)
140+
activesupport (= 5.2.1)
141+
method_source
142+
rake (>= 0.8.7)
143+
thor (>= 0.19.0, < 2.0)
144+
rake (12.3.1)
145+
rb-fsevent (0.10.3)
146+
rb-inotify (0.9.10)
147+
ffi (>= 0.5.0, < 2)
148+
rspec-core (3.8.0)
149+
rspec-support (~> 3.8.0)
150+
rspec-expectations (3.8.1)
151+
diff-lcs (>= 1.2.0, < 2.0)
152+
rspec-support (~> 3.8.0)
153+
rspec-mocks (3.8.0)
154+
diff-lcs (>= 1.2.0, < 2.0)
155+
rspec-support (~> 3.8.0)
156+
rspec-rails (3.8.0)
157+
actionpack (>= 3.0)
158+
activesupport (>= 3.0)
159+
railties (>= 3.0)
160+
rspec-core (~> 3.8.0)
161+
rspec-expectations (~> 3.8.0)
162+
rspec-mocks (~> 3.8.0)
163+
rspec-support (~> 3.8.0)
164+
rspec-support (3.8.0)
165+
ruby_dep (1.5.0)
166+
rubyzip (1.2.1)
167+
sass (3.5.7)
168+
sass-listen (~> 4.0.0)
169+
sass-listen (4.0.0)
170+
rb-fsevent (~> 0.9, >= 0.9.4)
171+
rb-inotify (~> 0.9, >= 0.9.7)
172+
sass-rails (5.0.7)
173+
railties (>= 4.0.0, < 6)
174+
sass (~> 3.1)
175+
sprockets (>= 2.8, < 4.0)
176+
sprockets-rails (>= 2.0, < 4.0)
177+
tilt (>= 1.1, < 3)
178+
selenium-webdriver (3.14.0)
179+
childprocess (~> 0.5)
180+
rubyzip (~> 1.2)
181+
sprockets (3.7.2)
182+
concurrent-ruby (~> 1.0)
183+
rack (> 1, < 3)
184+
sprockets-rails (3.2.1)
185+
actionpack (>= 4.0)
186+
activesupport (>= 4.0)
187+
sprockets (>= 3.0.0)
188+
thor (0.20.0)
189+
thread_safe (0.3.6)
190+
tilt (2.0.8)
191+
tzinfo (1.2.5)
192+
thread_safe (~> 0.1)
193+
uglifier (4.1.18)
194+
execjs (>= 0.3.0, < 3)
195+
web-console (3.6.2)
196+
actionview (>= 5.0)
197+
activemodel (>= 5.0)
198+
bindex (>= 0.4.0)
199+
railties (>= 5.0)
200+
webdrivers (3.3.3)
201+
nokogiri (~> 1.6)
202+
rubyzip (~> 1.0)
203+
selenium-webdriver (~> 3.0)
204+
webpacker (3.5.5)
205+
activesupport (>= 4.2)
206+
rack-proxy (>= 0.6.1)
207+
railties (>= 4.2)
208+
websocket-driver (0.7.0)
209+
websocket-extensions (>= 0.1.0)
210+
websocket-extensions (0.1.3)
211+
xpath (3.1.0)
212+
nokogiri (~> 1.8)
213+
214+
PLATFORMS
215+
ruby
216+
217+
DEPENDENCIES
218+
awesome_print
219+
binding_of_caller
220+
bootsnap (>= 1.1.0)
221+
byebug
222+
capybara (>= 2.15)
223+
factory_bot_rails
224+
jbuilder (~> 2.5)
225+
listen (>= 3.0.5, < 3.2)
226+
pg (>= 0.18, < 2.0)
227+
pry-byebug
228+
puma (~> 3.11)
229+
rails (~> 5.2.1)
230+
rspec-rails
231+
sass-rails (~> 5.0)
232+
selenium-webdriver
233+
tzinfo-data
234+
uglifier (>= 1.3.0)
235+
web-console (>= 3.3.0)
236+
webdrivers (~> 3.0)
237+
webpacker
238+
239+
RUBY VERSION
240+
ruby 2.4.2p198
241+
242+
BUNDLED WITH
243+
1.16.4

Procfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
web: bundle exec puma -b 'ssl://127.0.0.1:$PORT?key=config/ssl/localhost.ross.key&cert=config/ssl/localhost.ross.crt'
2+
webpack: yarn install && bin/webpack-dev-server

0 commit comments

Comments
 (0)