aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/stylesheets/stylesheets_generator.rb
blob: ce68443c397b8fbce3c0910fdcbe4da2ef02adb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
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