Skip to content

Commit 397d5d1

Browse files
committed
Initialize repository
0 parents  commit 397d5d1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1243
-0
lines changed

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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 any vendored files as having been vendored.
7+
vendor/* linguist-vendored

.gitignore

Lines changed: 35 additions & 0 deletions
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-*
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+
/tmp/storage/*
29+
!/tmp/storage/
30+
!/tmp/storage/.keep
31+
32+
/public/assets
33+
34+
# Ignore master key for decrypting credentials and more.
35+
/config/master.key

.ruby-version

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

Gemfile

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
source "https://rubygems.org"
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby "3.1.1"
5+
6+
gem "rails", "7.0.2.3"
7+
gem "sassc-rails", "2.1.2"
8+
gem "sprockets-rails", "3.4.2"
9+
gem "importmap-rails", "1.0.3"
10+
gem "turbo-rails", "1.0.1"
11+
gem "stimulus-rails", "1.0.4"
12+
gem "jbuilder", "2.11.5"
13+
gem "puma", "5.6.4"
14+
gem "bootsnap", "1.11.1", require: false
15+
16+
group :development, :test do
17+
gem "sqlite3", "1.4.2"
18+
gem "debug", "1.4.0", platforms: %i[ mri mingw x64_mingw ]
19+
end
20+
21+
group :development do
22+
gem "web-console", "4.2.0"
23+
end
24+
25+
group :test do
26+
gem "capybara", "3.36.0"
27+
gem "selenium-webdriver", "4.1.0"
28+
gem "webdrivers", "5.0.0"
29+
gem "rails-controller-testing", "1.0.5"
30+
gem "minitest", "5.15.0"
31+
gem "minitest-reporters", "1.5.0"
32+
gem "guard", "2.18.0"
33+
gem "guard-minitest", "2.4.6"
34+
end
35+
36+
group :production do
37+
gem "pg", "1.3.3"
38+
end
39+
40+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
41+
# Uncomment the following line if you're running Rails
42+
# on a native Windows system:
43+
# gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

Lines changed: 292 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,292 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (7.0.2.3)
5+
actionpack (= 7.0.2.3)
6+
activesupport (= 7.0.2.3)
7+
nio4r (~> 2.0)
8+
websocket-driver (>= 0.6.1)
9+
actionmailbox (7.0.2.3)
10+
actionpack (= 7.0.2.3)
11+
activejob (= 7.0.2.3)
12+
activerecord (= 7.0.2.3)
13+
activestorage (= 7.0.2.3)
14+
activesupport (= 7.0.2.3)
15+
mail (>= 2.7.1)
16+
net-imap
17+
net-pop
18+
net-smtp
19+
actionmailer (7.0.2.3)
20+
actionpack (= 7.0.2.3)
21+
actionview (= 7.0.2.3)
22+
activejob (= 7.0.2.3)
23+
activesupport (= 7.0.2.3)
24+
mail (~> 2.5, >= 2.5.4)
25+
net-imap
26+
net-pop
27+
net-smtp
28+
rails-dom-testing (~> 2.0)
29+
actionpack (7.0.2.3)
30+
actionview (= 7.0.2.3)
31+
activesupport (= 7.0.2.3)
32+
rack (~> 2.0, >= 2.2.0)
33+
rack-test (>= 0.6.3)
34+
rails-dom-testing (~> 2.0)
35+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
36+
actiontext (7.0.2.3)
37+
actionpack (= 7.0.2.3)
38+
activerecord (= 7.0.2.3)
39+
activestorage (= 7.0.2.3)
40+
activesupport (= 7.0.2.3)
41+
globalid (>= 0.6.0)
42+
nokogiri (>= 1.8.5)
43+
actionview (7.0.2.3)
44+
activesupport (= 7.0.2.3)
45+
builder (~> 3.1)
46+
erubi (~> 1.4)
47+
rails-dom-testing (~> 2.0)
48+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
49+
activejob (7.0.2.3)
50+
activesupport (= 7.0.2.3)
51+
globalid (>= 0.3.6)
52+
activemodel (7.0.2.3)
53+
activesupport (= 7.0.2.3)
54+
activerecord (7.0.2.3)
55+
activemodel (= 7.0.2.3)
56+
activesupport (= 7.0.2.3)
57+
activestorage (7.0.2.3)
58+
actionpack (= 7.0.2.3)
59+
activejob (= 7.0.2.3)
60+
activerecord (= 7.0.2.3)
61+
activesupport (= 7.0.2.3)
62+
marcel (~> 1.0)
63+
mini_mime (>= 1.1.0)
64+
activesupport (7.0.2.3)
65+
concurrent-ruby (~> 1.0, >= 1.0.2)
66+
i18n (>= 1.6, < 2)
67+
minitest (>= 5.1)
68+
tzinfo (~> 2.0)
69+
addressable (2.8.0)
70+
public_suffix (>= 2.0.2, < 5.0)
71+
ansi (1.5.0)
72+
bindex (0.8.1)
73+
bootsnap (1.11.1)
74+
msgpack (~> 1.2)
75+
builder (3.2.4)
76+
capybara (3.36.0)
77+
addressable
78+
matrix
79+
mini_mime (>= 0.1.3)
80+
nokogiri (~> 1.8)
81+
rack (>= 1.6.0)
82+
rack-test (>= 0.6.3)
83+
regexp_parser (>= 1.5, < 3.0)
84+
xpath (~> 3.2)
85+
childprocess (4.1.0)
86+
coderay (1.1.3)
87+
concurrent-ruby (1.1.10)
88+
crass (1.0.6)
89+
debug (1.4.0)
90+
irb (>= 1.3.6)
91+
reline (>= 0.2.7)
92+
digest (3.1.0)
93+
erubi (1.10.0)
94+
ffi (1.15.5)
95+
formatador (1.1.0)
96+
globalid (1.0.0)
97+
activesupport (>= 5.0)
98+
guard (2.18.0)
99+
formatador (>= 0.2.4)
100+
listen (>= 2.7, < 4.0)
101+
lumberjack (>= 1.0.12, < 2.0)
102+
nenv (~> 0.1)
103+
notiffany (~> 0.0)
104+
pry (>= 0.13.0)
105+
shellany (~> 0.0)
106+
thor (>= 0.18.1)
107+
guard-compat (1.2.1)
108+
guard-minitest (2.4.6)
109+
guard-compat (~> 1.2)
110+
minitest (>= 3.0)
111+
i18n (1.10.0)
112+
concurrent-ruby (~> 1.0)
113+
importmap-rails (1.0.3)
114+
actionpack (>= 6.0.0)
115+
railties (>= 6.0.0)
116+
io-console (0.5.11)
117+
irb (1.4.1)
118+
reline (>= 0.3.0)
119+
jbuilder (2.11.5)
120+
actionview (>= 5.0.0)
121+
activesupport (>= 5.0.0)
122+
listen (3.7.1)
123+
rb-fsevent (~> 0.10, >= 0.10.3)
124+
rb-inotify (~> 0.9, >= 0.9.10)
125+
loofah (2.16.0)
126+
crass (~> 1.0.2)
127+
nokogiri (>= 1.5.9)
128+
lumberjack (1.2.8)
129+
mail (2.7.1)
130+
mini_mime (>= 0.1.1)
131+
marcel (1.0.2)
132+
matrix (0.4.2)
133+
method_source (1.0.0)
134+
mini_mime (1.1.2)
135+
minitest (5.15.0)
136+
minitest-reporters (1.5.0)
137+
ansi
138+
builder
139+
minitest (>= 5.0)
140+
ruby-progressbar
141+
msgpack (1.5.1)
142+
nenv (0.3.0)
143+
net-imap (0.2.3)
144+
digest
145+
net-protocol
146+
strscan
147+
net-pop (0.1.1)
148+
digest
149+
net-protocol
150+
timeout
151+
net-protocol (0.1.3)
152+
timeout
153+
net-smtp (0.3.1)
154+
digest
155+
net-protocol
156+
timeout
157+
nio4r (2.5.8)
158+
nokogiri (1.13.3-x86_64-darwin)
159+
racc (~> 1.4)
160+
notiffany (0.1.3)
161+
nenv (~> 0.1)
162+
shellany (~> 0.0)
163+
pg (1.3.3)
164+
pry (0.14.1)
165+
coderay (~> 1.1)
166+
method_source (~> 1.0)
167+
public_suffix (4.0.6)
168+
puma (5.6.4)
169+
nio4r (~> 2.0)
170+
racc (1.6.0)
171+
rack (2.2.3)
172+
rack-test (1.1.0)
173+
rack (>= 1.0, < 3)
174+
rails (7.0.2.3)
175+
actioncable (= 7.0.2.3)
176+
actionmailbox (= 7.0.2.3)
177+
actionmailer (= 7.0.2.3)
178+
actionpack (= 7.0.2.3)
179+
actiontext (= 7.0.2.3)
180+
actionview (= 7.0.2.3)
181+
activejob (= 7.0.2.3)
182+
activemodel (= 7.0.2.3)
183+
activerecord (= 7.0.2.3)
184+
activestorage (= 7.0.2.3)
185+
activesupport (= 7.0.2.3)
186+
bundler (>= 1.15.0)
187+
railties (= 7.0.2.3)
188+
rails-controller-testing (1.0.5)
189+
actionpack (>= 5.0.1.rc1)
190+
actionview (>= 5.0.1.rc1)
191+
activesupport (>= 5.0.1.rc1)
192+
rails-dom-testing (2.0.3)
193+
activesupport (>= 4.2.0)
194+
nokogiri (>= 1.6)
195+
rails-html-sanitizer (1.4.2)
196+
loofah (~> 2.3)
197+
railties (7.0.2.3)
198+
actionpack (= 7.0.2.3)
199+
activesupport (= 7.0.2.3)
200+
method_source
201+
rake (>= 12.2)
202+
thor (~> 1.0)
203+
zeitwerk (~> 2.5)
204+
rake (13.0.6)
205+
rb-fsevent (0.11.1)
206+
rb-inotify (0.10.1)
207+
ffi (~> 1.0)
208+
regexp_parser (2.3.0)
209+
reline (0.3.1)
210+
io-console (~> 0.5)
211+
rexml (3.2.5)
212+
ruby-progressbar (1.11.0)
213+
rubyzip (2.3.2)
214+
sassc (2.4.0)
215+
ffi (~> 1.9)
216+
sassc-rails (2.1.2)
217+
railties (>= 4.0.0)
218+
sassc (>= 2.0)
219+
sprockets (> 3.0)
220+
sprockets-rails
221+
tilt
222+
selenium-webdriver (4.1.0)
223+
childprocess (>= 0.5, < 5.0)
224+
rexml (~> 3.2, >= 3.2.5)
225+
rubyzip (>= 1.2.2)
226+
shellany (0.0.1)
227+
sprockets (4.0.3)
228+
concurrent-ruby (~> 1.0)
229+
rack (> 1, < 3)
230+
sprockets-rails (3.4.2)
231+
actionpack (>= 5.2)
232+
activesupport (>= 5.2)
233+
sprockets (>= 3.0.0)
234+
sqlite3 (1.4.2)
235+
stimulus-rails (1.0.4)
236+
railties (>= 6.0.0)
237+
strscan (3.0.1)
238+
thor (1.2.1)
239+
tilt (2.0.10)
240+
timeout (0.2.0)
241+
turbo-rails (1.0.1)
242+
actionpack (>= 6.0.0)
243+
railties (>= 6.0.0)
244+
tzinfo (2.0.4)
245+
concurrent-ruby (~> 1.0)
246+
web-console (4.2.0)
247+
actionview (>= 6.0.0)
248+
activemodel (>= 6.0.0)
249+
bindex (>= 0.4.0)
250+
railties (>= 6.0.0)
251+
webdrivers (5.0.0)
252+
nokogiri (~> 1.6)
253+
rubyzip (>= 1.3.0)
254+
selenium-webdriver (~> 4.0)
255+
websocket-driver (0.7.5)
256+
websocket-extensions (>= 0.1.0)
257+
websocket-extensions (0.1.5)
258+
xpath (3.2.0)
259+
nokogiri (~> 1.8)
260+
zeitwerk (2.5.4)
261+
262+
PLATFORMS
263+
x86_64-darwin-19
264+
265+
DEPENDENCIES
266+
bootsnap (= 1.11.1)
267+
capybara (= 3.36.0)
268+
debug (= 1.4.0)
269+
guard (= 2.18.0)
270+
guard-minitest (= 2.4.6)
271+
importmap-rails (= 1.0.3)
272+
jbuilder (= 2.11.5)
273+
minitest (= 5.15.0)
274+
minitest-reporters (= 1.5.0)
275+
pg (= 1.3.3)
276+
puma (= 5.6.4)
277+
rails (= 7.0.2.3)
278+
rails-controller-testing (= 1.0.5)
279+
sassc-rails (= 2.1.2)
280+
selenium-webdriver (= 4.1.0)
281+
sprockets-rails (= 3.4.2)
282+
sqlite3 (= 1.4.2)
283+
stimulus-rails (= 1.0.4)
284+
turbo-rails (= 1.0.1)
285+
web-console (= 4.2.0)
286+
webdrivers (= 5.0.0)
287+
288+
RUBY VERSION
289+
ruby 3.1.1p18
290+
291+
BUNDLED WITH
292+
2.3.10

0 commit comments

Comments
 (0)