require 'rails/generators' require 'rails/generators/erb/controller/controller_generator' module Builder module Generators class ControllerGenerator < Erb::Generators::ControllerGenerator source_root File.expand_path(File.join('..', 'templates'), __FILE__) protected def handler :builder end end end end