Skip to content

Commit 60df9b3

Browse files
committed
Init repo
0 parents  commit 60df9b3

File tree

171 files changed

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

171 files changed

+31326
-0
lines changed

.browserslistrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
defaults

.eslintrc.js

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
module.exports = {
2+
"parser": "@babel/eslint-parser",
3+
"env": {
4+
"browser": true,
5+
"node": true
6+
},
7+
"plugins": [
8+
"coffee",
9+
"import"
10+
],
11+
"settings": {
12+
"import/resolver": [
13+
"babel-module"
14+
]
15+
},
16+
"globals": {
17+
"define": true,
18+
"$": true,
19+
},
20+
"rules": {
21+
"no-unused-vars": [
22+
"warn",
23+
{
24+
"argsIgnorePattern": "^_"
25+
}
26+
],
27+
"import/no-unresolved": [
28+
2,
29+
{
30+
"ignore": [
31+
"\\.scss$"
32+
]
33+
}
34+
],
35+
"no-console": process.env.NODE_ENV === 'development' ? 0 : 2
36+
},
37+
"overrides": [
38+
{
39+
"files": ["**/*.coffee"],
40+
"parser": "eslint-plugin-coffee",
41+
"plugins": ["coffee"],
42+
"extends": [
43+
"plugin:coffee/eslint-recommended"
44+
],
45+
"rules": {
46+
"coffee/no-unused-vars": [
47+
"warn",
48+
{
49+
"argsIgnorePattern": "^_"
50+
}
51+
],
52+
}
53+
}
54+
]
55+
}

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# See https://git-scm.com/docs/gitattributes for more about git attribute files.
2+
3+
# Mark the database schema as having been generated.
4+
db/schema.rb linguist-generated
5+
6+
# Mark the yarn lockfile as having been generated.
7+
yarn.lock linguist-generated
8+
9+
# Mark any vendored files as having been vendored.
10+
vendor/* linguist-vendored

.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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-*
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
# Ignore pidfiles, but keep the directory.
21+
/tmp/pids/*
22+
!/tmp/pids/
23+
!/tmp/pids/.keep
24+
25+
# Ignore uploaded files in development.
26+
/storage/*
27+
!/storage/.keep
28+
29+
/public/assets
30+
.byebug_history
31+
32+
# Ignore master key for decrypting credentials and more.
33+
/config/master.key
34+
35+
/public/packs
36+
/public/packs-test
37+
/node_modules
38+
/yarn-error.log
39+
yarn-debug.log*
40+
.yarn-integrity
41+
42+
# Gems in development
43+
/vendor/gems

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.7.2

Gemfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '2.7.2'
5+
6+
gem 'rails', '~> 6.1'
7+
gem 'pg'
8+
gem 'puma'
9+
gem 'webpacker'
10+
gem 'bootsnap'
11+
gem 'haml'
12+
gem 'draper'
13+
gem 'ajax-datatables-rails', github: 'jbox-web/ajax-datatables-rails'
14+
gem 'datatables-factory', github: 'jbox-web/datatables-factory'
15+
16+
group :development do
17+
gem 'sqlite3'
18+
end

Gemfile.lock

Lines changed: 199 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,199 @@
1+
GIT
2+
remote: https://github.com/jbox-web/ajax-datatables-rails.git
3+
revision: 414d1699d3b90e8b9b30499882e280e884a03976
4+
specs:
5+
ajax-datatables-rails (1.2.0)
6+
railties (>= 5.1)
7+
zeitwerk
8+
9+
GIT
10+
remote: https://github.com/jbox-web/datatables-factory.git
11+
revision: 87ffdca9a34695c3478f0391b048221a371fdfcc
12+
specs:
13+
datatables-factory (1.0.0)
14+
rails (>= 5.2)
15+
zeitwerk
16+
17+
GEM
18+
remote: https://rubygems.org/
19+
specs:
20+
actioncable (6.1.0)
21+
actionpack (= 6.1.0)
22+
activesupport (= 6.1.0)
23+
nio4r (~> 2.0)
24+
websocket-driver (>= 0.6.1)
25+
actionmailbox (6.1.0)
26+
actionpack (= 6.1.0)
27+
activejob (= 6.1.0)
28+
activerecord (= 6.1.0)
29+
activestorage (= 6.1.0)
30+
activesupport (= 6.1.0)
31+
mail (>= 2.7.1)
32+
actionmailer (6.1.0)
33+
actionpack (= 6.1.0)
34+
actionview (= 6.1.0)
35+
activejob (= 6.1.0)
36+
activesupport (= 6.1.0)
37+
mail (~> 2.5, >= 2.5.4)
38+
rails-dom-testing (~> 2.0)
39+
actionpack (6.1.0)
40+
actionview (= 6.1.0)
41+
activesupport (= 6.1.0)
42+
rack (~> 2.0, >= 2.0.9)
43+
rack-test (>= 0.6.3)
44+
rails-dom-testing (~> 2.0)
45+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
46+
actiontext (6.1.0)
47+
actionpack (= 6.1.0)
48+
activerecord (= 6.1.0)
49+
activestorage (= 6.1.0)
50+
activesupport (= 6.1.0)
51+
nokogiri (>= 1.8.5)
52+
actionview (6.1.0)
53+
activesupport (= 6.1.0)
54+
builder (~> 3.1)
55+
erubi (~> 1.4)
56+
rails-dom-testing (~> 2.0)
57+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
58+
activejob (6.1.0)
59+
activesupport (= 6.1.0)
60+
globalid (>= 0.3.6)
61+
activemodel (6.1.0)
62+
activesupport (= 6.1.0)
63+
activemodel-serializers-xml (1.0.2)
64+
activemodel (> 5.x)
65+
activesupport (> 5.x)
66+
builder (~> 3.1)
67+
activerecord (6.1.0)
68+
activemodel (= 6.1.0)
69+
activesupport (= 6.1.0)
70+
activestorage (6.1.0)
71+
actionpack (= 6.1.0)
72+
activejob (= 6.1.0)
73+
activerecord (= 6.1.0)
74+
activesupport (= 6.1.0)
75+
marcel (~> 0.3.1)
76+
mimemagic (~> 0.3.2)
77+
activesupport (6.1.0)
78+
concurrent-ruby (~> 1.0, >= 1.0.2)
79+
i18n (>= 1.6, < 2)
80+
minitest (>= 5.1)
81+
tzinfo (~> 2.0)
82+
zeitwerk (~> 2.3)
83+
bootsnap (1.5.1)
84+
msgpack (~> 1.0)
85+
builder (3.2.4)
86+
concurrent-ruby (1.1.7)
87+
crass (1.0.6)
88+
draper (4.0.1)
89+
actionpack (>= 5.0)
90+
activemodel (>= 5.0)
91+
activemodel-serializers-xml (>= 1.0)
92+
activesupport (>= 5.0)
93+
request_store (>= 1.0)
94+
erubi (1.10.0)
95+
globalid (0.4.2)
96+
activesupport (>= 4.2.0)
97+
haml (5.2.1)
98+
temple (>= 0.8.0)
99+
tilt
100+
i18n (1.8.5)
101+
concurrent-ruby (~> 1.0)
102+
loofah (2.8.0)
103+
crass (~> 1.0.2)
104+
nokogiri (>= 1.5.9)
105+
mail (2.7.1)
106+
mini_mime (>= 0.1.1)
107+
marcel (0.3.3)
108+
mimemagic (~> 0.3.2)
109+
method_source (1.0.0)
110+
mimemagic (0.3.5)
111+
mini_mime (1.0.2)
112+
mini_portile2 (2.4.0)
113+
minitest (5.14.2)
114+
msgpack (1.3.3)
115+
nio4r (2.5.4)
116+
nokogiri (1.10.10)
117+
mini_portile2 (~> 2.4.0)
118+
pg (1.2.3)
119+
puma (5.1.1)
120+
nio4r (~> 2.0)
121+
rack (2.2.3)
122+
rack-proxy (0.6.5)
123+
rack
124+
rack-test (1.1.0)
125+
rack (>= 1.0, < 3)
126+
rails (6.1.0)
127+
actioncable (= 6.1.0)
128+
actionmailbox (= 6.1.0)
129+
actionmailer (= 6.1.0)
130+
actionpack (= 6.1.0)
131+
actiontext (= 6.1.0)
132+
actionview (= 6.1.0)
133+
activejob (= 6.1.0)
134+
activemodel (= 6.1.0)
135+
activerecord (= 6.1.0)
136+
activestorage (= 6.1.0)
137+
activesupport (= 6.1.0)
138+
bundler (>= 1.15.0)
139+
railties (= 6.1.0)
140+
sprockets-rails (>= 2.0.0)
141+
rails-dom-testing (2.0.3)
142+
activesupport (>= 4.2.0)
143+
nokogiri (>= 1.6)
144+
rails-html-sanitizer (1.3.0)
145+
loofah (~> 2.3)
146+
railties (6.1.0)
147+
actionpack (= 6.1.0)
148+
activesupport (= 6.1.0)
149+
method_source
150+
rake (>= 0.8.7)
151+
thor (~> 1.0)
152+
rake (13.0.3)
153+
request_store (1.5.0)
154+
rack (>= 1.4)
155+
semantic_range (2.3.1)
156+
sprockets (4.0.2)
157+
concurrent-ruby (~> 1.0)
158+
rack (> 1, < 3)
159+
sprockets-rails (3.2.2)
160+
actionpack (>= 4.0)
161+
activesupport (>= 4.0)
162+
sprockets (>= 3.0.0)
163+
sqlite3 (1.4.2)
164+
temple (0.8.2)
165+
thor (1.0.1)
166+
tilt (2.0.10)
167+
tzinfo (2.0.4)
168+
concurrent-ruby (~> 1.0)
169+
webpacker (5.2.1)
170+
activesupport (>= 5.2)
171+
rack-proxy (>= 0.6.1)
172+
railties (>= 5.2)
173+
semantic_range (>= 2.3.0)
174+
websocket-driver (0.7.3)
175+
websocket-extensions (>= 0.1.0)
176+
websocket-extensions (0.1.5)
177+
zeitwerk (2.4.2)
178+
179+
PLATFORMS
180+
ruby
181+
x86_64-linux
182+
183+
DEPENDENCIES
184+
ajax-datatables-rails!
185+
bootsnap
186+
datatables-factory!
187+
draper
188+
haml
189+
pg
190+
puma
191+
rails (~> 6.1)
192+
sqlite3
193+
webpacker
194+
195+
RUBY VERSION
196+
ruby 2.7.2p137
197+
198+
BUNDLED WITH
199+
2.2.2

Procfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
release: bin/rake db:migrate && bin/rake db:seed

0 commit comments

Comments
 (0)