rails_app_generator 0.1.2 → 0.1.5

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 (64) hide show
  1. checksums.yaml +4 -4
  2. data/.builders/generators/project-plan.rb +6 -0
  3. data/CHANGELOG.md +22 -0
  4. data/after_templates/README.md +9 -1
  5. data/after_templates/rag_tailwind.rb +2 -4
  6. data/after_templates/rag_tailwind_daisyui/index.html.erb +181 -0
  7. data/after_templates/rag_tailwind_daisyui.rb +25 -0
  8. data/after_templates/rag_tailwind_hotwire_flash.rb +23 -0
  9. data/after_templates/rag_tailwind_hotwire_form/_contact.html.erb +8 -0
  10. data/after_templates/rag_tailwind_hotwire_form/_count.html.erb +1 -0
  11. data/after_templates/rag_tailwind_hotwire_form/_flash.html.erb +6 -0
  12. data/after_templates/rag_tailwind_hotwire_form/_form.html.erb +16 -0
  13. data/after_templates/rag_tailwind_hotwire_form/_list.html.erb +19 -0
  14. data/after_templates/rag_tailwind_hotwire_form/application.html.erb +23 -0
  15. data/after_templates/rag_tailwind_hotwire_form/application.js +30 -0
  16. data/after_templates/rag_tailwind_hotwire_form/application.tailwind.css +111 -0
  17. data/after_templates/rag_tailwind_hotwire_form/application_helper.rb +15 -0
  18. data/after_templates/rag_tailwind_hotwire_form/contact.rb +5 -0
  19. data/after_templates/rag_tailwind_hotwire_form/contacts_controller.rb +98 -0
  20. data/after_templates/rag_tailwind_hotwire_form/create.turbo_stream.erb +4 -0
  21. data/after_templates/rag_tailwind_hotwire_form/edit.html.erb +12 -0
  22. data/after_templates/rag_tailwind_hotwire_form/index.html.erb +5 -0
  23. data/after_templates/rag_tailwind_hotwire_form/new.html.erb +12 -0
  24. data/after_templates/rag_tailwind_hotwire_form/show.html.erb +16 -0
  25. data/after_templates/rag_tailwind_hotwire_form/update.turbo_stream.erb +2 -0
  26. data/after_templates/rag_tailwind_hotwire_form.rb +54 -0
  27. data/after_templates/rag_tailwind_hotwire_form_search/_contact.html.erb +8 -0
  28. data/after_templates/rag_tailwind_hotwire_form_search/_count.html.erb +1 -0
  29. data/after_templates/rag_tailwind_hotwire_form_search/_flash.html.erb +6 -0
  30. data/after_templates/rag_tailwind_hotwire_form_search/_form.html.erb +16 -0
  31. data/after_templates/rag_tailwind_hotwire_form_search/_list.html.erb +19 -0
  32. data/after_templates/rag_tailwind_hotwire_form_search/_theme_changer.html.erb +35 -0
  33. data/after_templates/rag_tailwind_hotwire_form_search/application.html.erb +25 -0
  34. data/after_templates/rag_tailwind_hotwire_form_search/application.js +40 -0
  35. data/after_templates/rag_tailwind_hotwire_form_search/application.tailwind.css +111 -0
  36. data/after_templates/rag_tailwind_hotwire_form_search/application_helper.rb +13 -0
  37. data/after_templates/rag_tailwind_hotwire_form_search/contact.rb +13 -0
  38. data/after_templates/rag_tailwind_hotwire_form_search/contacts_controller.rb +72 -0
  39. data/after_templates/rag_tailwind_hotwire_form_search/create.turbo_stream.erb +4 -0
  40. data/after_templates/rag_tailwind_hotwire_form_search/edit.html.erb +12 -0
  41. data/after_templates/rag_tailwind_hotwire_form_search/index.html.erb +15 -0
  42. data/after_templates/rag_tailwind_hotwire_form_search/new.html.erb +12 -0
  43. data/after_templates/rag_tailwind_hotwire_form_search/search_controller.js +16 -0
  44. data/after_templates/rag_tailwind_hotwire_form_search/show.html.erb +16 -0
  45. data/after_templates/rag_tailwind_hotwire_form_search/theme_changer_controller.js +13 -0
  46. data/after_templates/rag_tailwind_hotwire_form_search/update.turbo_stream.erb +2 -0
  47. data/after_templates/rag_tailwind_hotwire_form_search.rb +77 -0
  48. data/after_templates/rag_tailwind_style_reuse.rb +23 -0
  49. data/docs/project-plan/project.drawio +47 -32
  50. data/docs/project-plan/project_done.svg +1 -1
  51. data/docs/project-plan/project_in_progress.svg +1 -1
  52. data/docs/project-plan/project_todo.svg +1 -1
  53. data/lib/rails_app_generator/app_generator.rb +38 -0
  54. data/lib/rails_app_generator/diff/open_in_editor.rb +1 -1
  55. data/lib/rails_app_generator/diff/processor.rb +8 -1
  56. data/lib/rails_app_generator/version.rb +1 -1
  57. data/package-lock.json +1019 -85
  58. data/package.json +4 -1
  59. data/profiles/rag-tailwind-daisyui.json +10 -0
  60. data/profiles/rag-tailwind-hotwire-flash.json +12 -0
  61. data/profiles/rag-tailwind-hotwire-form-search.json +13 -0
  62. data/profiles/rag-tailwind-hotwire-form.json +13 -0
  63. data/profiles/rag-tailwind-style-reuse.json +12 -0
  64. metadata +50 -2
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsAppGenerator
4
- VERSION = '0.1.2'
4
+ VERSION = '0.1.5'
5
5
  end