1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Hide css:* and the default stylesheet from rails g

This commit is contained in:
wycats 2011-05-24 16:03:41 -07:00
parent c1df4425b6
commit d21fef324b

View file

@ -176,6 +176,7 @@ module Rails
orm = options[:rails][:orm]
test = options[:rails][:test_framework]
template = options[:rails][:template_engine]
css = options[:rails][:stylesheet_engine]
[
"rails",
@ -195,7 +196,11 @@ module Rails
"#{test}:plugin",
"#{template}:controller",
"#{template}:scaffold",
"#{template}:mailer"
"#{template}:mailer",
"#{css}:scaffold",
"#{css}:assets",
"css:assets",
"css:scaffold"
]
end
end