lib/rails/generators/rails/stylesheets/stylesheets_generator.rb



module Rails
  module Generators
    class StylesheetsGenerator < Base
      def copy_stylesheets_file
        template "scaffold.css", "public/stylesheets/scaffold.css" if behavior == :invoke
      end
    end
  end
end