diff options
author | Sugino Yasuhiro <suginoyasuhiro@gmail.com> | 2012-06-09 16:45:18 +0900 |
---|---|---|
committer | Sugino Yasuhiro <suginoyasuhiro@gmail.com> | 2012-06-09 16:45:18 +0900 |
commit | ca1edd44c94be6770842ccea8bec2e58e823a21e (patch) | |
tree | 6890c5b0fee94f583e451fd3c995f693ea615413 /railties/lib/rails/tasks | |
parent | 066e6c66cecb2abae6b97e1316e77e2a4141fb70 (diff) | |
download | rails-ca1edd44c94be6770842ccea8bec2e58e823a21e.tar.gz rails-ca1edd44c94be6770842ccea8bec2e58e823a21e.tar.bz2 rails-ca1edd44c94be6770842ccea8bec2e58e823a21e.zip |
fix stylesheet template dir
Diffstat (limited to 'railties/lib/rails/tasks')
-rw-r--r-- | railties/lib/rails/tasks/framework.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/tasks/framework.rake b/railties/lib/rails/tasks/framework.rake index 206ce39773..f9cff5b627 100644 --- a/railties/lib/rails/tasks/framework.rake +++ b/railties/lib/rails/tasks/framework.rake @@ -20,7 +20,7 @@ namespace :rails do project_templates = "#{Rails.root}/lib/templates" default_templates = { "erb" => %w{controller mailer scaffold}, - "rails" => %w{controller helper scaffold_controller stylesheets} } + "rails" => %w{controller helper scaffold_controller assets} } default_templates.each do |type, names| local_template_type_dir = File.join(project_templates, type) |