Skip to content

Commit a706f06

Browse files
author
iku
committed
Basic setup
0 parents  commit a706f06

Some content is hidden

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

88 files changed

+4316
-0
lines changed

Diff for: .gitattributes

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

Diff for: .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 all logfiles and tempfiles.
11+
/log/*
12+
/tmp/*
13+
!/log/.keep
14+
!/tmp/.keep
15+
16+
# Ignore pidfiles, but keep the directory.
17+
/tmp/pids/*
18+
!/tmp/pids/
19+
!/tmp/pids/.keep
20+
21+
# Ignore uploaded files in development.
22+
/storage/*
23+
!/storage/.keep
24+
/tmp/storage/*
25+
!/tmp/storage/
26+
!/tmp/storage/.keep
27+
28+
/public/assets
29+
30+
# Ignore master key for decrypting credentials and more.
31+
/config/master.key
32+
33+
/app/assets/builds/*
34+
!/app/assets/builds/.keep
35+
36+
/node_modules

Diff for: .rspec

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--require spec_helper

Diff for: .ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.2.2

Diff for: Gemfile

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
source "https://rubygems.org"
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby "3.2.2"
5+
6+
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
7+
gem "rails", "~> 7.0.8", ">= 7.0.8.6"
8+
9+
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
10+
gem "sprockets-rails"
11+
12+
# Use postgresql as the database for Active Record
13+
gem "pg", "~> 1.1"
14+
15+
# Use the Puma web server [https://github.com/puma/puma]
16+
gem "puma", "~> 5.0"
17+
18+
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
19+
gem "jsbundling-rails"
20+
21+
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
22+
gem "turbo-rails"
23+
24+
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
25+
gem "stimulus-rails"
26+
27+
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
28+
gem "cssbundling-rails"
29+
30+
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
31+
gem "jbuilder"
32+
33+
# Use Redis adapter to run Action Cable in production
34+
# gem "redis", "~> 4.0"
35+
36+
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
37+
# gem "kredis"
38+
39+
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
40+
# gem "bcrypt", "~> 3.1.7"
41+
42+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
43+
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
44+
45+
# Reduces boot times through caching; required in config/boot.rb
46+
gem "bootsnap", require: false
47+
48+
# Use Sass to process CSS
49+
# gem "sassc-rails"
50+
51+
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
52+
# gem "image_processing", "~> 1.2"
53+
54+
group :development, :test do
55+
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
56+
gem "debug", platforms: %i[ mri mingw x64_mingw ]
57+
gem "rspec-rails", "~> 6.1.0"
58+
gem "factory_bot_rails"
59+
end
60+
61+
group :development do
62+
# Use console on exceptions pages [https://github.com/rails/web-console]
63+
gem "web-console"
64+
65+
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
66+
# gem "rack-mini-profiler"
67+
68+
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
69+
# gem "spring"
70+
end
71+

Diff for: Gemfile.lock

+252
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,252 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (7.0.8.6)
5+
actionpack (= 7.0.8.6)
6+
activesupport (= 7.0.8.6)
7+
nio4r (~> 2.0)
8+
websocket-driver (>= 0.6.1)
9+
actionmailbox (7.0.8.6)
10+
actionpack (= 7.0.8.6)
11+
activejob (= 7.0.8.6)
12+
activerecord (= 7.0.8.6)
13+
activestorage (= 7.0.8.6)
14+
activesupport (= 7.0.8.6)
15+
mail (>= 2.7.1)
16+
net-imap
17+
net-pop
18+
net-smtp
19+
actionmailer (7.0.8.6)
20+
actionpack (= 7.0.8.6)
21+
actionview (= 7.0.8.6)
22+
activejob (= 7.0.8.6)
23+
activesupport (= 7.0.8.6)
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.8.6)
30+
actionview (= 7.0.8.6)
31+
activesupport (= 7.0.8.6)
32+
rack (~> 2.0, >= 2.2.4)
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.8.6)
37+
actionpack (= 7.0.8.6)
38+
activerecord (= 7.0.8.6)
39+
activestorage (= 7.0.8.6)
40+
activesupport (= 7.0.8.6)
41+
globalid (>= 0.6.0)
42+
nokogiri (>= 1.8.5)
43+
actionview (7.0.8.6)
44+
activesupport (= 7.0.8.6)
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.8.6)
50+
activesupport (= 7.0.8.6)
51+
globalid (>= 0.3.6)
52+
activemodel (7.0.8.6)
53+
activesupport (= 7.0.8.6)
54+
activerecord (7.0.8.6)
55+
activemodel (= 7.0.8.6)
56+
activesupport (= 7.0.8.6)
57+
activestorage (7.0.8.6)
58+
actionpack (= 7.0.8.6)
59+
activejob (= 7.0.8.6)
60+
activerecord (= 7.0.8.6)
61+
activesupport (= 7.0.8.6)
62+
marcel (~> 1.0)
63+
mini_mime (>= 1.1.0)
64+
activesupport (7.0.8.6)
65+
concurrent-ruby (~> 1.0, >= 1.0.2)
66+
i18n (>= 1.6, < 2)
67+
minitest (>= 5.1)
68+
tzinfo (~> 2.0)
69+
bindex (0.8.1)
70+
bootsnap (1.18.4)
71+
msgpack (~> 1.2)
72+
builder (3.3.0)
73+
concurrent-ruby (1.3.4)
74+
crass (1.0.6)
75+
cssbundling-rails (1.4.1)
76+
railties (>= 6.0.0)
77+
date (3.4.1)
78+
debug (1.9.2)
79+
irb (~> 1.10)
80+
reline (>= 0.3.8)
81+
diff-lcs (1.5.1)
82+
erubi (1.13.0)
83+
factory_bot (6.5.0)
84+
activesupport (>= 5.0.0)
85+
factory_bot_rails (6.4.4)
86+
factory_bot (~> 6.5)
87+
railties (>= 5.0.0)
88+
globalid (1.2.1)
89+
activesupport (>= 6.1)
90+
i18n (1.14.6)
91+
concurrent-ruby (~> 1.0)
92+
io-console (0.8.0)
93+
irb (1.14.1)
94+
rdoc (>= 4.0.0)
95+
reline (>= 0.4.2)
96+
jbuilder (2.13.0)
97+
actionview (>= 5.0.0)
98+
activesupport (>= 5.0.0)
99+
jsbundling-rails (1.3.1)
100+
railties (>= 6.0.0)
101+
loofah (2.23.1)
102+
crass (~> 1.0.2)
103+
nokogiri (>= 1.12.0)
104+
mail (2.8.1)
105+
mini_mime (>= 0.1.1)
106+
net-imap
107+
net-pop
108+
net-smtp
109+
marcel (1.0.4)
110+
method_source (1.1.0)
111+
mini_mime (1.1.5)
112+
minitest (5.25.4)
113+
msgpack (1.7.5)
114+
net-imap (0.5.1)
115+
date
116+
net-protocol
117+
net-pop (0.1.2)
118+
net-protocol
119+
net-protocol (0.2.2)
120+
timeout
121+
net-smtp (0.5.0)
122+
net-protocol
123+
nio4r (2.7.4)
124+
nokogiri (1.16.8-aarch64-linux)
125+
racc (~> 1.4)
126+
nokogiri (1.16.8-arm-linux)
127+
racc (~> 1.4)
128+
nokogiri (1.16.8-arm64-darwin)
129+
racc (~> 1.4)
130+
nokogiri (1.16.8-x86-linux)
131+
racc (~> 1.4)
132+
nokogiri (1.16.8-x86_64-darwin)
133+
racc (~> 1.4)
134+
nokogiri (1.16.8-x86_64-linux)
135+
racc (~> 1.4)
136+
pg (1.5.9)
137+
psych (5.2.1)
138+
date
139+
stringio
140+
puma (5.6.9)
141+
nio4r (~> 2.0)
142+
racc (1.8.1)
143+
rack (2.2.10)
144+
rack-test (2.1.0)
145+
rack (>= 1.3)
146+
rails (7.0.8.6)
147+
actioncable (= 7.0.8.6)
148+
actionmailbox (= 7.0.8.6)
149+
actionmailer (= 7.0.8.6)
150+
actionpack (= 7.0.8.6)
151+
actiontext (= 7.0.8.6)
152+
actionview (= 7.0.8.6)
153+
activejob (= 7.0.8.6)
154+
activemodel (= 7.0.8.6)
155+
activerecord (= 7.0.8.6)
156+
activestorage (= 7.0.8.6)
157+
activesupport (= 7.0.8.6)
158+
bundler (>= 1.15.0)
159+
railties (= 7.0.8.6)
160+
rails-dom-testing (2.2.0)
161+
activesupport (>= 5.0.0)
162+
minitest
163+
nokogiri (>= 1.6)
164+
rails-html-sanitizer (1.6.1)
165+
loofah (~> 2.21)
166+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
167+
railties (7.0.8.6)
168+
actionpack (= 7.0.8.6)
169+
activesupport (= 7.0.8.6)
170+
method_source
171+
rake (>= 12.2)
172+
thor (~> 1.0)
173+
zeitwerk (~> 2.5)
174+
rake (13.2.1)
175+
rdoc (6.8.1)
176+
psych (>= 4.0.0)
177+
reline (0.5.12)
178+
io-console (~> 0.5)
179+
rspec-core (3.13.2)
180+
rspec-support (~> 3.13.0)
181+
rspec-expectations (3.13.3)
182+
diff-lcs (>= 1.2.0, < 2.0)
183+
rspec-support (~> 3.13.0)
184+
rspec-mocks (3.13.2)
185+
diff-lcs (>= 1.2.0, < 2.0)
186+
rspec-support (~> 3.13.0)
187+
rspec-rails (6.1.5)
188+
actionpack (>= 6.1)
189+
activesupport (>= 6.1)
190+
railties (>= 6.1)
191+
rspec-core (~> 3.13)
192+
rspec-expectations (~> 3.13)
193+
rspec-mocks (~> 3.13)
194+
rspec-support (~> 3.13)
195+
rspec-support (3.13.2)
196+
sprockets (4.2.1)
197+
concurrent-ruby (~> 1.0)
198+
rack (>= 2.2.4, < 4)
199+
sprockets-rails (3.5.2)
200+
actionpack (>= 6.1)
201+
activesupport (>= 6.1)
202+
sprockets (>= 3.0.0)
203+
stimulus-rails (1.3.4)
204+
railties (>= 6.0.0)
205+
stringio (3.1.2)
206+
thor (1.3.2)
207+
timeout (0.4.2)
208+
turbo-rails (2.0.11)
209+
actionpack (>= 6.0.0)
210+
railties (>= 6.0.0)
211+
tzinfo (2.0.6)
212+
concurrent-ruby (~> 1.0)
213+
web-console (4.2.1)
214+
actionview (>= 6.0.0)
215+
activemodel (>= 6.0.0)
216+
bindex (>= 0.4.0)
217+
railties (>= 6.0.0)
218+
websocket-driver (0.7.6)
219+
websocket-extensions (>= 0.1.0)
220+
websocket-extensions (0.1.5)
221+
zeitwerk (2.7.1)
222+
223+
PLATFORMS
224+
aarch64-linux
225+
arm-linux
226+
arm64-darwin
227+
x86-linux
228+
x86_64-darwin
229+
x86_64-linux
230+
231+
DEPENDENCIES
232+
bootsnap
233+
cssbundling-rails
234+
debug
235+
factory_bot_rails
236+
jbuilder
237+
jsbundling-rails
238+
pg (~> 1.1)
239+
puma (~> 5.0)
240+
rails (~> 7.0.8, >= 7.0.8.6)
241+
rspec-rails (~> 6.1.0)
242+
sprockets-rails
243+
stimulus-rails
244+
turbo-rails
245+
tzinfo-data
246+
web-console
247+
248+
RUBY VERSION
249+
ruby 3.2.2p53
250+
251+
BUNDLED WITH
252+
2.5.18

Diff for: Procfile.dev

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
web: env RUBY_DEBUG_OPEN=true bin/rails server
2+
js: yarn build --watch
3+
css: yarn watch:css
4+
css: yarn build:css --watch

0 commit comments

Comments
 (0)