mirror of https://github.com/rails/rails
Move model dependency to the end of the scaffold generator manifest. Closes #10696 [drnic]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8558 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
752f633bc5
commit
5ccc3cf448
|
@ -54,8 +54,6 @@ class ScaffoldGenerator < Rails::Generator::NamedBase
|
|||
m.template('layout.html.erb', File.join('app/views/layouts', controller_class_path, "#{controller_file_name}.html.erb"))
|
||||
m.template('style.css', 'public/stylesheets/scaffold.css')
|
||||
|
||||
m.dependency 'model', [name] + @args, :collision => :skip
|
||||
|
||||
m.template(
|
||||
'controller.rb', File.join('app/controllers', controller_class_path, "#{controller_file_name}_controller.rb")
|
||||
)
|
||||
|
@ -64,6 +62,8 @@ class ScaffoldGenerator < Rails::Generator::NamedBase
|
|||
m.template('helper.rb', File.join('app/helpers', controller_class_path, "#{controller_file_name}_helper.rb"))
|
||||
|
||||
m.route_resources controller_file_name
|
||||
|
||||
m.dependency 'model', [name] + @args, :collision => :skip
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue