Class: Bear::Generators::LayoutGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/bear/generators/layout_generator.rb

Instance Method Summary collapse

Instance Method Details

#touch_layout_fileObject



12
13
14
15
# File 'lib/bear/generators/layout_generator.rb', line 12

def touch_layout_file
  ext = (options.slim?) ? "slim" : "erb"
  template "layout.html.#{ext}", "app/views/layouts/#{layout}.html.#{ext}"
end