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:
parent
c1df4425b6
commit
d21fef324b
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue