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.
- checksums.yaml +4 -4
- data/.builders/generators/project-plan.rb +6 -0
- data/CHANGELOG.md +22 -0
- data/after_templates/README.md +9 -1
- data/after_templates/rag_tailwind.rb +2 -4
- data/after_templates/rag_tailwind_daisyui/index.html.erb +181 -0
- data/after_templates/rag_tailwind_daisyui.rb +25 -0
- data/after_templates/rag_tailwind_hotwire_flash.rb +23 -0
- data/after_templates/rag_tailwind_hotwire_form/_contact.html.erb +8 -0
- data/after_templates/rag_tailwind_hotwire_form/_count.html.erb +1 -0
- data/after_templates/rag_tailwind_hotwire_form/_flash.html.erb +6 -0
- data/after_templates/rag_tailwind_hotwire_form/_form.html.erb +16 -0
- data/after_templates/rag_tailwind_hotwire_form/_list.html.erb +19 -0
- data/after_templates/rag_tailwind_hotwire_form/application.html.erb +23 -0
- data/after_templates/rag_tailwind_hotwire_form/application.js +30 -0
- data/after_templates/rag_tailwind_hotwire_form/application.tailwind.css +111 -0
- data/after_templates/rag_tailwind_hotwire_form/application_helper.rb +15 -0
- data/after_templates/rag_tailwind_hotwire_form/contact.rb +5 -0
- data/after_templates/rag_tailwind_hotwire_form/contacts_controller.rb +98 -0
- data/after_templates/rag_tailwind_hotwire_form/create.turbo_stream.erb +4 -0
- data/after_templates/rag_tailwind_hotwire_form/edit.html.erb +12 -0
- data/after_templates/rag_tailwind_hotwire_form/index.html.erb +5 -0
- data/after_templates/rag_tailwind_hotwire_form/new.html.erb +12 -0
- data/after_templates/rag_tailwind_hotwire_form/show.html.erb +16 -0
- data/after_templates/rag_tailwind_hotwire_form/update.turbo_stream.erb +2 -0
- data/after_templates/rag_tailwind_hotwire_form.rb +54 -0
- data/after_templates/rag_tailwind_hotwire_form_search/_contact.html.erb +8 -0
- data/after_templates/rag_tailwind_hotwire_form_search/_count.html.erb +1 -0
- data/after_templates/rag_tailwind_hotwire_form_search/_flash.html.erb +6 -0
- data/after_templates/rag_tailwind_hotwire_form_search/_form.html.erb +16 -0
- data/after_templates/rag_tailwind_hotwire_form_search/_list.html.erb +19 -0
- data/after_templates/rag_tailwind_hotwire_form_search/_theme_changer.html.erb +35 -0
- data/after_templates/rag_tailwind_hotwire_form_search/application.html.erb +25 -0
- data/after_templates/rag_tailwind_hotwire_form_search/application.js +40 -0
- data/after_templates/rag_tailwind_hotwire_form_search/application.tailwind.css +111 -0
- data/after_templates/rag_tailwind_hotwire_form_search/application_helper.rb +13 -0
- data/after_templates/rag_tailwind_hotwire_form_search/contact.rb +13 -0
- data/after_templates/rag_tailwind_hotwire_form_search/contacts_controller.rb +72 -0
- data/after_templates/rag_tailwind_hotwire_form_search/create.turbo_stream.erb +4 -0
- data/after_templates/rag_tailwind_hotwire_form_search/edit.html.erb +12 -0
- data/after_templates/rag_tailwind_hotwire_form_search/index.html.erb +15 -0
- data/after_templates/rag_tailwind_hotwire_form_search/new.html.erb +12 -0
- data/after_templates/rag_tailwind_hotwire_form_search/search_controller.js +16 -0
- data/after_templates/rag_tailwind_hotwire_form_search/show.html.erb +16 -0
- data/after_templates/rag_tailwind_hotwire_form_search/theme_changer_controller.js +13 -0
- data/after_templates/rag_tailwind_hotwire_form_search/update.turbo_stream.erb +2 -0
- data/after_templates/rag_tailwind_hotwire_form_search.rb +77 -0
- data/after_templates/rag_tailwind_style_reuse.rb +23 -0
- data/docs/project-plan/project.drawio +47 -32
- data/docs/project-plan/project_done.svg +1 -1
- data/docs/project-plan/project_in_progress.svg +1 -1
- data/docs/project-plan/project_todo.svg +1 -1
- data/lib/rails_app_generator/app_generator.rb +38 -0
- data/lib/rails_app_generator/diff/open_in_editor.rb +1 -1
- data/lib/rails_app_generator/diff/processor.rb +8 -1
- data/lib/rails_app_generator/version.rb +1 -1
- data/package-lock.json +1019 -85
- data/package.json +4 -1
- data/profiles/rag-tailwind-daisyui.json +10 -0
- data/profiles/rag-tailwind-hotwire-flash.json +12 -0
- data/profiles/rag-tailwind-hotwire-form-search.json +13 -0
- data/profiles/rag-tailwind-hotwire-form.json +13 -0
- data/profiles/rag-tailwind-style-reuse.json +12 -0
- metadata +50 -2