kaze 0.2.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +21 -2
  3. data/lib/kaze/commands/install_command.rb +24 -7
  4. data/lib/kaze/commands/installs_hotwire_stack.rb +62 -0
  5. data/lib/kaze/commands/{install_inertia_stacks.rb → installs_inertia_stacks.rb} +19 -17
  6. data/lib/kaze/version.rb +1 -1
  7. data/stubs/default/app/validators/lowercase_validator.rb +1 -0
  8. data/stubs/default/app/views/layouts/mailer.html.erb +3 -1
  9. data/stubs/default/app/views/layouts/mailer.text.erb +3 -1
  10. data/stubs/default/config/routes.rb +1 -1
  11. data/stubs/hotwire/Procfile.dev +2 -0
  12. data/stubs/hotwire/app/components/application_logo_component.rb +14 -0
  13. data/stubs/hotwire/app/components/auth_session_status_component.rb +17 -0
  14. data/stubs/hotwire/app/components/danger_button_component.rb +13 -0
  15. data/stubs/hotwire/app/components/dropdown_component.html.erb +20 -0
  16. data/stubs/hotwire/app/components/dropdown_component.rb +15 -0
  17. data/stubs/hotwire/app/components/dropdown_link_component.rb +12 -0
  18. data/stubs/hotwire/app/components/input_error_component.rb +18 -0
  19. data/stubs/hotwire/app/components/input_label_component.rb +13 -0
  20. data/stubs/hotwire/app/components/modal_component.html.erb +62 -0
  21. data/stubs/hotwire/app/components/modal_component.rb +14 -0
  22. data/stubs/hotwire/app/components/nav_link_component.rb +15 -0
  23. data/stubs/hotwire/app/components/primary_button_component.rb +13 -0
  24. data/stubs/hotwire/app/components/responsive_nav_link_component.rb +15 -0
  25. data/stubs/hotwire/app/components/secondary_button_component.rb +13 -0
  26. data/stubs/hotwire/app/components/text_input_component.rb +11 -0
  27. data/stubs/hotwire/app/controllers/application_controller.rb +3 -0
  28. data/stubs/hotwire/app/controllers/auth/authenticated_session_controller.rb +29 -0
  29. data/stubs/hotwire/app/controllers/auth/new_password_controller.rb +19 -0
  30. data/stubs/hotwire/app/controllers/auth/password_reset_link_controller.rb +19 -0
  31. data/stubs/hotwire/app/controllers/auth/registered_user_controller.rb +23 -0
  32. data/stubs/hotwire/app/controllers/dashboard_controller.rb +4 -0
  33. data/stubs/hotwire/app/controllers/password_controller.rb +11 -0
  34. data/stubs/hotwire/app/controllers/profile_controller.rb +33 -0
  35. data/stubs/hotwire/app/controllers/welcome_controller.rb +7 -0
  36. data/stubs/hotwire/app/javascript/alpinejs.js +2 -0
  37. data/stubs/hotwire/app/javascript/application.js +8 -0
  38. data/stubs/hotwire/app/views/auth/forgot_password.html.erb +23 -0
  39. data/stubs/hotwire/app/views/auth/login.html.erb +40 -0
  40. data/stubs/hotwire/app/views/auth/register.html.erb +47 -0
  41. data/stubs/hotwire/app/views/auth/reset_password.html.erb +28 -0
  42. data/stubs/hotwire/app/views/dashboard/index.html.erb +15 -0
  43. data/stubs/hotwire/app/views/layouts/_navigation.html.erb +92 -0
  44. data/stubs/hotwire/app/views/layouts/application.html.erb +42 -0
  45. data/stubs/hotwire/app/views/layouts/guest.html.erb +33 -0
  46. data/stubs/hotwire/app/views/profile/edit.html.erb +27 -0
  47. data/stubs/hotwire/app/views/profile/partials/_delete_user_form.html.erb +48 -0
  48. data/stubs/hotwire/app/views/profile/partials/_update_password_form.html.erb +58 -0
  49. data/stubs/hotwire/app/views/profile/partials/_update_profile_information_form.html.erb +49 -0
  50. data/stubs/hotwire/app/views/welcome/index.html.erb +68 -0
  51. data/stubs/hotwire/config/importmap.rb +3 -0
  52. data/stubs/hotwire/config/tailwind.config.js +23 -0
  53. data/stubs/inertia-common/app/controllers/concerns/authenticate.rb +34 -0
  54. data/stubs/{default → inertia-common}/app/controllers/dashboard_controller.rb +1 -1
  55. data/stubs/inertia-common/bin/vite +27 -0
  56. data/stubs/inertia-common/config/vite.json +16 -0
  57. data/stubs/inertia-react-ts/app/views/layouts/application.html.erb +0 -4
  58. data/stubs/inertia-react-ts/config/tailwind.config.js +1 -1
  59. data/stubs/inertia-react-ts/package.json +24 -24
  60. data/stubs/inertia-vue-ts/app/javascript/Pages/Welcome.vue +1 -1
  61. data/stubs/inertia-vue-ts/app/views/layouts/application.html.erb +0 -4
  62. data/stubs/inertia-vue-ts/config/tailwind.config.js +1 -1
  63. metadata +63 -18
  64. data/stubs/default/config/vite.json +0 -16
  65. /data/stubs/{default → hotwire}/app/controllers/concerns/authenticate.rb +0 -0
  66. /data/stubs/{default → hotwire}/bin/vite +0 -0
  67. /data/stubs/{default → inertia-common}/Procfile.dev +0 -0
  68. /data/stubs/{default → inertia-common}/app/controllers/application_controller.rb +0 -0
  69. /data/stubs/{default → inertia-common}/app/controllers/auth/authenticated_session_controller.rb +0 -0
  70. /data/stubs/{default → inertia-common}/app/controllers/auth/new_password_controller.rb +0 -0
  71. /data/stubs/{default → inertia-common}/app/controllers/auth/password_reset_link_controller.rb +0 -0
  72. /data/stubs/{default → inertia-common}/app/controllers/auth/registered_user_controller.rb +0 -0
  73. /data/stubs/{default → inertia-common}/app/controllers/concerns/handle_inertia_requests.rb +0 -0
  74. /data/stubs/{default → inertia-common}/app/controllers/concerns/verify_csrf_token.rb +0 -0
  75. /data/stubs/{default → inertia-common}/app/controllers/password_controller.rb +0 -0
  76. /data/stubs/{default → inertia-common}/app/controllers/profile_controller.rb +0 -0
  77. /data/stubs/{default → inertia-common}/app/controllers/welcome_controller.rb +0 -0