slim-template/slim-rails

View on GitHub
lib/generators/slim/controller/controller_generator.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "rails/generators/erb/controller/controller_generator"

module Slim
  module Generators
    class ControllerGenerator < Erb::Generators::ControllerGenerator
      source_root File.expand_path(File.join("..", "templates"), __FILE__)

      protected

      def handler
        :slim
      end
    end
  end
end