Class: Htmx::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Htmx::Generators::InstallGenerator
- Defined in:
- lib/generators/htmx/install_generator.rb
Constant Summary collapse
- WEBPACKER_SETUP =
"require('htmx.org')\n"
- SPROCKETS_SETUP =
"//= require htmx\n"
Instance Method Summary collapse
-
#setup ⇒ Object
Setup HTMX.
Instance Method Details
#setup ⇒ Object
Setup HTMX
12 13 14 15 16 17 18 |
# File 'lib/generators/htmx/install_generator.rb', line 12 def setup if webpacker? setup_webpacker else setup_sprockets end end |