clerk-sdk-ruby 4.0.0.beta3 → 4.0.0.beta4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.env.example +3 -0
- data/.github/workflows/main.yml +22 -14
- data/.gitignore +7 -1
- data/.rspec +3 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +22 -0
- data/Gemfile +26 -3
- data/Gemfile.lock +269 -13
- data/Guardfile +14 -0
- data/README.md +71 -11
- data/Rakefile +50 -6
- data/apps/rack/app.rb +67 -0
- data/apps/rack/config.ru +17 -0
- data/apps/rack/middleware/disable_paths.rb +13 -0
- data/apps/rails-api/.dockerignore +41 -0
- data/apps/rails-api/.gitattributes +9 -0
- data/apps/rails-api/.gitignore +32 -0
- data/apps/rails-api/.kamal/hooks/docker-setup.sample +3 -0
- data/apps/rails-api/.kamal/hooks/post-deploy.sample +14 -0
- data/apps/rails-api/.kamal/hooks/post-proxy-reboot.sample +3 -0
- data/apps/rails-api/.kamal/hooks/pre-build.sample +51 -0
- data/apps/rails-api/.kamal/hooks/pre-connect.sample +47 -0
- data/apps/rails-api/.kamal/hooks/pre-deploy.sample +109 -0
- data/apps/rails-api/.kamal/hooks/pre-proxy-reboot.sample +3 -0
- data/apps/rails-api/.kamal/secrets +17 -0
- data/apps/rails-api/.rubocop.yml +8 -0
- data/apps/rails-api/.ruby-version +1 -0
- data/apps/rails-api/Dockerfile +69 -0
- data/apps/rails-api/Gemfile +54 -0
- data/apps/rails-api/Gemfile.lock +374 -0
- data/apps/rails-api/README.md +24 -0
- data/apps/rails-api/Rakefile +6 -0
- data/apps/rails-api/app/controllers/application_controller.rb +3 -0
- data/apps/rails-api/app/controllers/home_controller.rb +5 -0
- data/apps/rails-api/app/jobs/application_job.rb +7 -0
- data/apps/rails-api/app/mailers/application_mailer.rb +4 -0
- data/apps/rails-api/app/models/application_record.rb +3 -0
- data/apps/rails-api/app/views/layouts/mailer.html.erb +13 -0
- data/apps/rails-api/app/views/layouts/mailer.text.erb +1 -0
- data/apps/rails-api/bin/brakeman +7 -0
- data/apps/rails-api/bin/bundle +109 -0
- data/apps/rails-api/bin/dev +2 -0
- data/apps/rails-api/bin/docker-entrypoint +14 -0
- data/apps/rails-api/bin/jobs +6 -0
- data/apps/rails-api/bin/kamal +27 -0
- data/apps/rails-api/bin/rails +4 -0
- data/apps/rails-api/bin/rake +4 -0
- data/apps/rails-api/bin/rubocop +8 -0
- data/apps/rails-api/bin/setup +34 -0
- data/apps/rails-api/bin/thrust +5 -0
- data/apps/rails-api/config/application.rb +36 -0
- data/apps/rails-api/config/boot.rb +4 -0
- data/apps/rails-api/config/cable.yml +17 -0
- data/apps/rails-api/config/cache.yml +16 -0
- data/apps/rails-api/config/credentials.yml.enc +1 -0
- data/apps/rails-api/config/database.yml +41 -0
- data/apps/rails-api/config/deploy.yml +116 -0
- data/apps/rails-api/config/environment.rb +5 -0
- data/apps/rails-api/config/environments/development.rb +70 -0
- data/apps/rails-api/config/environments/production.rb +88 -0
- data/apps/rails-api/config/environments/test.rb +53 -0
- data/apps/rails-api/config/initializers/cors.rb +16 -0
- data/apps/rails-api/config/initializers/filter_parameter_logging.rb +8 -0
- data/apps/rails-api/config/initializers/inflections.rb +16 -0
- data/apps/rails-api/config/locales/en.yml +31 -0
- data/apps/rails-api/config/puma.rb +41 -0
- data/apps/rails-api/config/queue.yml +18 -0
- data/apps/rails-api/config/recurring.yml +10 -0
- data/apps/rails-api/config/routes.rb +10 -0
- data/apps/rails-api/config/storage.yml +34 -0
- data/apps/rails-api/config.ru +6 -0
- data/apps/rails-api/db/cable_schema.rb +11 -0
- data/apps/rails-api/db/cache_schema.rb +14 -0
- data/apps/rails-api/db/queue_schema.rb +129 -0
- data/apps/rails-api/db/seeds.rb +9 -0
- data/apps/rails-api/public/robots.txt +1 -0
- data/apps/rails-api/test/controllers/home_controller_test.rb +7 -0
- data/apps/rails-api/test/test_helper.rb +15 -0
- data/apps/rails-full/.dockerignore +47 -0
- data/apps/rails-full/.gitattributes +9 -0
- data/apps/rails-full/.gitignore +34 -0
- data/apps/rails-full/.kamal/hooks/docker-setup.sample +3 -0
- data/apps/rails-full/.kamal/hooks/post-deploy.sample +14 -0
- data/apps/rails-full/.kamal/hooks/post-proxy-reboot.sample +3 -0
- data/apps/rails-full/.kamal/hooks/pre-build.sample +51 -0
- data/apps/rails-full/.kamal/hooks/pre-connect.sample +47 -0
- data/apps/rails-full/.kamal/hooks/pre-deploy.sample +109 -0
- data/apps/rails-full/.kamal/hooks/pre-proxy-reboot.sample +3 -0
- data/apps/rails-full/.kamal/secrets +17 -0
- data/apps/rails-full/.rubocop.yml +8 -0
- data/apps/rails-full/.ruby-version +1 -0
- data/apps/rails-full/Dockerfile +72 -0
- data/apps/rails-full/Gemfile +70 -0
- data/apps/rails-full/Gemfile.lock +429 -0
- data/apps/rails-full/README.md +24 -0
- data/apps/rails-full/Rakefile +6 -0
- data/apps/rails-full/app/assets/stylesheets/application.css +10 -0
- data/apps/rails-full/app/controllers/application_controller.rb +6 -0
- data/apps/rails-full/app/controllers/home_controller.rb +11 -0
- data/apps/rails-full/app/helpers/application_helper.rb +2 -0
- data/apps/rails-full/app/helpers/home_helper.rb +2 -0
- data/apps/rails-full/app/javascript/application.js +3 -0
- data/apps/rails-full/app/javascript/controllers/application.js +9 -0
- data/apps/rails-full/app/javascript/controllers/hello_controller.js +7 -0
- data/apps/rails-full/app/javascript/controllers/index.js +4 -0
- data/apps/rails-full/app/jobs/application_job.rb +7 -0
- data/apps/rails-full/app/mailers/application_mailer.rb +4 -0
- data/apps/rails-full/app/models/application_record.rb +3 -0
- data/apps/rails-full/app/views/home/index.html.erb +7 -0
- data/apps/rails-full/app/views/layouts/application.html.erb +60 -0
- data/apps/rails-full/app/views/layouts/mailer.html.erb +13 -0
- data/apps/rails-full/app/views/layouts/mailer.text.erb +1 -0
- data/apps/rails-full/app/views/pwa/manifest.json.erb +22 -0
- data/apps/rails-full/app/views/pwa/service-worker.js +26 -0
- data/apps/rails-full/bin/brakeman +7 -0
- data/apps/rails-full/bin/bundle +109 -0
- data/apps/rails-full/bin/dev +2 -0
- data/apps/rails-full/bin/docker-entrypoint +14 -0
- data/apps/rails-full/bin/importmap +4 -0
- data/apps/rails-full/bin/jobs +6 -0
- data/apps/rails-full/bin/kamal +27 -0
- data/apps/rails-full/bin/rails +4 -0
- data/apps/rails-full/bin/rake +4 -0
- data/apps/rails-full/bin/rubocop +8 -0
- data/apps/rails-full/bin/setup +34 -0
- data/apps/rails-full/bin/thrust +5 -0
- data/apps/rails-full/config/application.rb +31 -0
- data/apps/rails-full/config/boot.rb +4 -0
- data/apps/rails-full/config/cable.yml +17 -0
- data/apps/rails-full/config/cache.yml +16 -0
- data/apps/rails-full/config/credentials.yml.enc +1 -0
- data/apps/rails-full/config/database.yml +41 -0
- data/apps/rails-full/config/deploy.yml +116 -0
- data/apps/rails-full/config/environment.rb +5 -0
- data/apps/rails-full/config/environments/development.rb +72 -0
- data/apps/rails-full/config/environments/production.rb +91 -0
- data/apps/rails-full/config/environments/test.rb +53 -0
- data/apps/rails-full/config/importmap.rb +7 -0
- data/apps/rails-full/config/initializers/assets.rb +7 -0
- data/apps/rails-full/config/initializers/clerk.rb +4 -0
- data/apps/rails-full/config/initializers/content_security_policy.rb +25 -0
- data/apps/rails-full/config/initializers/filter_parameter_logging.rb +8 -0
- data/apps/rails-full/config/initializers/inflections.rb +16 -0
- data/apps/rails-full/config/locales/en.yml +31 -0
- data/apps/rails-full/config/puma.rb +41 -0
- data/apps/rails-full/config/queue.yml +18 -0
- data/apps/rails-full/config/recurring.yml +10 -0
- data/apps/rails-full/config/routes.rb +15 -0
- data/apps/rails-full/config/storage.yml +34 -0
- data/apps/rails-full/config.ru +6 -0
- data/apps/rails-full/db/cable_schema.rb +11 -0
- data/apps/rails-full/db/cache_schema.rb +14 -0
- data/apps/rails-full/db/queue_schema.rb +129 -0
- data/apps/rails-full/db/seeds.rb +9 -0
- data/apps/rails-full/public/400.html +114 -0
- data/apps/rails-full/public/404.html +114 -0
- data/apps/rails-full/public/406-unsupported-browser.html +114 -0
- data/apps/rails-full/public/422.html +114 -0
- data/apps/rails-full/public/500.html +114 -0
- data/apps/rails-full/public/icon.png +0 -0
- data/apps/rails-full/public/icon.svg +3 -0
- data/apps/rails-full/public/robots.txt +1 -0
- data/apps/rails-full/test/application_system_test_case.rb +5 -0
- data/apps/rails-full/test/controllers/home_controller_test.rb +7 -0
- data/apps/rails-full/test/test_helper.rb +15 -0
- data/apps/sinatra/app.rb +29 -0
- data/apps/sinatra/config.ru +2 -0
- data/apps/sinatra/views/index.erb +44 -0
- data/clerk-sdk-ruby.gemspec +2 -1
- data/lib/clerk/authenticatable.rb +14 -79
- data/lib/clerk/authenticate_context.rb +164 -181
- data/lib/clerk/authenticate_request.rb +238 -230
- data/lib/clerk/configuration.rb +78 -0
- data/lib/clerk/constants.rb +68 -46
- data/lib/clerk/error.rb +17 -0
- data/lib/clerk/jwks_cache.rb +27 -22
- data/lib/clerk/proxy.rb +135 -0
- data/lib/clerk/rack.rb +2 -0
- data/lib/clerk/rack_middleware.rb +88 -73
- data/lib/clerk/rails.rb +3 -0
- data/lib/clerk/railtie.rb +7 -6
- data/lib/clerk/sdk.rb +46 -156
- data/lib/clerk/sinatra.rb +52 -0
- data/lib/clerk/utils.rb +52 -6
- data/lib/clerk/version.rb +1 -1
- data/lib/clerk.rb +15 -51
- metadata +187 -25
- data/CODEOWNERS +0 -1
- data/lib/clerk/errors.rb +0 -22
- data/lib/clerk/rack_middleware_v2.rb +0 -167
- data/lib/clerk/resources/allowlist.rb +0 -16
- data/lib/clerk/resources/allowlist_identifiers.rb +0 -16
- data/lib/clerk/resources/clients.rb +0 -23
- data/lib/clerk/resources/email_addresses.rb +0 -17
- data/lib/clerk/resources/emails.rb +0 -16
- data/lib/clerk/resources/jwks.rb +0 -18
- data/lib/clerk/resources/organizations.rb +0 -73
- data/lib/clerk/resources/phone_numbers.rb +0 -17
- data/lib/clerk/resources/plural_resource.rb +0 -38
- data/lib/clerk/resources/sessions.rb +0 -26
- data/lib/clerk/resources/singular_resource.rb +0 -14
- data/lib/clerk/resources/users.rb +0 -37
- data/lib/clerk/resources.rb +0 -10
@@ -0,0 +1,374 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../..
|
3
|
+
specs:
|
4
|
+
clerk-sdk-ruby (4.0.0.beta4)
|
5
|
+
clerk-http-client (~> 0.0.1)
|
6
|
+
concurrent-ruby (~> 1.1)
|
7
|
+
faraday (>= 1.4.1, < 3.0)
|
8
|
+
jwt (~> 2.5)
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
actioncable (8.0.1)
|
14
|
+
actionpack (= 8.0.1)
|
15
|
+
activesupport (= 8.0.1)
|
16
|
+
nio4r (~> 2.0)
|
17
|
+
websocket-driver (>= 0.6.1)
|
18
|
+
zeitwerk (~> 2.6)
|
19
|
+
actionmailbox (8.0.1)
|
20
|
+
actionpack (= 8.0.1)
|
21
|
+
activejob (= 8.0.1)
|
22
|
+
activerecord (= 8.0.1)
|
23
|
+
activestorage (= 8.0.1)
|
24
|
+
activesupport (= 8.0.1)
|
25
|
+
mail (>= 2.8.0)
|
26
|
+
actionmailer (8.0.1)
|
27
|
+
actionpack (= 8.0.1)
|
28
|
+
actionview (= 8.0.1)
|
29
|
+
activejob (= 8.0.1)
|
30
|
+
activesupport (= 8.0.1)
|
31
|
+
mail (>= 2.8.0)
|
32
|
+
rails-dom-testing (~> 2.2)
|
33
|
+
actionpack (8.0.1)
|
34
|
+
actionview (= 8.0.1)
|
35
|
+
activesupport (= 8.0.1)
|
36
|
+
nokogiri (>= 1.8.5)
|
37
|
+
rack (>= 2.2.4)
|
38
|
+
rack-session (>= 1.0.1)
|
39
|
+
rack-test (>= 0.6.3)
|
40
|
+
rails-dom-testing (~> 2.2)
|
41
|
+
rails-html-sanitizer (~> 1.6)
|
42
|
+
useragent (~> 0.16)
|
43
|
+
actiontext (8.0.1)
|
44
|
+
actionpack (= 8.0.1)
|
45
|
+
activerecord (= 8.0.1)
|
46
|
+
activestorage (= 8.0.1)
|
47
|
+
activesupport (= 8.0.1)
|
48
|
+
globalid (>= 0.6.0)
|
49
|
+
nokogiri (>= 1.8.5)
|
50
|
+
actionview (8.0.1)
|
51
|
+
activesupport (= 8.0.1)
|
52
|
+
builder (~> 3.1)
|
53
|
+
erubi (~> 1.11)
|
54
|
+
rails-dom-testing (~> 2.2)
|
55
|
+
rails-html-sanitizer (~> 1.6)
|
56
|
+
activejob (8.0.1)
|
57
|
+
activesupport (= 8.0.1)
|
58
|
+
globalid (>= 0.3.6)
|
59
|
+
activemodel (8.0.1)
|
60
|
+
activesupport (= 8.0.1)
|
61
|
+
activerecord (8.0.1)
|
62
|
+
activemodel (= 8.0.1)
|
63
|
+
activesupport (= 8.0.1)
|
64
|
+
timeout (>= 0.4.0)
|
65
|
+
activestorage (8.0.1)
|
66
|
+
actionpack (= 8.0.1)
|
67
|
+
activejob (= 8.0.1)
|
68
|
+
activerecord (= 8.0.1)
|
69
|
+
activesupport (= 8.0.1)
|
70
|
+
marcel (~> 1.0)
|
71
|
+
activesupport (8.0.1)
|
72
|
+
base64
|
73
|
+
benchmark (>= 0.3)
|
74
|
+
bigdecimal
|
75
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
76
|
+
connection_pool (>= 2.2.5)
|
77
|
+
drb
|
78
|
+
i18n (>= 1.6, < 2)
|
79
|
+
logger (>= 1.4.2)
|
80
|
+
minitest (>= 5.1)
|
81
|
+
securerandom (>= 0.3)
|
82
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
83
|
+
uri (>= 0.13.1)
|
84
|
+
ast (2.4.2)
|
85
|
+
base64 (0.2.0)
|
86
|
+
bcrypt_pbkdf (1.1.1)
|
87
|
+
bcrypt_pbkdf (1.1.1-arm64-darwin)
|
88
|
+
bcrypt_pbkdf (1.1.1-x86_64-darwin)
|
89
|
+
benchmark (0.4.0)
|
90
|
+
bigdecimal (3.1.9)
|
91
|
+
bootsnap (1.18.4)
|
92
|
+
msgpack (~> 1.2)
|
93
|
+
brakeman (7.0.0)
|
94
|
+
racc
|
95
|
+
builder (3.3.0)
|
96
|
+
clerk-http-client (0.0.1)
|
97
|
+
faraday (>= 1.0.1, < 3.0)
|
98
|
+
faraday-multipart
|
99
|
+
marcel
|
100
|
+
concurrent-ruby (1.3.4)
|
101
|
+
connection_pool (2.4.1)
|
102
|
+
crass (1.0.6)
|
103
|
+
date (3.4.1)
|
104
|
+
debug (1.10.0)
|
105
|
+
irb (~> 1.10)
|
106
|
+
reline (>= 0.3.8)
|
107
|
+
dotenv (3.1.7)
|
108
|
+
dotenv-rails (3.1.7)
|
109
|
+
dotenv (= 3.1.7)
|
110
|
+
railties (>= 6.1)
|
111
|
+
drb (2.2.1)
|
112
|
+
ed25519 (1.3.0)
|
113
|
+
erubi (1.13.1)
|
114
|
+
et-orbi (1.2.11)
|
115
|
+
tzinfo
|
116
|
+
faraday (2.12.2)
|
117
|
+
faraday-net_http (>= 2.0, < 3.5)
|
118
|
+
json
|
119
|
+
logger
|
120
|
+
faraday-multipart (1.1.0)
|
121
|
+
multipart-post (~> 2.0)
|
122
|
+
faraday-net_http (3.4.0)
|
123
|
+
net-http (>= 0.5.0)
|
124
|
+
fugit (1.11.1)
|
125
|
+
et-orbi (~> 1, >= 1.2.11)
|
126
|
+
raabro (~> 1.4)
|
127
|
+
globalid (1.2.1)
|
128
|
+
activesupport (>= 6.1)
|
129
|
+
i18n (1.14.6)
|
130
|
+
concurrent-ruby (~> 1.0)
|
131
|
+
io-console (0.8.0)
|
132
|
+
irb (1.14.3)
|
133
|
+
rdoc (>= 4.0.0)
|
134
|
+
reline (>= 0.4.2)
|
135
|
+
json (2.9.1)
|
136
|
+
jwt (2.10.1)
|
137
|
+
base64
|
138
|
+
kamal (2.4.0)
|
139
|
+
activesupport (>= 7.0)
|
140
|
+
base64 (~> 0.2)
|
141
|
+
bcrypt_pbkdf (~> 1.0)
|
142
|
+
concurrent-ruby (~> 1.2)
|
143
|
+
dotenv (~> 3.1)
|
144
|
+
ed25519 (~> 1.2)
|
145
|
+
net-ssh (~> 7.3)
|
146
|
+
sshkit (>= 1.23.0, < 2.0)
|
147
|
+
thor (~> 1.3)
|
148
|
+
zeitwerk (>= 2.6.18, < 3.0)
|
149
|
+
language_server-protocol (3.17.0.3)
|
150
|
+
logger (1.6.4)
|
151
|
+
loofah (2.24.0)
|
152
|
+
crass (~> 1.0.2)
|
153
|
+
nokogiri (>= 1.12.0)
|
154
|
+
mail (2.8.1)
|
155
|
+
mini_mime (>= 0.1.1)
|
156
|
+
net-imap
|
157
|
+
net-pop
|
158
|
+
net-smtp
|
159
|
+
marcel (1.0.4)
|
160
|
+
mini_mime (1.1.5)
|
161
|
+
mini_portile2 (2.8.8)
|
162
|
+
minitest (5.25.4)
|
163
|
+
msgpack (1.7.5)
|
164
|
+
multipart-post (2.4.1)
|
165
|
+
net-http (0.6.0)
|
166
|
+
uri
|
167
|
+
net-imap (0.5.5)
|
168
|
+
date
|
169
|
+
net-protocol
|
170
|
+
net-pop (0.1.2)
|
171
|
+
net-protocol
|
172
|
+
net-protocol (0.2.2)
|
173
|
+
timeout
|
174
|
+
net-scp (4.0.0)
|
175
|
+
net-ssh (>= 2.6.5, < 8.0.0)
|
176
|
+
net-sftp (4.0.0)
|
177
|
+
net-ssh (>= 5.0.0, < 8.0.0)
|
178
|
+
net-smtp (0.5.0)
|
179
|
+
net-protocol
|
180
|
+
net-ssh (7.3.0)
|
181
|
+
nio4r (2.7.4)
|
182
|
+
nokogiri (1.18.1)
|
183
|
+
mini_portile2 (~> 2.8.2)
|
184
|
+
racc (~> 1.4)
|
185
|
+
nokogiri (1.18.1-aarch64-linux-gnu)
|
186
|
+
racc (~> 1.4)
|
187
|
+
nokogiri (1.18.1-aarch64-linux-musl)
|
188
|
+
racc (~> 1.4)
|
189
|
+
nokogiri (1.18.1-arm-linux-gnu)
|
190
|
+
racc (~> 1.4)
|
191
|
+
nokogiri (1.18.1-arm-linux-musl)
|
192
|
+
racc (~> 1.4)
|
193
|
+
nokogiri (1.18.1-arm64-darwin)
|
194
|
+
racc (~> 1.4)
|
195
|
+
nokogiri (1.18.1-x86_64-darwin)
|
196
|
+
racc (~> 1.4)
|
197
|
+
nokogiri (1.18.1-x86_64-linux-gnu)
|
198
|
+
racc (~> 1.4)
|
199
|
+
nokogiri (1.18.1-x86_64-linux-musl)
|
200
|
+
racc (~> 1.4)
|
201
|
+
ostruct (0.6.1)
|
202
|
+
parallel (1.26.3)
|
203
|
+
parser (3.3.6.0)
|
204
|
+
ast (~> 2.4.1)
|
205
|
+
racc
|
206
|
+
psych (5.2.2)
|
207
|
+
date
|
208
|
+
stringio
|
209
|
+
puma (6.5.0)
|
210
|
+
nio4r (~> 2.0)
|
211
|
+
raabro (1.4.0)
|
212
|
+
racc (1.8.1)
|
213
|
+
rack (3.1.8)
|
214
|
+
rack-session (2.1.0)
|
215
|
+
base64 (>= 0.1.0)
|
216
|
+
rack (>= 3.0.0)
|
217
|
+
rack-test (2.2.0)
|
218
|
+
rack (>= 1.3)
|
219
|
+
rackup (2.2.1)
|
220
|
+
rack (>= 3)
|
221
|
+
rails (8.0.1)
|
222
|
+
actioncable (= 8.0.1)
|
223
|
+
actionmailbox (= 8.0.1)
|
224
|
+
actionmailer (= 8.0.1)
|
225
|
+
actionpack (= 8.0.1)
|
226
|
+
actiontext (= 8.0.1)
|
227
|
+
actionview (= 8.0.1)
|
228
|
+
activejob (= 8.0.1)
|
229
|
+
activemodel (= 8.0.1)
|
230
|
+
activerecord (= 8.0.1)
|
231
|
+
activestorage (= 8.0.1)
|
232
|
+
activesupport (= 8.0.1)
|
233
|
+
bundler (>= 1.15.0)
|
234
|
+
railties (= 8.0.1)
|
235
|
+
rails-dom-testing (2.2.0)
|
236
|
+
activesupport (>= 5.0.0)
|
237
|
+
minitest
|
238
|
+
nokogiri (>= 1.6)
|
239
|
+
rails-html-sanitizer (1.6.2)
|
240
|
+
loofah (~> 2.21)
|
241
|
+
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)
|
242
|
+
railties (8.0.1)
|
243
|
+
actionpack (= 8.0.1)
|
244
|
+
activesupport (= 8.0.1)
|
245
|
+
irb (~> 1.13)
|
246
|
+
rackup (>= 1.0.0)
|
247
|
+
rake (>= 12.2)
|
248
|
+
thor (~> 1.0, >= 1.2.2)
|
249
|
+
zeitwerk (~> 2.6)
|
250
|
+
rainbow (3.1.1)
|
251
|
+
rake (13.2.1)
|
252
|
+
rdoc (6.10.0)
|
253
|
+
psych (>= 4.0.0)
|
254
|
+
regexp_parser (2.10.0)
|
255
|
+
reline (0.6.0)
|
256
|
+
io-console (~> 0.5)
|
257
|
+
rubocop (1.69.2)
|
258
|
+
json (~> 2.3)
|
259
|
+
language_server-protocol (>= 3.17.0)
|
260
|
+
parallel (~> 1.10)
|
261
|
+
parser (>= 3.3.0.2)
|
262
|
+
rainbow (>= 2.2.2, < 4.0)
|
263
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
264
|
+
rubocop-ast (>= 1.36.2, < 2.0)
|
265
|
+
ruby-progressbar (~> 1.7)
|
266
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
267
|
+
rubocop-ast (1.37.0)
|
268
|
+
parser (>= 3.3.1.0)
|
269
|
+
rubocop-minitest (0.36.0)
|
270
|
+
rubocop (>= 1.61, < 2.0)
|
271
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
272
|
+
rubocop-performance (1.23.1)
|
273
|
+
rubocop (>= 1.48.1, < 2.0)
|
274
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
275
|
+
rubocop-rails (2.28.0)
|
276
|
+
activesupport (>= 4.2.0)
|
277
|
+
rack (>= 1.1)
|
278
|
+
rubocop (>= 1.52.0, < 2.0)
|
279
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
280
|
+
rubocop-rails-omakase (1.0.0)
|
281
|
+
rubocop
|
282
|
+
rubocop-minitest
|
283
|
+
rubocop-performance
|
284
|
+
rubocop-rails
|
285
|
+
ruby-progressbar (1.13.0)
|
286
|
+
securerandom (0.4.1)
|
287
|
+
solid_cable (3.0.5)
|
288
|
+
actioncable (>= 7.2)
|
289
|
+
activejob (>= 7.2)
|
290
|
+
activerecord (>= 7.2)
|
291
|
+
railties (>= 7.2)
|
292
|
+
solid_cache (1.0.6)
|
293
|
+
activejob (>= 7.2)
|
294
|
+
activerecord (>= 7.2)
|
295
|
+
railties (>= 7.2)
|
296
|
+
solid_queue (1.1.2)
|
297
|
+
activejob (>= 7.1)
|
298
|
+
activerecord (>= 7.1)
|
299
|
+
concurrent-ruby (>= 1.3.1)
|
300
|
+
fugit (~> 1.11.0)
|
301
|
+
railties (>= 7.1)
|
302
|
+
thor (~> 1.3.1)
|
303
|
+
sqlite3 (2.5.0-aarch64-linux-gnu)
|
304
|
+
sqlite3 (2.5.0-aarch64-linux-musl)
|
305
|
+
sqlite3 (2.5.0-arm-linux-gnu)
|
306
|
+
sqlite3 (2.5.0-arm-linux-musl)
|
307
|
+
sqlite3 (2.5.0-arm64-darwin)
|
308
|
+
sqlite3 (2.5.0-x86-linux-gnu)
|
309
|
+
sqlite3 (2.5.0-x86-linux-musl)
|
310
|
+
sqlite3 (2.5.0-x86_64-darwin)
|
311
|
+
sqlite3 (2.5.0-x86_64-linux-gnu)
|
312
|
+
sqlite3 (2.5.0-x86_64-linux-musl)
|
313
|
+
sshkit (1.23.2)
|
314
|
+
base64
|
315
|
+
net-scp (>= 1.1.2)
|
316
|
+
net-sftp (>= 2.1.2)
|
317
|
+
net-ssh (>= 2.8.0)
|
318
|
+
ostruct
|
319
|
+
stringio (3.1.2)
|
320
|
+
thor (1.3.2)
|
321
|
+
thruster (0.1.10)
|
322
|
+
thruster (0.1.10-aarch64-linux)
|
323
|
+
thruster (0.1.10-arm64-darwin)
|
324
|
+
thruster (0.1.10-x86_64-darwin)
|
325
|
+
thruster (0.1.10-x86_64-linux)
|
326
|
+
timeout (0.4.3)
|
327
|
+
tzinfo (2.0.6)
|
328
|
+
concurrent-ruby (~> 1.0)
|
329
|
+
unicode-display_width (3.1.3)
|
330
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
331
|
+
unicode-emoji (4.0.4)
|
332
|
+
uri (1.0.2)
|
333
|
+
useragent (0.16.11)
|
334
|
+
websocket-driver (0.7.7)
|
335
|
+
base64
|
336
|
+
websocket-extensions (>= 0.1.0)
|
337
|
+
websocket-extensions (0.1.5)
|
338
|
+
zeitwerk (2.7.1)
|
339
|
+
|
340
|
+
PLATFORMS
|
341
|
+
aarch64-linux
|
342
|
+
aarch64-linux-gnu
|
343
|
+
aarch64-linux-musl
|
344
|
+
arm-linux
|
345
|
+
arm-linux-gnu
|
346
|
+
arm-linux-musl
|
347
|
+
arm64-darwin
|
348
|
+
x86-linux
|
349
|
+
x86-linux-gnu
|
350
|
+
x86-linux-musl
|
351
|
+
x86_64-darwin
|
352
|
+
x86_64-linux
|
353
|
+
x86_64-linux-gnu
|
354
|
+
x86_64-linux-musl
|
355
|
+
|
356
|
+
DEPENDENCIES
|
357
|
+
bootsnap
|
358
|
+
brakeman
|
359
|
+
clerk-sdk-ruby!
|
360
|
+
debug
|
361
|
+
dotenv-rails (~> 3.1)
|
362
|
+
kamal
|
363
|
+
puma (>= 5.0)
|
364
|
+
rails (~> 8.0.0)
|
365
|
+
rubocop-rails-omakase
|
366
|
+
solid_cable
|
367
|
+
solid_cache
|
368
|
+
solid_queue
|
369
|
+
sqlite3 (>= 2.1)
|
370
|
+
thruster
|
371
|
+
tzinfo-data
|
372
|
+
|
373
|
+
BUNDLED WITH
|
374
|
+
2.6.2
|
@@ -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
|
+
* ...
|
@@ -0,0 +1,7 @@
|
|
1
|
+
class ApplicationJob < ActiveJob::Base
|
2
|
+
# Automatically retry jobs that encountered a deadlock
|
3
|
+
# retry_on ActiveRecord::Deadlocked
|
4
|
+
|
5
|
+
# Most jobs are safe to ignore if the underlying records are no longer available
|
6
|
+
# discard_on ActiveJob::DeserializationError
|
7
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= yield %>
|
@@ -0,0 +1,109 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'bundle' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "rubygems"
|
12
|
+
|
13
|
+
m = Module.new do
|
14
|
+
module_function
|
15
|
+
|
16
|
+
def invoked_as_script?
|
17
|
+
File.expand_path($0) == File.expand_path(__FILE__)
|
18
|
+
end
|
19
|
+
|
20
|
+
def env_var_version
|
21
|
+
ENV["BUNDLER_VERSION"]
|
22
|
+
end
|
23
|
+
|
24
|
+
def cli_arg_version
|
25
|
+
return unless invoked_as_script? # don't want to hijack other binstubs
|
26
|
+
return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
|
27
|
+
bundler_version = nil
|
28
|
+
update_index = nil
|
29
|
+
ARGV.each_with_index do |a, i|
|
30
|
+
if update_index && update_index.succ == i && a.match?(Gem::Version::ANCHORED_VERSION_PATTERN)
|
31
|
+
bundler_version = a
|
32
|
+
end
|
33
|
+
next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
|
34
|
+
bundler_version = $1
|
35
|
+
update_index = i
|
36
|
+
end
|
37
|
+
bundler_version
|
38
|
+
end
|
39
|
+
|
40
|
+
def gemfile
|
41
|
+
gemfile = ENV["BUNDLE_GEMFILE"]
|
42
|
+
return gemfile if gemfile && !gemfile.empty?
|
43
|
+
|
44
|
+
File.expand_path("../Gemfile", __dir__)
|
45
|
+
end
|
46
|
+
|
47
|
+
def lockfile
|
48
|
+
lockfile =
|
49
|
+
case File.basename(gemfile)
|
50
|
+
when "gems.rb" then gemfile.sub(/\.rb$/, ".locked")
|
51
|
+
else "#{gemfile}.lock"
|
52
|
+
end
|
53
|
+
File.expand_path(lockfile)
|
54
|
+
end
|
55
|
+
|
56
|
+
def lockfile_version
|
57
|
+
return unless File.file?(lockfile)
|
58
|
+
lockfile_contents = File.read(lockfile)
|
59
|
+
return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
|
60
|
+
Regexp.last_match(1)
|
61
|
+
end
|
62
|
+
|
63
|
+
def bundler_requirement
|
64
|
+
@bundler_requirement ||=
|
65
|
+
env_var_version ||
|
66
|
+
cli_arg_version ||
|
67
|
+
bundler_requirement_for(lockfile_version)
|
68
|
+
end
|
69
|
+
|
70
|
+
def bundler_requirement_for(version)
|
71
|
+
return "#{Gem::Requirement.default}.a" unless version
|
72
|
+
|
73
|
+
bundler_gem_version = Gem::Version.new(version)
|
74
|
+
|
75
|
+
bundler_gem_version.approximate_recommendation
|
76
|
+
end
|
77
|
+
|
78
|
+
def load_bundler!
|
79
|
+
ENV["BUNDLE_GEMFILE"] ||= gemfile
|
80
|
+
|
81
|
+
activate_bundler
|
82
|
+
end
|
83
|
+
|
84
|
+
def activate_bundler
|
85
|
+
gem_error = activation_error_handling do
|
86
|
+
gem "bundler", bundler_requirement
|
87
|
+
end
|
88
|
+
return if gem_error.nil?
|
89
|
+
require_error = activation_error_handling do
|
90
|
+
require "bundler/version"
|
91
|
+
end
|
92
|
+
return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION))
|
93
|
+
warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`"
|
94
|
+
exit 42
|
95
|
+
end
|
96
|
+
|
97
|
+
def activation_error_handling
|
98
|
+
yield
|
99
|
+
nil
|
100
|
+
rescue StandardError, LoadError => e
|
101
|
+
e
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
m.load_bundler!
|
106
|
+
|
107
|
+
if m.invoked_as_script?
|
108
|
+
load Gem.bin_path("bundler", "bundle")
|
109
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/bin/bash -e
|
2
|
+
|
3
|
+
# Enable jemalloc for reduced memory usage and latency.
|
4
|
+
if [ -z "${LD_PRELOAD+x}" ]; then
|
5
|
+
LD_PRELOAD=$(find /usr/lib -name libjemalloc.so.2 -print -quit)
|
6
|
+
export LD_PRELOAD
|
7
|
+
fi
|
8
|
+
|
9
|
+
# If running the rails server then create or migrate existing database
|
10
|
+
if [ "${@: -2:1}" == "./bin/rails" ] && [ "${@: -1:1}" == "server" ]; then
|
11
|
+
./bin/rails db:prepare
|
12
|
+
fi
|
13
|
+
|
14
|
+
exec "${@}"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'kamal' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
12
|
+
|
13
|
+
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
|
+
|
15
|
+
if File.file?(bundle_binstub)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
|
+
load(bundle_binstub)
|
18
|
+
else
|
19
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
20
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
require "rubygems"
|
25
|
+
require "bundler/setup"
|
26
|
+
|
27
|
+
load Gem.bin_path("kamal", "kamal")
|
@@ -0,0 +1,8 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require "rubygems"
|
3
|
+
require "bundler/setup"
|
4
|
+
|
5
|
+
# explicit rubocop config increases performance slightly while avoiding config confusion.
|
6
|
+
ARGV.unshift("--config", File.expand_path("../.rubocop.yml", __dir__))
|
7
|
+
|
8
|
+
load Gem.bin_path("rubocop", "rubocop")
|
@@ -0,0 +1,34 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require "fileutils"
|
3
|
+
|
4
|
+
APP_ROOT = File.expand_path("..", __dir__)
|
5
|
+
|
6
|
+
def system!(*args)
|
7
|
+
system(*args, exception: true)
|
8
|
+
end
|
9
|
+
|
10
|
+
FileUtils.chdir APP_ROOT do
|
11
|
+
# This script is a way to set up or update your development environment automatically.
|
12
|
+
# This script is idempotent, so that you can run it at any time and get an expectable outcome.
|
13
|
+
# Add necessary setup steps to this file.
|
14
|
+
|
15
|
+
puts "== Installing dependencies =="
|
16
|
+
system("bundle check") || system!("bundle install")
|
17
|
+
|
18
|
+
# puts "\n== Copying sample files =="
|
19
|
+
# unless File.exist?("config/database.yml")
|
20
|
+
# FileUtils.cp "config/database.yml.sample", "config/database.yml"
|
21
|
+
# end
|
22
|
+
|
23
|
+
puts "\n== Preparing database =="
|
24
|
+
system! "bin/rails db:prepare"
|
25
|
+
|
26
|
+
puts "\n== Removing old logs and tempfiles =="
|
27
|
+
system! "bin/rails log:clear tmp:clear"
|
28
|
+
|
29
|
+
unless ARGV.include?("--skip-server")
|
30
|
+
puts "\n== Starting development server =="
|
31
|
+
STDOUT.flush # flush the output before exec(2) so that it displays
|
32
|
+
exec "bin/dev"
|
33
|
+
end
|
34
|
+
end
|