propel_authentication 0.1.2 → 0.1.4

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.
Files changed (103) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +87 -0
  3. data/README.md +251 -113
  4. data/lib/generators/{propel_auth → propel_authentication}/install_generator.rb +89 -93
  5. data/lib/generators/{propel_auth → propel_authentication}/templates/auth_mailer.rb +1 -1
  6. data/lib/generators/{propel_auth → propel_authentication}/templates/authenticatable.rb +3 -3
  7. data/lib/generators/{propel_auth → propel_authentication}/templates/concerns/confirmable.rb +2 -2
  8. data/lib/generators/{propel_auth → propel_authentication}/templates/concerns/lockable.rb +6 -6
  9. data/lib/generators/{propel_auth → propel_authentication}/templates/concerns/recoverable.rb +6 -6
  10. data/lib/generators/propel_authentication/templates/core/configuration_methods.rb +151 -0
  11. data/lib/generators/{propel_auth → propel_authentication}/templates/invitation.rb +2 -2
  12. data/lib/generators/{propel_auth/templates/propel_auth.rb → propel_authentication/templates/propel_authentication.rb.tt} +18 -17
  13. data/lib/generators/{propel_auth → propel_authentication}/templates/test/concerns/lockable_test.rb.tt +12 -12
  14. data/lib/generators/{propel_auth → propel_authentication}/templates/test/concerns/propel_authentication_test.rb.tt +1 -1
  15. data/lib/generators/{propel_auth → propel_authentication}/templates/test/concerns/recoverable_test.rb.tt +7 -7
  16. data/lib/generators/{propel_auth → propel_authentication}/templates/user_test.rb.tt +1 -1
  17. data/lib/generators/{propel_auth → propel_authentication}/unpack_generator.rb +38 -25
  18. data/lib/propel_authentication.rb +3 -0
  19. metadata +98 -99
  20. data/lib/generators/propel_auth/pack_generator.rb +0 -277
  21. data/lib/generators/propel_auth/templates/lib/propel_auth.rb +0 -84
  22. data/lib/generators/propel_auth/test/dummy/Gemfile.lock +0 -394
  23. data/lib/propel_auth.rb +0 -3
  24. /data/lib/generators/{propel_auth → propel_authentication}/templates/agency.rb +0 -0
  25. /data/lib/generators/{propel_auth → propel_authentication}/templates/agent.rb +0 -0
  26. /data/lib/generators/{propel_auth → propel_authentication}/templates/auth/base_passwords_controller.rb.tt +0 -0
  27. /data/lib/generators/{propel_auth → propel_authentication}/templates/auth/base_tokens_controller.rb.tt +0 -0
  28. /data/lib/generators/{propel_auth → propel_authentication}/templates/auth/passwords_controller.rb.tt +0 -0
  29. /data/lib/generators/{propel_auth → propel_authentication}/templates/concerns/propel_authentication.rb +0 -0
  30. /data/lib/generators/{propel_auth → propel_authentication}/templates/concerns/rack_session_disable.rb +0 -0
  31. /data/lib/generators/{propel_auth → propel_authentication}/templates/config/environments/development_email.rb +0 -0
  32. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/migrate/create_agencies.rb +0 -0
  33. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/migrate/create_agents.rb +0 -0
  34. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/migrate/create_invitations.rb +0 -0
  35. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/migrate/create_organizations.rb +0 -0
  36. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/migrate/create_users.rb +0 -0
  37. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/seeds.rb +0 -0
  38. /data/lib/generators/{propel_auth → propel_authentication}/templates/organization.rb +0 -0
  39. /data/lib/generators/{propel_auth → propel_authentication}/templates/services/auth_notification_service.rb +0 -0
  40. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/concerns/confirmable_test.rb.tt +0 -0
  41. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/controllers/auth/lockable_integration_test.rb.tt +0 -0
  42. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/controllers/auth/password_reset_integration_test.rb.tt +0 -0
  43. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/controllers/auth/tokens_controller_test.rb.tt +0 -0
  44. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/mailers/auth_mailer_test.rb.tt +0 -0
  45. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/mailers/previews/auth_mailer_preview.rb +0 -0
  46. /data/lib/generators/{propel_auth → propel_authentication}/templates/tokens_controller.rb.tt +0 -0
  47. /data/lib/generators/{propel_auth → propel_authentication}/templates/user.rb +0 -0
  48. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/account_unlock.html.erb +0 -0
  49. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/account_unlock.text.erb +0 -0
  50. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/email_confirmation.html.erb +0 -0
  51. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/email_confirmation.text.erb +0 -0
  52. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/password_reset.html.erb +0 -0
  53. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/password_reset.text.erb +0 -0
  54. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/user_invitation.html.erb +0 -0
  55. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/user_invitation.text.erb +0 -0
  56. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/Dockerfile +0 -0
  57. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/Gemfile +0 -0
  58. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/README.md +0 -0
  59. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/Rakefile +0 -0
  60. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/assets/stylesheets/application.css +0 -0
  61. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/controllers/application_controller.rb +0 -0
  62. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/helpers/application_helper.rb +0 -0
  63. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/jobs/application_job.rb +0 -0
  64. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/mailers/application_mailer.rb +0 -0
  65. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/models/application_record.rb +0 -0
  66. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/views/layouts/application.html.erb +0 -0
  67. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/views/layouts/mailer.html.erb +0 -0
  68. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/views/layouts/mailer.text.erb +0 -0
  69. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/views/pwa/manifest.json.erb +0 -0
  70. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/views/pwa/service-worker.js +0 -0
  71. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/brakeman +0 -0
  72. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/dev +0 -0
  73. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/docker-entrypoint +0 -0
  74. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/rails +0 -0
  75. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/rake +0 -0
  76. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/rubocop +0 -0
  77. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/setup +0 -0
  78. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/thrust +0 -0
  79. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/application.rb +0 -0
  80. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/boot.rb +0 -0
  81. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/cable.yml +0 -0
  82. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/credentials.yml.enc +0 -0
  83. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/database.yml +0 -0
  84. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/environment.rb +0 -0
  85. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/environments/development.rb +0 -0
  86. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/environments/production.rb +0 -0
  87. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/environments/test.rb +0 -0
  88. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/initializers/assets.rb +0 -0
  89. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/initializers/content_security_policy.rb +0 -0
  90. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/initializers/filter_parameter_logging.rb +0 -0
  91. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/initializers/inflections.rb +0 -0
  92. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/locales/en.yml +0 -0
  93. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/master.key +0 -0
  94. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/puma.rb +0 -0
  95. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/routes.rb +0 -0
  96. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/storage.yml +0 -0
  97. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config.ru +0 -0
  98. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/db/schema.rb +0 -0
  99. /data/lib/generators/{propel_auth → propel_authentication}/test/generators/authentication/controllers/tokens_controller_test.rb +0 -0
  100. /data/lib/generators/{propel_auth → propel_authentication}/test/generators/authentication/install_generator_test.rb +0 -0
  101. /data/lib/generators/{propel_auth → propel_authentication}/test/generators/authentication/uninstall_generator_test.rb +0 -0
  102. /data/lib/generators/{propel_auth → propel_authentication}/test/integration/generator_integration_test.rb +0 -0
  103. /data/lib/generators/{propel_auth → propel_authentication}/test/integration/multi_version_generator_test.rb +0 -0
@@ -1,394 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- propel_access (0.1.0)
5
- rails (>= 7.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (8.0.2)
11
- actionpack (= 8.0.2)
12
- activesupport (= 8.0.2)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- zeitwerk (~> 2.6)
16
- actionmailbox (8.0.2)
17
- actionpack (= 8.0.2)
18
- activejob (= 8.0.2)
19
- activerecord (= 8.0.2)
20
- activestorage (= 8.0.2)
21
- activesupport (= 8.0.2)
22
- mail (>= 2.8.0)
23
- actionmailer (8.0.2)
24
- actionpack (= 8.0.2)
25
- actionview (= 8.0.2)
26
- activejob (= 8.0.2)
27
- activesupport (= 8.0.2)
28
- mail (>= 2.8.0)
29
- rails-dom-testing (~> 2.2)
30
- actionpack (8.0.2)
31
- actionview (= 8.0.2)
32
- activesupport (= 8.0.2)
33
- nokogiri (>= 1.8.5)
34
- rack (>= 2.2.4)
35
- rack-session (>= 1.0.1)
36
- rack-test (>= 0.6.3)
37
- rails-dom-testing (~> 2.2)
38
- rails-html-sanitizer (~> 1.6)
39
- useragent (~> 0.16)
40
- actiontext (8.0.2)
41
- actionpack (= 8.0.2)
42
- activerecord (= 8.0.2)
43
- activestorage (= 8.0.2)
44
- activesupport (= 8.0.2)
45
- globalid (>= 0.6.0)
46
- nokogiri (>= 1.8.5)
47
- actionview (8.0.2)
48
- activesupport (= 8.0.2)
49
- builder (~> 3.1)
50
- erubi (~> 1.11)
51
- rails-dom-testing (~> 2.2)
52
- rails-html-sanitizer (~> 1.6)
53
- activejob (8.0.2)
54
- activesupport (= 8.0.2)
55
- globalid (>= 0.3.6)
56
- activemodel (8.0.2)
57
- activesupport (= 8.0.2)
58
- activerecord (8.0.2)
59
- activemodel (= 8.0.2)
60
- activesupport (= 8.0.2)
61
- timeout (>= 0.4.0)
62
- activestorage (8.0.2)
63
- actionpack (= 8.0.2)
64
- activejob (= 8.0.2)
65
- activerecord (= 8.0.2)
66
- activesupport (= 8.0.2)
67
- marcel (~> 1.0)
68
- activesupport (8.0.2)
69
- base64
70
- benchmark (>= 0.3)
71
- bigdecimal
72
- concurrent-ruby (~> 1.0, >= 1.3.1)
73
- connection_pool (>= 2.2.5)
74
- drb
75
- i18n (>= 1.6, < 2)
76
- logger (>= 1.4.2)
77
- minitest (>= 5.1)
78
- securerandom (>= 0.3)
79
- tzinfo (~> 2.0, >= 2.0.5)
80
- uri (>= 0.13.1)
81
- addressable (2.8.7)
82
- public_suffix (>= 2.0.2, < 7.0)
83
- ast (2.4.3)
84
- base64 (0.3.0)
85
- bcrypt (3.1.20)
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.1)
90
- bigdecimal (3.2.2)
91
- bindex (0.8.1)
92
- bootsnap (1.18.6)
93
- msgpack (~> 1.2)
94
- brakeman (7.0.2)
95
- racc
96
- builder (3.3.0)
97
- childprocess (5.1.0)
98
- logger (~> 1.5)
99
- concurrent-ruby (1.3.5)
100
- connection_pool (2.5.3)
101
- crass (1.0.6)
102
- date (3.4.1)
103
- debug (1.11.0)
104
- irb (~> 1.10)
105
- reline (>= 0.3.8)
106
- dotenv (3.1.8)
107
- drb (2.2.3)
108
- ed25519 (1.4.0)
109
- erubi (1.13.1)
110
- et-orbi (1.2.11)
111
- tzinfo
112
- fugit (1.11.1)
113
- et-orbi (~> 1, >= 1.2.11)
114
- raabro (~> 1.4)
115
- globalid (1.2.1)
116
- activesupport (>= 6.1)
117
- i18n (1.14.7)
118
- concurrent-ruby (~> 1.0)
119
- importmap-rails (2.1.0)
120
- actionpack (>= 6.0.0)
121
- activesupport (>= 6.0.0)
122
- railties (>= 6.0.0)
123
- io-console (0.8.0)
124
- irb (1.15.2)
125
- pp (>= 0.6.0)
126
- rdoc (>= 4.0.0)
127
- reline (>= 0.4.2)
128
- jbuilder (2.13.0)
129
- actionview (>= 5.0.0)
130
- activesupport (>= 5.0.0)
131
- json (2.12.2)
132
- jwt (2.10.2)
133
- base64
134
- kamal (2.7.0)
135
- activesupport (>= 7.0)
136
- base64 (~> 0.2)
137
- bcrypt_pbkdf (~> 1.0)
138
- concurrent-ruby (~> 1.2)
139
- dotenv (~> 3.1)
140
- ed25519 (~> 1.4)
141
- net-ssh (~> 7.3)
142
- sshkit (>= 1.23.0, < 2.0)
143
- thor (~> 1.3)
144
- zeitwerk (>= 2.6.18, < 3.0)
145
- language_server-protocol (3.17.0.5)
146
- launchy (3.1.1)
147
- addressable (~> 2.8)
148
- childprocess (~> 5.0)
149
- logger (~> 1.6)
150
- letter_opener (1.10.0)
151
- launchy (>= 2.2, < 4)
152
- lint_roller (1.1.0)
153
- logger (1.7.0)
154
- loofah (2.24.1)
155
- crass (~> 1.0.2)
156
- nokogiri (>= 1.12.0)
157
- mail (2.8.1)
158
- mini_mime (>= 0.1.1)
159
- net-imap
160
- net-pop
161
- net-smtp
162
- marcel (1.0.4)
163
- mini_mime (1.1.5)
164
- minitest (5.25.5)
165
- msgpack (1.8.0)
166
- net-imap (0.5.9)
167
- date
168
- net-protocol
169
- net-pop (0.1.2)
170
- net-protocol
171
- net-protocol (0.2.2)
172
- timeout
173
- net-scp (4.1.0)
174
- net-ssh (>= 2.6.5, < 8.0.0)
175
- net-sftp (4.0.0)
176
- net-ssh (>= 5.0.0, < 8.0.0)
177
- net-smtp (0.5.1)
178
- net-protocol
179
- net-ssh (7.3.0)
180
- nio4r (2.7.4)
181
- nokogiri (1.18.8-aarch64-linux-gnu)
182
- racc (~> 1.4)
183
- nokogiri (1.18.8-aarch64-linux-musl)
184
- racc (~> 1.4)
185
- nokogiri (1.18.8-arm-linux-gnu)
186
- racc (~> 1.4)
187
- nokogiri (1.18.8-arm-linux-musl)
188
- racc (~> 1.4)
189
- nokogiri (1.18.8-arm64-darwin)
190
- racc (~> 1.4)
191
- nokogiri (1.18.8-x86_64-darwin)
192
- racc (~> 1.4)
193
- nokogiri (1.18.8-x86_64-linux-gnu)
194
- racc (~> 1.4)
195
- nokogiri (1.18.8-x86_64-linux-musl)
196
- racc (~> 1.4)
197
- ostruct (0.6.2)
198
- parallel (1.27.0)
199
- parser (3.3.8.0)
200
- ast (~> 2.4.1)
201
- racc
202
- pp (0.6.2)
203
- prettyprint
204
- prettyprint (0.2.0)
205
- prism (1.4.0)
206
- propshaft (1.1.0)
207
- actionpack (>= 7.0.0)
208
- activesupport (>= 7.0.0)
209
- rack
210
- railties (>= 7.0.0)
211
- psych (5.2.6)
212
- date
213
- stringio
214
- public_suffix (6.0.2)
215
- puma (6.6.0)
216
- nio4r (~> 2.0)
217
- raabro (1.4.0)
218
- racc (1.8.1)
219
- rack (3.1.16)
220
- rack-session (2.1.1)
221
- base64 (>= 0.1.0)
222
- rack (>= 3.0.0)
223
- rack-test (2.2.0)
224
- rack (>= 1.3)
225
- rackup (2.2.1)
226
- rack (>= 3)
227
- rails (8.0.2)
228
- actioncable (= 8.0.2)
229
- actionmailbox (= 8.0.2)
230
- actionmailer (= 8.0.2)
231
- actionpack (= 8.0.2)
232
- actiontext (= 8.0.2)
233
- actionview (= 8.0.2)
234
- activejob (= 8.0.2)
235
- activemodel (= 8.0.2)
236
- activerecord (= 8.0.2)
237
- activestorage (= 8.0.2)
238
- activesupport (= 8.0.2)
239
- bundler (>= 1.15.0)
240
- railties (= 8.0.2)
241
- rails-dom-testing (2.3.0)
242
- activesupport (>= 5.0.0)
243
- minitest
244
- nokogiri (>= 1.6)
245
- rails-html-sanitizer (1.6.2)
246
- loofah (~> 2.21)
247
- 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)
248
- railties (8.0.2)
249
- actionpack (= 8.0.2)
250
- activesupport (= 8.0.2)
251
- irb (~> 1.13)
252
- rackup (>= 1.0.0)
253
- rake (>= 12.2)
254
- thor (~> 1.0, >= 1.2.2)
255
- zeitwerk (~> 2.6)
256
- rainbow (3.1.1)
257
- rake (13.3.0)
258
- rdoc (6.13.0)
259
- psych (>= 4.0.0)
260
- regexp_parser (2.10.0)
261
- reline (0.6.1)
262
- io-console (~> 0.5)
263
- rubocop (1.77.0)
264
- json (~> 2.3)
265
- language_server-protocol (~> 3.17.0.2)
266
- lint_roller (~> 1.1.0)
267
- parallel (~> 1.10)
268
- parser (>= 3.3.0.2)
269
- rainbow (>= 2.2.2, < 4.0)
270
- regexp_parser (>= 2.9.3, < 3.0)
271
- rubocop-ast (>= 1.45.1, < 2.0)
272
- ruby-progressbar (~> 1.7)
273
- unicode-display_width (>= 2.4.0, < 4.0)
274
- rubocop-ast (1.45.1)
275
- parser (>= 3.3.7.2)
276
- prism (~> 1.4)
277
- rubocop-performance (1.25.0)
278
- lint_roller (~> 1.1)
279
- rubocop (>= 1.75.0, < 2.0)
280
- rubocop-ast (>= 1.38.0, < 2.0)
281
- rubocop-rails (2.32.0)
282
- activesupport (>= 4.2.0)
283
- lint_roller (~> 1.1)
284
- rack (>= 1.1)
285
- rubocop (>= 1.75.0, < 2.0)
286
- rubocop-ast (>= 1.44.0, < 2.0)
287
- rubocop-rails-omakase (1.1.0)
288
- rubocop (>= 1.72)
289
- rubocop-performance (>= 1.24)
290
- rubocop-rails (>= 2.30)
291
- ruby-progressbar (1.13.0)
292
- securerandom (0.4.1)
293
- solid_cable (3.0.11)
294
- actioncable (>= 7.2)
295
- activejob (>= 7.2)
296
- activerecord (>= 7.2)
297
- railties (>= 7.2)
298
- solid_cache (1.0.7)
299
- activejob (>= 7.2)
300
- activerecord (>= 7.2)
301
- railties (>= 7.2)
302
- solid_queue (1.1.5)
303
- activejob (>= 7.1)
304
- activerecord (>= 7.1)
305
- concurrent-ruby (>= 1.3.1)
306
- fugit (~> 1.11.0)
307
- railties (>= 7.1)
308
- thor (~> 1.3.1)
309
- sqlite3 (2.7.0-aarch64-linux-gnu)
310
- sqlite3 (2.7.0-aarch64-linux-musl)
311
- sqlite3 (2.7.0-arm-linux-gnu)
312
- sqlite3 (2.7.0-arm-linux-musl)
313
- sqlite3 (2.7.0-arm64-darwin)
314
- sqlite3 (2.7.0-x86_64-darwin)
315
- sqlite3 (2.7.0-x86_64-linux-gnu)
316
- sqlite3 (2.7.0-x86_64-linux-musl)
317
- sshkit (1.24.0)
318
- base64
319
- logger
320
- net-scp (>= 1.1.2)
321
- net-sftp (>= 2.1.2)
322
- net-ssh (>= 2.8.0)
323
- ostruct
324
- stimulus-rails (1.3.4)
325
- railties (>= 6.0.0)
326
- stringio (3.1.7)
327
- thor (1.3.2)
328
- thruster (0.1.14)
329
- thruster (0.1.14-aarch64-linux)
330
- thruster (0.1.14-arm64-darwin)
331
- thruster (0.1.14-x86_64-darwin)
332
- thruster (0.1.14-x86_64-linux)
333
- timeout (0.4.3)
334
- turbo-rails (2.0.16)
335
- actionpack (>= 7.1.0)
336
- railties (>= 7.1.0)
337
- tzinfo (2.0.6)
338
- concurrent-ruby (~> 1.0)
339
- unicode-display_width (3.1.4)
340
- unicode-emoji (~> 4.0, >= 4.0.4)
341
- unicode-emoji (4.0.4)
342
- uri (1.0.3)
343
- useragent (0.16.11)
344
- web-console (4.2.1)
345
- actionview (>= 6.0.0)
346
- activemodel (>= 6.0.0)
347
- bindex (>= 0.4.0)
348
- railties (>= 6.0.0)
349
- websocket-driver (0.8.0)
350
- base64
351
- websocket-extensions (>= 0.1.0)
352
- websocket-extensions (0.1.5)
353
- zeitwerk (2.7.3)
354
-
355
- PLATFORMS
356
- aarch64-linux
357
- aarch64-linux-gnu
358
- aarch64-linux-musl
359
- arm-linux-gnu
360
- arm-linux-musl
361
- arm64-darwin
362
- x86_64-darwin
363
- x86_64-linux
364
- x86_64-linux-gnu
365
- x86_64-linux-musl
366
-
367
- DEPENDENCIES
368
- bcrypt (~> 3.1.20)
369
- bootsnap
370
- brakeman
371
- debug
372
- importmap-rails
373
- jbuilder
374
- jwt (~> 2.7)
375
- kamal
376
- letter_opener (~> 1.8)
377
- propel_access!
378
- propshaft
379
- puma (>= 5.0)
380
- rails (~> 8.0.2)
381
- rdoc (= 6.13.0)
382
- rubocop-rails-omakase
383
- solid_cable
384
- solid_cache
385
- solid_queue
386
- sqlite3 (>= 2.1)
387
- stimulus-rails
388
- thruster
389
- turbo-rails
390
- tzinfo-data
391
- web-console
392
-
393
- BUNDLED WITH
394
- 2.6.8
data/lib/propel_auth.rb DELETED
@@ -1,3 +0,0 @@
1
- module PropelAuth
2
- VERSION = "0.1.2"
3
- end