Skip to content

Commit efe1dd0

Browse files
committed
feat: 🎉 init
0 parents  commit efe1dd0

Some content is hidden

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

80 files changed

+1542
-0
lines changed

.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

.gitignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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
36+
37+
/app/assets/builds/*
38+
!/app/assets/builds/.keep
39+
40+
/node_modules

.ruby-version

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

Gemfile

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

Gemfile.lock

+228
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,228 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (7.0.4)
5+
actionpack (= 7.0.4)
6+
activesupport (= 7.0.4)
7+
nio4r (~> 2.0)
8+
websocket-driver (>= 0.6.1)
9+
actionmailbox (7.0.4)
10+
actionpack (= 7.0.4)
11+
activejob (= 7.0.4)
12+
activerecord (= 7.0.4)
13+
activestorage (= 7.0.4)
14+
activesupport (= 7.0.4)
15+
mail (>= 2.7.1)
16+
net-imap
17+
net-pop
18+
net-smtp
19+
actionmailer (7.0.4)
20+
actionpack (= 7.0.4)
21+
actionview (= 7.0.4)
22+
activejob (= 7.0.4)
23+
activesupport (= 7.0.4)
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.4)
30+
actionview (= 7.0.4)
31+
activesupport (= 7.0.4)
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.4)
37+
actionpack (= 7.0.4)
38+
activerecord (= 7.0.4)
39+
activestorage (= 7.0.4)
40+
activesupport (= 7.0.4)
41+
globalid (>= 0.6.0)
42+
nokogiri (>= 1.8.5)
43+
actionview (7.0.4)
44+
activesupport (= 7.0.4)
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.4)
50+
activesupport (= 7.0.4)
51+
globalid (>= 0.3.6)
52+
activemodel (7.0.4)
53+
activesupport (= 7.0.4)
54+
activerecord (7.0.4)
55+
activemodel (= 7.0.4)
56+
activesupport (= 7.0.4)
57+
activestorage (7.0.4)
58+
actionpack (= 7.0.4)
59+
activejob (= 7.0.4)
60+
activerecord (= 7.0.4)
61+
activesupport (= 7.0.4)
62+
marcel (~> 1.0)
63+
mini_mime (>= 1.1.0)
64+
activesupport (7.0.4)
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.1)
70+
public_suffix (>= 2.0.2, < 6.0)
71+
bindex (0.8.1)
72+
bootsnap (1.13.0)
73+
msgpack (~> 1.2)
74+
builder (3.2.4)
75+
capybara (3.37.1)
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.10)
86+
crass (1.0.6)
87+
debug (1.6.2)
88+
irb (>= 1.3.6)
89+
reline (>= 0.3.1)
90+
erubi (1.11.0)
91+
globalid (1.0.0)
92+
activesupport (>= 5.0)
93+
i18n (1.12.0)
94+
concurrent-ruby (~> 1.0)
95+
io-console (0.5.11)
96+
irb (1.4.1)
97+
reline (>= 0.3.0)
98+
jbuilder (2.11.5)
99+
actionview (>= 5.0.0)
100+
activesupport (>= 5.0.0)
101+
jsbundling-rails (1.0.3)
102+
railties (>= 6.0.0)
103+
loofah (2.19.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.16.3)
113+
msgpack (1.6.0)
114+
net-imap (0.3.1)
115+
net-protocol
116+
net-pop (0.1.2)
117+
net-protocol
118+
net-protocol (0.1.3)
119+
timeout
120+
net-smtp (0.3.2)
121+
net-protocol
122+
nio4r (2.5.8)
123+
nokogiri (1.13.8-x86_64-darwin)
124+
racc (~> 1.4)
125+
public_suffix (5.0.0)
126+
puma (5.6.5)
127+
nio4r (~> 2.0)
128+
racc (1.6.0)
129+
rack (2.2.4)
130+
rack-test (2.0.2)
131+
rack (>= 1.3)
132+
rails (7.0.4)
133+
actioncable (= 7.0.4)
134+
actionmailbox (= 7.0.4)
135+
actionmailer (= 7.0.4)
136+
actionpack (= 7.0.4)
137+
actiontext (= 7.0.4)
138+
actionview (= 7.0.4)
139+
activejob (= 7.0.4)
140+
activemodel (= 7.0.4)
141+
activerecord (= 7.0.4)
142+
activestorage (= 7.0.4)
143+
activesupport (= 7.0.4)
144+
bundler (>= 1.15.0)
145+
railties (= 7.0.4)
146+
rails-dom-testing (2.0.3)
147+
activesupport (>= 4.2.0)
148+
nokogiri (>= 1.6)
149+
rails-html-sanitizer (1.4.3)
150+
loofah (~> 2.3)
151+
railties (7.0.4)
152+
actionpack (= 7.0.4)
153+
activesupport (= 7.0.4)
154+
method_source
155+
rake (>= 12.2)
156+
thor (~> 1.0)
157+
zeitwerk (~> 2.5)
158+
rake (13.0.6)
159+
regexp_parser (2.6.0)
160+
reline (0.3.1)
161+
io-console (~> 0.5)
162+
rexml (3.2.5)
163+
rubyzip (2.3.2)
164+
selenium-webdriver (4.5.0)
165+
childprocess (>= 0.5, < 5.0)
166+
rexml (~> 3.2, >= 3.2.5)
167+
rubyzip (>= 1.2.2, < 3.0)
168+
websocket (~> 1.0)
169+
sprockets (4.1.1)
170+
concurrent-ruby (~> 1.0)
171+
rack (> 1, < 3)
172+
sprockets-rails (3.4.2)
173+
actionpack (>= 5.2)
174+
activesupport (>= 5.2)
175+
sprockets (>= 3.0.0)
176+
sqlite3 (1.5.2-x86_64-darwin)
177+
stimulus-rails (1.1.0)
178+
railties (>= 6.0.0)
179+
thor (1.2.1)
180+
timeout (0.3.0)
181+
turbo-rails (1.3.0)
182+
actionpack (>= 6.0.0)
183+
activejob (>= 6.0.0)
184+
railties (>= 6.0.0)
185+
tzinfo (2.0.5)
186+
concurrent-ruby (~> 1.0)
187+
web-console (4.2.0)
188+
actionview (>= 6.0.0)
189+
activemodel (>= 6.0.0)
190+
bindex (>= 0.4.0)
191+
railties (>= 6.0.0)
192+
webdrivers (5.2.0)
193+
nokogiri (~> 1.6)
194+
rubyzip (>= 1.3.0)
195+
selenium-webdriver (~> 4.0)
196+
websocket (1.2.9)
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.6.1)
203+
204+
PLATFORMS
205+
x86_64-darwin-20
206+
207+
DEPENDENCIES
208+
bootsnap
209+
capybara
210+
debug
211+
jbuilder
212+
jsbundling-rails
213+
puma (~> 5.0)
214+
rails (~> 7.0.4)
215+
selenium-webdriver
216+
sprockets-rails
217+
sqlite3 (~> 1.4)
218+
stimulus-rails
219+
turbo-rails
220+
tzinfo-data
221+
web-console
222+
webdrivers
223+
224+
RUBY VERSION
225+
ruby 3.1.2p20
226+
227+
BUNDLED WITH
228+
2.3.21

Procfile.dev

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
web: bin/rails server -p 3000
2+
js: yarn build --watch

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# README
2+
3+
This README would normally document whatever steps are necessary to get the
4+
application up and running.
5+
6+
Things you may want to cover:
7+
8+
* Ruby version
9+
10+
* System dependencies
11+
12+
* Configuration
13+
14+
* Database creation
15+
16+
* Database initialization
17+
18+
* How to run the test suite
19+
20+
* Services (job queues, cache servers, search engines, etc.)
21+
22+
* Deployment instructions
23+
24+
* ...

Rakefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require_relative "config/application"
5+
6+
Rails.application.load_tasks

app/assets/builds/.keep

Whitespace-only changes.

app/assets/config/manifest.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//= link_tree ../images
2+
//= link_directory ../stylesheets .css
3+
//= link_tree ../builds

app/assets/images/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)