require 'rails/generators/erb/controller/controller_generator' require 'generators/my_scaffold_generator' module MyGenerators module Generators class ControllerGenerator < Erb::Generators::ControllerGenerator include MyGenerators::Generators::MyScaffoldGenerator source_root File.expand_path("../templates", __FILE__) protected def handler :haml end end end end