Skip to content

Commit 206501c

Browse files
committed
initial
0 parents  commit 206501c

File tree

105 files changed

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

105 files changed

+8796
-0
lines changed

.babelrc

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"presets": [
3+
["env", {
4+
"modules": false,
5+
"targets": {
6+
"browsers": "> 1%",
7+
"uglify": true,
8+
"node": "current"
9+
},
10+
"useBuiltIns": true
11+
}]
12+
],
13+
14+
"plugins": [
15+
"syntax-dynamic-import",
16+
"transform-object-rest-spread",
17+
["transform-class-properties", { "spec": true }]
18+
],
19+
"env": {
20+
"test": {
21+
"presets": [
22+
["env", { "targets": { "node": "current" }}]
23+
]
24+
}
25+
}
26+
}

.gitignore

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
/public/packs
33+
/public/packs-test
34+
/node_modules
35+
yarn-debug.log*
36+
.yarn-integrity

.postcssrc.yml

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

.ruby-version

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

Gemfile

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '2.4.1'
5+
6+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7+
gem 'rails', '~> 5.2.1'
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+
# 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+
group :development, :test do
42+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
43+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
44+
end
45+
46+
group :development do
47+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
48+
gem 'web-console', '>= 3.3.0'
49+
gem 'listen', '>= 3.0.5', '< 3.2'
50+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
51+
gem 'spring'
52+
gem 'spring-watcher-listen', '~> 2.0.0'
53+
end
54+
55+
group :test do
56+
# Adds support for Capybara system testing and selenium driver
57+
gem 'capybara', '>= 2.15'
58+
gem 'selenium-webdriver'
59+
# Easy installation and use of chromedriver to run system tests with Chrome
60+
gem 'chromedriver-helper'
61+
end
62+
63+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
64+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
65+
gem 'vuejs', github: 'ytbryan/vuejs'

Gemfile.lock

+234
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,234 @@
1+
GIT
2+
remote: https://github.com/ytbryan/vuejs.git
3+
revision: 1fb08acbe0212d2b3c02a4ffc4e6a76698827a4c
4+
specs:
5+
vuejs (1.1.0.beta9)
6+
7+
GEM
8+
remote: https://rubygems.org/
9+
specs:
10+
actioncable (5.2.1)
11+
actionpack (= 5.2.1)
12+
nio4r (~> 2.0)
13+
websocket-driver (>= 0.6.1)
14+
actionmailer (5.2.1)
15+
actionpack (= 5.2.1)
16+
actionview (= 5.2.1)
17+
activejob (= 5.2.1)
18+
mail (~> 2.5, >= 2.5.4)
19+
rails-dom-testing (~> 2.0)
20+
actionpack (5.2.1)
21+
actionview (= 5.2.1)
22+
activesupport (= 5.2.1)
23+
rack (~> 2.0)
24+
rack-test (>= 0.6.3)
25+
rails-dom-testing (~> 2.0)
26+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
27+
actionview (5.2.1)
28+
activesupport (= 5.2.1)
29+
builder (~> 3.1)
30+
erubi (~> 1.4)
31+
rails-dom-testing (~> 2.0)
32+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
33+
activejob (5.2.1)
34+
activesupport (= 5.2.1)
35+
globalid (>= 0.3.6)
36+
activemodel (5.2.1)
37+
activesupport (= 5.2.1)
38+
activerecord (5.2.1)
39+
activemodel (= 5.2.1)
40+
activesupport (= 5.2.1)
41+
arel (>= 9.0)
42+
activestorage (5.2.1)
43+
actionpack (= 5.2.1)
44+
activerecord (= 5.2.1)
45+
marcel (~> 0.3.1)
46+
activesupport (5.2.1)
47+
concurrent-ruby (~> 1.0, >= 1.0.2)
48+
i18n (>= 0.7, < 2)
49+
minitest (~> 5.1)
50+
tzinfo (~> 1.1)
51+
addressable (2.5.2)
52+
public_suffix (>= 2.0.2, < 4.0)
53+
archive-zip (0.11.0)
54+
io-like (~> 0.3.0)
55+
arel (9.0.0)
56+
bindex (0.5.0)
57+
bootsnap (1.3.2)
58+
msgpack (~> 1.0)
59+
builder (3.2.3)
60+
byebug (10.0.2)
61+
capybara (3.10.1)
62+
addressable
63+
mini_mime (>= 0.1.3)
64+
nokogiri (~> 1.8)
65+
rack (>= 1.6.0)
66+
rack-test (>= 0.6.3)
67+
regexp_parser (~> 1.2)
68+
xpath (~> 3.2)
69+
childprocess (0.9.0)
70+
ffi (~> 1.0, >= 1.0.11)
71+
chromedriver-helper (2.1.0)
72+
archive-zip (~> 0.10)
73+
nokogiri (~> 1.8)
74+
coffee-rails (4.2.2)
75+
coffee-script (>= 2.2.0)
76+
railties (>= 4.0.0)
77+
coffee-script (2.4.1)
78+
coffee-script-source
79+
execjs
80+
coffee-script-source (1.12.2)
81+
concurrent-ruby (1.1.3)
82+
crass (1.0.4)
83+
erubi (1.7.1)
84+
execjs (2.7.0)
85+
ffi (1.9.25)
86+
globalid (0.4.1)
87+
activesupport (>= 4.2.0)
88+
i18n (1.1.1)
89+
concurrent-ruby (~> 1.0)
90+
io-like (0.3.0)
91+
jbuilder (2.8.0)
92+
activesupport (>= 4.2.0)
93+
multi_json (>= 1.2)
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.2)
107+
mini_mime (1.0.1)
108+
mini_portile2 (2.3.0)
109+
minitest (5.11.3)
110+
msgpack (1.2.4)
111+
multi_json (1.13.1)
112+
nio4r (2.3.1)
113+
nokogiri (1.8.5)
114+
mini_portile2 (~> 2.3.0)
115+
public_suffix (3.0.3)
116+
puma (3.12.0)
117+
rack (2.0.6)
118+
rack-proxy (0.6.5)
119+
rack
120+
rack-test (1.1.0)
121+
rack (>= 1.0, < 3)
122+
rails (5.2.1)
123+
actioncable (= 5.2.1)
124+
actionmailer (= 5.2.1)
125+
actionpack (= 5.2.1)
126+
actionview (= 5.2.1)
127+
activejob (= 5.2.1)
128+
activemodel (= 5.2.1)
129+
activerecord (= 5.2.1)
130+
activestorage (= 5.2.1)
131+
activesupport (= 5.2.1)
132+
bundler (>= 1.3.0)
133+
railties (= 5.2.1)
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.0.4)
139+
loofah (~> 2.2, >= 2.2.2)
140+
railties (5.2.1)
141+
actionpack (= 5.2.1)
142+
activesupport (= 5.2.1)
143+
method_source
144+
rake (>= 0.8.7)
145+
thor (>= 0.19.0, < 2.0)
146+
rake (12.3.1)
147+
rb-fsevent (0.10.3)
148+
rb-inotify (0.9.10)
149+
ffi (>= 0.5.0, < 2)
150+
regexp_parser (1.2.0)
151+
ruby_dep (1.5.0)
152+
rubyzip (1.2.2)
153+
sass (3.7.2)
154+
sass-listen (~> 4.0.0)
155+
sass-listen (4.0.0)
156+
rb-fsevent (~> 0.9, >= 0.9.4)
157+
rb-inotify (~> 0.9, >= 0.9.7)
158+
sass-rails (5.0.7)
159+
railties (>= 4.0.0, < 6)
160+
sass (~> 3.1)
161+
sprockets (>= 2.8, < 4.0)
162+
sprockets-rails (>= 2.0, < 4.0)
163+
tilt (>= 1.1, < 3)
164+
selenium-webdriver (3.141.0)
165+
childprocess (~> 0.5)
166+
rubyzip (~> 1.2, >= 1.2.2)
167+
spring (2.0.2)
168+
activesupport (>= 4.2)
169+
spring-watcher-listen (2.0.1)
170+
listen (>= 2.7, < 4.0)
171+
spring (>= 1.2, < 3.0)
172+
sprockets (3.7.2)
173+
concurrent-ruby (~> 1.0)
174+
rack (> 1, < 3)
175+
sprockets-rails (3.2.1)
176+
actionpack (>= 4.0)
177+
activesupport (>= 4.0)
178+
sprockets (>= 3.0.0)
179+
sqlite3 (1.3.13)
180+
thor (0.20.3)
181+
thread_safe (0.3.6)
182+
tilt (2.0.8)
183+
turbolinks (5.2.0)
184+
turbolinks-source (~> 5.2)
185+
turbolinks-source (5.2.0)
186+
tzinfo (1.2.5)
187+
thread_safe (~> 0.1)
188+
uglifier (4.1.19)
189+
execjs (>= 0.3.0, < 3)
190+
web-console (3.7.0)
191+
actionview (>= 5.0)
192+
activemodel (>= 5.0)
193+
bindex (>= 0.4.0)
194+
railties (>= 5.0)
195+
webpacker (3.5.5)
196+
activesupport (>= 4.2)
197+
rack-proxy (>= 0.6.1)
198+
railties (>= 4.2)
199+
websocket-driver (0.7.0)
200+
websocket-extensions (>= 0.1.0)
201+
websocket-extensions (0.1.3)
202+
xpath (3.2.0)
203+
nokogiri (~> 1.8)
204+
205+
PLATFORMS
206+
ruby
207+
208+
DEPENDENCIES
209+
bootsnap (>= 1.1.0)
210+
byebug
211+
capybara (>= 2.15)
212+
chromedriver-helper
213+
coffee-rails (~> 4.2)
214+
jbuilder (~> 2.5)
215+
listen (>= 3.0.5, < 3.2)
216+
puma (~> 3.11)
217+
rails (~> 5.2.1)
218+
sass-rails (~> 5.0)
219+
selenium-webdriver
220+
spring
221+
spring-watcher-listen (~> 2.0.0)
222+
sqlite3
223+
turbolinks (~> 5)
224+
tzinfo-data
225+
uglifier (>= 1.3.0)
226+
vuejs!
227+
web-console (>= 3.3.0)
228+
webpacker
229+
230+
RUBY VERSION
231+
ruby 2.4.1p111
232+
233+
BUNDLED WITH
234+
1.16.2

Procfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rails: rails server -p 3000
2+
webpack: ./bin/webpack-dev-server

0 commit comments

Comments
 (0)