class SvelteOnRails::Generators::InstallGenerator
def hello_world
def hello_world return unless options[:hello_world] || options[:full] puts '-' * 80 puts ' ▶︎▶︎▶︎︎ INSTALLING Hello World component' puts '-' * 80 hw_i = SvelteOnRails::Installer::HelloWorld @hello_world_path = hw_i.install_hello_world(['rails_vite_hello_world'], app_root: nil, force: true, silent: true) end