1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/generators/rails/stylesheets/stylesheets_generator.rb

9 lines
221 B
Ruby

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