aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/stylesheets/stylesheets_generator.rb
blob: 12bd3920f874fae430a4e68241e30500569c1171 (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", "app/assets/stylesheets/scaffold.css" if behavior == :invoke
      end
    end
  end
end