Skip to content

Commit 9fafe13

Browse files
committed
Hello world
0 parents  commit 9fafe13

Some content is hidden

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

72 files changed

+2028
-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: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

.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: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
source "https://rubygems.org"
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby "3.1.1"
5+
6+
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
7+
gem "rails", "~> 7.0.2", ">= 7.0.2.3"
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+
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
19+
gem "jbuilder"
20+
21+
# Use Redis adapter to run Action Cable in production
22+
# gem "redis", "~> 4.0"
23+
24+
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
25+
# gem "kredis"
26+
27+
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
28+
# gem "bcrypt", "~> 3.1.7"
29+
30+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
31+
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
32+
33+
# Reduces boot times through caching; required in config/boot.rb
34+
gem "bootsnap", require: false
35+
36+
# Use Sass to process CSS
37+
# gem "sassc-rails"
38+
39+
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
40+
# gem "image_processing", "~> 1.2"
41+
42+
group :development, :test do
43+
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
44+
gem "debug", platforms: %i[ mri mingw x64_mingw ]
45+
end
46+
47+
group :development do
48+
# Use console on exceptions pages [https://github.com/rails/web-console]
49+
gem "web-console"
50+
51+
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
52+
# gem "rack-mini-profiler"
53+
54+
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
55+
# gem "spring"
56+
end
57+
58+
group :test do
59+
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
60+
gem "capybara"
61+
gem "selenium-webdriver"
62+
gem "webdrivers"
63+
end

Gemfile.lock

Lines changed: 225 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
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+
bindex (0.8.1)
72+
bootsnap (1.11.1)
73+
msgpack (~> 1.2)
74+
builder (3.2.4)
75+
capybara (3.36.0)
76+
addressable
77+
matrix
78+
mini_mime (>= 0.1.3)
79+
nokogiri (~> 1.8)
80+
rack (>= 1.6.0)
81+
rack-test (>= 0.6.3)
82+
regexp_parser (>= 1.5, < 3.0)
83+
xpath (~> 3.2)
84+
childprocess (4.1.0)
85+
concurrent-ruby (1.1.9)
86+
crass (1.0.6)
87+
debug (1.4.0)
88+
irb (>= 1.3.6)
89+
reline (>= 0.2.7)
90+
digest (3.1.0)
91+
erubi (1.10.0)
92+
globalid (1.0.0)
93+
activesupport (>= 5.0)
94+
i18n (1.10.0)
95+
concurrent-ruby (~> 1.0)
96+
io-console (0.5.11)
97+
io-wait (0.2.1)
98+
irb (1.4.1)
99+
reline (>= 0.3.0)
100+
jbuilder (2.11.5)
101+
actionview (>= 5.0.0)
102+
activesupport (>= 5.0.0)
103+
loofah (2.15.0)
104+
crass (~> 1.0.2)
105+
nokogiri (>= 1.5.9)
106+
mail (2.7.1)
107+
mini_mime (>= 0.1.1)
108+
marcel (1.0.2)
109+
matrix (0.4.2)
110+
method_source (1.0.0)
111+
mini_mime (1.1.2)
112+
minitest (5.15.0)
113+
msgpack (1.4.5)
114+
net-imap (0.2.3)
115+
digest
116+
net-protocol
117+
strscan
118+
net-pop (0.1.1)
119+
digest
120+
net-protocol
121+
timeout
122+
net-protocol (0.1.2)
123+
io-wait
124+
timeout
125+
net-smtp (0.3.1)
126+
digest
127+
net-protocol
128+
timeout
129+
nio4r (2.5.8)
130+
nokogiri (1.13.3-arm64-darwin)
131+
racc (~> 1.4)
132+
pg (1.3.4)
133+
public_suffix (4.0.6)
134+
puma (5.6.2)
135+
nio4r (~> 2.0)
136+
racc (1.6.0)
137+
rack (2.2.3)
138+
rack-test (1.1.0)
139+
rack (>= 1.0, < 3)
140+
rails (7.0.2.3)
141+
actioncable (= 7.0.2.3)
142+
actionmailbox (= 7.0.2.3)
143+
actionmailer (= 7.0.2.3)
144+
actionpack (= 7.0.2.3)
145+
actiontext (= 7.0.2.3)
146+
actionview (= 7.0.2.3)
147+
activejob (= 7.0.2.3)
148+
activemodel (= 7.0.2.3)
149+
activerecord (= 7.0.2.3)
150+
activestorage (= 7.0.2.3)
151+
activesupport (= 7.0.2.3)
152+
bundler (>= 1.15.0)
153+
railties (= 7.0.2.3)
154+
rails-dom-testing (2.0.3)
155+
activesupport (>= 4.2.0)
156+
nokogiri (>= 1.6)
157+
rails-html-sanitizer (1.4.2)
158+
loofah (~> 2.3)
159+
railties (7.0.2.3)
160+
actionpack (= 7.0.2.3)
161+
activesupport (= 7.0.2.3)
162+
method_source
163+
rake (>= 12.2)
164+
thor (~> 1.0)
165+
zeitwerk (~> 2.5)
166+
rake (13.0.6)
167+
regexp_parser (2.2.1)
168+
reline (0.3.1)
169+
io-console (~> 0.5)
170+
rexml (3.2.5)
171+
rubyzip (2.3.2)
172+
selenium-webdriver (4.1.0)
173+
childprocess (>= 0.5, < 5.0)
174+
rexml (~> 3.2, >= 3.2.5)
175+
rubyzip (>= 1.2.2)
176+
sprockets (4.0.3)
177+
concurrent-ruby (~> 1.0)
178+
rack (> 1, < 3)
179+
sprockets-rails (3.4.2)
180+
actionpack (>= 5.2)
181+
activesupport (>= 5.2)
182+
sprockets (>= 3.0.0)
183+
strscan (3.0.1)
184+
thor (1.2.1)
185+
timeout (0.2.0)
186+
tzinfo (2.0.4)
187+
concurrent-ruby (~> 1.0)
188+
web-console (4.2.0)
189+
actionview (>= 6.0.0)
190+
activemodel (>= 6.0.0)
191+
bindex (>= 0.4.0)
192+
railties (>= 6.0.0)
193+
webdrivers (5.0.0)
194+
nokogiri (~> 1.6)
195+
rubyzip (>= 1.3.0)
196+
selenium-webdriver (~> 4.0)
197+
websocket-driver (0.7.5)
198+
websocket-extensions (>= 0.1.0)
199+
websocket-extensions (0.1.5)
200+
xpath (3.2.0)
201+
nokogiri (~> 1.8)
202+
zeitwerk (2.5.4)
203+
204+
PLATFORMS
205+
arm64-darwin-21
206+
207+
DEPENDENCIES
208+
bootsnap
209+
capybara
210+
debug
211+
jbuilder
212+
pg (~> 1.1)
213+
puma (~> 5.0)
214+
rails (~> 7.0.2, >= 7.0.2.3)
215+
selenium-webdriver
216+
sprockets-rails
217+
tzinfo-data
218+
web-console
219+
webdrivers
220+
221+
RUBY VERSION
222+
ruby 3.1.1p18
223+
224+
BUNDLED WITH
225+
2.3.9

0 commit comments

Comments
 (0)