# frozen_string_literal: true module Phlex module Generators class PageGenerator < ::Rails::Generators::NamedBase source_root File.expand_path("templates", __dir__) def create_view template "page.rb.erb", File.join("app/views", class_path, "#{file_name}.rb") end end end end