Class: LazyRails::PromptGenerators::SelectCss

Inherits:
Base
  • Object
show all
Defined in:
lib/lazy_rails/prompt_generators.rb

Instance Attribute Summary

Attributes inherited from Base

#prompt

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from LazyRails::PromptGenerators::Base

Instance Method Details

#callObject



43
44
45
46
47
48
49
# File 'lib/lazy_rails/prompt_generators.rb', line 43

def call
  prompt.select(
    "Choose your CSS processor:",
    %w[none tailwind bootstrap bulma postcss sass],
    show_help: :always
  )
end