Skip to content

Commit a5e13c7

Browse files
committed
186
0 parents  commit a5e13c7

File tree

114 files changed

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

114 files changed

+9706
-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+
ruby-2.6.3

Gemfile

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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.rc1'
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.5'
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+
end
41+
42+
group :test do
43+
# Adds support for Capybara system testing and selenium driver
44+
gem 'capybara', '>= 2.15'
45+
gem 'selenium-webdriver'
46+
# Easy installation and use of web drivers to run system tests with browsers
47+
gem 'webdrivers'
48+
end
49+
50+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
51+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

+222
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,222 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (6.0.0.rc1)
5+
actionpack (= 6.0.0.rc1)
6+
nio4r (~> 2.0)
7+
websocket-driver (>= 0.6.1)
8+
actionmailbox (6.0.0.rc1)
9+
actionpack (= 6.0.0.rc1)
10+
activejob (= 6.0.0.rc1)
11+
activerecord (= 6.0.0.rc1)
12+
activestorage (= 6.0.0.rc1)
13+
activesupport (= 6.0.0.rc1)
14+
mail (>= 2.7.1)
15+
actionmailer (6.0.0.rc1)
16+
actionpack (= 6.0.0.rc1)
17+
actionview (= 6.0.0.rc1)
18+
activejob (= 6.0.0.rc1)
19+
mail (~> 2.5, >= 2.5.4)
20+
rails-dom-testing (~> 2.0)
21+
actionpack (6.0.0.rc1)
22+
actionview (= 6.0.0.rc1)
23+
activesupport (= 6.0.0.rc1)
24+
rack (~> 2.0)
25+
rack-test (>= 0.6.3)
26+
rails-dom-testing (~> 2.0)
27+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
28+
actiontext (6.0.0.rc1)
29+
actionpack (= 6.0.0.rc1)
30+
activerecord (= 6.0.0.rc1)
31+
activestorage (= 6.0.0.rc1)
32+
activesupport (= 6.0.0.rc1)
33+
nokogiri (>= 1.8.5)
34+
actionview (6.0.0.rc1)
35+
activesupport (= 6.0.0.rc1)
36+
builder (~> 3.1)
37+
erubi (~> 1.4)
38+
rails-dom-testing (~> 2.0)
39+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
40+
activejob (6.0.0.rc1)
41+
activesupport (= 6.0.0.rc1)
42+
globalid (>= 0.3.6)
43+
activemodel (6.0.0.rc1)
44+
activesupport (= 6.0.0.rc1)
45+
activerecord (6.0.0.rc1)
46+
activemodel (= 6.0.0.rc1)
47+
activesupport (= 6.0.0.rc1)
48+
activestorage (6.0.0.rc1)
49+
actionpack (= 6.0.0.rc1)
50+
activejob (= 6.0.0.rc1)
51+
activerecord (= 6.0.0.rc1)
52+
marcel (~> 0.3.1)
53+
activesupport (6.0.0.rc1)
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.4)
59+
addressable (2.6.0)
60+
public_suffix (>= 2.0.2, < 4.0)
61+
bindex (0.7.0)
62+
bootsnap (1.4.4)
63+
msgpack (~> 1.0)
64+
builder (3.2.3)
65+
byebug (11.0.1)
66+
capybara (3.18.0)
67+
addressable
68+
mini_mime (>= 0.1.3)
69+
nokogiri (~> 1.8)
70+
rack (>= 1.6.0)
71+
rack-test (>= 0.6.3)
72+
regexp_parser (~> 1.2)
73+
xpath (~> 3.2)
74+
childprocess (1.0.1)
75+
rake (< 13.0)
76+
concurrent-ruby (1.1.5)
77+
crass (1.0.4)
78+
erubi (1.8.0)
79+
ffi (1.10.0)
80+
globalid (0.4.2)
81+
activesupport (>= 4.2.0)
82+
i18n (1.6.0)
83+
concurrent-ruby (~> 1.0)
84+
jbuilder (2.8.0)
85+
activesupport (>= 4.2.0)
86+
multi_json (>= 1.2)
87+
listen (3.1.5)
88+
rb-fsevent (~> 0.9, >= 0.9.4)
89+
rb-inotify (~> 0.9, >= 0.9.7)
90+
ruby_dep (~> 1.2)
91+
loofah (2.2.3)
92+
crass (~> 1.0.2)
93+
nokogiri (>= 1.5.9)
94+
mail (2.7.1)
95+
mini_mime (>= 0.1.1)
96+
marcel (0.3.3)
97+
mimemagic (~> 0.3.2)
98+
method_source (0.9.2)
99+
mimemagic (0.3.3)
100+
mini_mime (1.0.1)
101+
mini_portile2 (2.4.0)
102+
minitest (5.11.3)
103+
msgpack (1.2.10)
104+
multi_json (1.13.1)
105+
nio4r (2.3.1)
106+
nokogiri (1.10.3)
107+
mini_portile2 (~> 2.4.0)
108+
public_suffix (3.0.3)
109+
puma (3.12.1)
110+
rack (2.0.7)
111+
rack-proxy (0.6.5)
112+
rack
113+
rack-test (1.1.0)
114+
rack (>= 1.0, < 3)
115+
rails (6.0.0.rc1)
116+
actioncable (= 6.0.0.rc1)
117+
actionmailbox (= 6.0.0.rc1)
118+
actionmailer (= 6.0.0.rc1)
119+
actionpack (= 6.0.0.rc1)
120+
actiontext (= 6.0.0.rc1)
121+
actionview (= 6.0.0.rc1)
122+
activejob (= 6.0.0.rc1)
123+
activemodel (= 6.0.0.rc1)
124+
activerecord (= 6.0.0.rc1)
125+
activestorage (= 6.0.0.rc1)
126+
activesupport (= 6.0.0.rc1)
127+
bundler (>= 1.3.0)
128+
railties (= 6.0.0.rc1)
129+
sprockets-rails (>= 2.0.0)
130+
rails-dom-testing (2.0.3)
131+
activesupport (>= 4.2.0)
132+
nokogiri (>= 1.6)
133+
rails-html-sanitizer (1.0.4)
134+
loofah (~> 2.2, >= 2.2.2)
135+
railties (6.0.0.rc1)
136+
actionpack (= 6.0.0.rc1)
137+
activesupport (= 6.0.0.rc1)
138+
method_source
139+
rake (>= 0.8.7)
140+
thor (>= 0.20.3, < 2.0)
141+
rake (12.3.2)
142+
rb-fsevent (0.10.3)
143+
rb-inotify (0.10.0)
144+
ffi (~> 1.0)
145+
regexp_parser (1.4.0)
146+
ruby_dep (1.5.0)
147+
rubyzip (1.2.2)
148+
sass (3.7.4)
149+
sass-listen (~> 4.0.0)
150+
sass-listen (4.0.0)
151+
rb-fsevent (~> 0.9, >= 0.9.4)
152+
rb-inotify (~> 0.9, >= 0.9.7)
153+
sass-rails (5.0.7)
154+
railties (>= 4.0.0, < 6)
155+
sass (~> 3.1)
156+
sprockets (>= 2.8, < 4.0)
157+
sprockets-rails (>= 2.0, < 4.0)
158+
tilt (>= 1.1, < 3)
159+
selenium-webdriver (3.142.0)
160+
childprocess (>= 0.5, < 2.0)
161+
rubyzip (~> 1.2, >= 1.2.2)
162+
sprockets (3.7.2)
163+
concurrent-ruby (~> 1.0)
164+
rack (> 1, < 3)
165+
sprockets-rails (3.2.1)
166+
actionpack (>= 4.0)
167+
activesupport (>= 4.0)
168+
sprockets (>= 3.0.0)
169+
sqlite3 (1.4.1)
170+
thor (0.20.3)
171+
thread_safe (0.3.6)
172+
tilt (2.0.9)
173+
turbolinks (5.2.0)
174+
turbolinks-source (~> 5.2)
175+
turbolinks-source (5.2.0)
176+
tzinfo (1.2.5)
177+
thread_safe (~> 0.1)
178+
web-console (4.0.0)
179+
actionview (>= 6.0.0.a)
180+
activemodel (>= 6.0.0.a)
181+
bindex (>= 0.4.0)
182+
railties (>= 6.0.0.a)
183+
webdrivers (3.8.0)
184+
nokogiri (~> 1.6)
185+
rubyzip (~> 1.0)
186+
selenium-webdriver (~> 3.0)
187+
webpacker (4.0.2)
188+
activesupport (>= 4.2)
189+
rack-proxy (>= 0.6.1)
190+
railties (>= 4.2)
191+
websocket-driver (0.7.0)
192+
websocket-extensions (>= 0.1.0)
193+
websocket-extensions (0.1.3)
194+
xpath (3.2.0)
195+
nokogiri (~> 1.8)
196+
zeitwerk (2.1.6)
197+
198+
PLATFORMS
199+
ruby
200+
201+
DEPENDENCIES
202+
bootsnap (>= 1.4.2)
203+
byebug
204+
capybara (>= 2.15)
205+
jbuilder (~> 2.5)
206+
listen (>= 3.0.5, < 3.2)
207+
puma (~> 3.11)
208+
rails (~> 6.0.0.rc1)
209+
sass-rails (~> 5)
210+
selenium-webdriver
211+
sqlite3 (~> 1.4)
212+
turbolinks (~> 5)
213+
tzinfo-data
214+
web-console (>= 3.3.0)
215+
webdrivers
216+
webpacker (~> 4.0)
217+
218+
RUBY VERSION
219+
ruby 2.6.3p62
220+
221+
BUNDLED WITH
222+
2.0.1

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.
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* This is a manifest file that'll be compiled into application.css, which will include all the files
3+
* listed below.
4+
*
5+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
6+
* vendor/assets/stylesheets directory can be referenced here using a relative path.
7+
*
8+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
9+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10+
* files in this directory. Styles in this file should be added after the last require_* statement.
11+
* It is generally better to create a new file per style scope.
12+
*
13+
*= require_tree .
14+
*= require_self
15+
*/

0 commit comments

Comments
 (0)