rails_app_generator 0.1.4 → 0.1.7

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 (39) hide show
  1. checksums.yaml +4 -4
  2. data/.builders/generators/project-plan.rb +8 -4
  3. data/CHANGELOG.md +21 -0
  4. data/after_templates/README.md +16 -1
  5. data/after_templates/rag_tailwind_emulating_bootstrap/Procfile.dev +3 -0
  6. data/after_templates/rag_tailwind_emulating_bootstrap/application.html.erb +20 -0
  7. data/after_templates/rag_tailwind_emulating_bootstrap/application.tailwind.css +514 -0
  8. data/after_templates/rag_tailwind_emulating_bootstrap/application_controller.rb +15 -0
  9. data/after_templates/rag_tailwind_emulating_bootstrap/home/_example.html.erb +285 -0
  10. data/after_templates/rag_tailwind_emulating_bootstrap/home/bootstrap.html.erb +5 -0
  11. data/after_templates/rag_tailwind_emulating_bootstrap/home/home_controller.rb +12 -0
  12. data/after_templates/rag_tailwind_emulating_bootstrap/home/index.html.erb +0 -0
  13. data/after_templates/rag_tailwind_emulating_bootstrap/home/tailwind.html.erb +5 -0
  14. data/after_templates/rag_tailwind_emulating_bootstrap.rb +37 -0
  15. data/after_templates/rag_tailwind_hotwire_flash.rb +23 -0
  16. data/after_templates/rag_tailwind_hotwire_form_search/_theme_changer.html.erb +31 -31
  17. data/after_templates/rag_tailwind_hotwire_form_search/application_helper.rb +0 -2
  18. data/after_templates/rag_tailwind_hotwire_form_search/index.html.erb +0 -1
  19. data/after_templates/rag_tailwind_hotwire_form_search/search_controller.js +16 -0
  20. data/after_templates/rag_tailwind_hotwire_form_search/theme_changer_controller.js +13 -0
  21. data/after_templates/rag_tailwind_hotwire_form_search.rb +12 -1
  22. data/docs/images/tailwind.png +0 -0
  23. data/docs/images/tailwind_daisyui.png +0 -0
  24. data/docs/images/tailwind_emulating_bootstrap.png +0 -0
  25. data/docs/images/tailwind_hotwire.png +0 -0
  26. data/docs/images/tailwind_hotwire_form.png +0 -0
  27. data/docs/images/tailwind_hotwire_form_search.png +0 -0
  28. data/docs/project-plan/project.drawio +46 -34
  29. data/docs/project-plan/project_done.svg +1 -1
  30. data/docs/project-plan/project_in_progress.svg +1 -1
  31. data/docs/project-plan/project_todo.svg +1 -1
  32. data/docs/videos.md +43 -0
  33. data/lib/rails_app_generator/app_generator.rb +49 -18
  34. data/lib/rails_app_generator/version.rb +1 -1
  35. data/package-lock.json +2 -2
  36. data/package.json +1 -1
  37. data/profiles/rag-tailwind-emulating-bootstrap.json +12 -0
  38. data/profiles/rag-tailwind-hotwire-flash.json +11 -0
  39. metadata +24 -2
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_app_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-28 00:00:00.000000000 Z
11
+ date: 2022-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootsnap
@@ -177,11 +177,22 @@ files:
177
177
  - after_templates/rag_tailwind/component-section-end.html
178
178
  - after_templates/rag_tailwind_daisyui.rb
179
179
  - after_templates/rag_tailwind_daisyui/index.html.erb
180
+ - after_templates/rag_tailwind_emulating_bootstrap.rb
181
+ - after_templates/rag_tailwind_emulating_bootstrap/Procfile.dev
182
+ - after_templates/rag_tailwind_emulating_bootstrap/application.html.erb
183
+ - after_templates/rag_tailwind_emulating_bootstrap/application.tailwind.css
184
+ - after_templates/rag_tailwind_emulating_bootstrap/application_controller.rb
185
+ - after_templates/rag_tailwind_emulating_bootstrap/home/_example.html.erb
186
+ - after_templates/rag_tailwind_emulating_bootstrap/home/bootstrap.html.erb
187
+ - after_templates/rag_tailwind_emulating_bootstrap/home/home_controller.rb
188
+ - after_templates/rag_tailwind_emulating_bootstrap/home/index.html.erb
189
+ - after_templates/rag_tailwind_emulating_bootstrap/home/tailwind.html.erb
180
190
  - after_templates/rag_tailwind_hotwire.rb
181
191
  - after_templates/rag_tailwind_hotwire/home/controller.rb
182
192
  - after_templates/rag_tailwind_hotwire/home/helper.rb
183
193
  - after_templates/rag_tailwind_hotwire/home/increment.html.erb
184
194
  - after_templates/rag_tailwind_hotwire/home/index.html
195
+ - after_templates/rag_tailwind_hotwire_flash.rb
185
196
  - after_templates/rag_tailwind_hotwire_form.rb
186
197
  - after_templates/rag_tailwind_hotwire_form/_contact.html.erb
187
198
  - after_templates/rag_tailwind_hotwire_form/_count.html.erb
@@ -217,15 +228,24 @@ files:
217
228
  - after_templates/rag_tailwind_hotwire_form_search/edit.html.erb
218
229
  - after_templates/rag_tailwind_hotwire_form_search/index.html.erb
219
230
  - after_templates/rag_tailwind_hotwire_form_search/new.html.erb
231
+ - after_templates/rag_tailwind_hotwire_form_search/search_controller.js
220
232
  - after_templates/rag_tailwind_hotwire_form_search/show.html.erb
233
+ - after_templates/rag_tailwind_hotwire_form_search/theme_changer_controller.js
221
234
  - after_templates/rag_tailwind_hotwire_form_search/update.turbo_stream.erb
222
235
  - bin/console
223
236
  - bin/setup
237
+ - docs/images/tailwind.png
238
+ - docs/images/tailwind_daisyui.png
239
+ - docs/images/tailwind_emulating_bootstrap.png
240
+ - docs/images/tailwind_hotwire.png
241
+ - docs/images/tailwind_hotwire_form.png
242
+ - docs/images/tailwind_hotwire_form_search.png
224
243
  - docs/project-plan.md
225
244
  - docs/project-plan/project.drawio
226
245
  - docs/project-plan/project_done.svg
227
246
  - docs/project-plan/project_in_progress.svg
228
247
  - docs/project-plan/project_todo.svg
248
+ - docs/videos.md
229
249
  - exe/rag
230
250
  - lib/rails_app_generator.rb
231
251
  - lib/rails_app_generator/add_on.rb
@@ -294,6 +314,8 @@ files:
294
314
  - profiles/rag-import-map.json
295
315
  - profiles/rag-simple.json
296
316
  - profiles/rag-tailwind-daisyui.json
317
+ - profiles/rag-tailwind-emulating-bootstrap.json
318
+ - profiles/rag-tailwind-hotwire-flash.json
297
319
  - profiles/rag-tailwind-hotwire-form-search.json
298
320
  - profiles/rag-tailwind-hotwire-form.json
299
321
  - profiles/rag-tailwind-hotwire.json