Class: Alchemy::Generators::MenusGenerator

Inherits:
Base
  • Object
show all
Defined in:
lib/generators/alchemy/menus/menus_generator.rb

Instance Method Summary collapse

Instance Method Details

#create_partialsObject



11
12
13
14
15
16
17
18
19
20
21
# File 'lib/generators/alchemy/menus/menus_generator.rb', line 11

def create_partials
  menus = Alchemy::Node.available_menu_names
  return unless menus

  menus.each do |menu|
    conditional_template "wrapper.html.#{template_engine}",
      "app/views/alchemy/menus/#{menu}/_wrapper.html.#{template_engine}"
    conditional_template "node.html.#{template_engine}",
      "app/views/alchemy/menus/#{menu}/_node.html.#{template_engine}"
  end
end