lib/generators/phlex/layout/layout_generator.rb



# frozen_string_literal: true

module Phlex
	module Generators
		class LayoutGenerator < ::Rails::Generators::NamedBase
			source_root File.expand_path("templates", __dir__)

			def create_view
				template "layout.rb.erb", File.join("app/views", class_path, "#{file_name}.rb")
			end
		end
	end
end