开发者

Change Rails Scaffold Naming Scheme

开发者 https://www.devze.com 2023-01-08 21:37 出处:网络
I\'m a happy user of RoR but have one complaint.When I do scri开发者_C百科pt/generate scaffold it automatically generates all my files and places them in their proper folders.However, all the differen

I'm a happy user of RoR but have one complaint. When I do scri开发者_C百科pt/generate scaffold it automatically generates all my files and places them in their proper folders. However, all the different scaffolds I've created name their view files the same.

I have a bunch of index.html.erb view files and when I have them open in my text editor, it's almost impossible to tell what controller they're related to.

I'd like to change the default naming scheme of the scaffold command to name the individual files to contain their view folder name. So, instead of index.html.erb, use index.home.html.

Is there a way to do this, or am I stuck? What solutions to the multiple files with the same name problem have you Rails developers discovered?

Thanks!


You're going to be fighting the Rails' conventions by going down that path and Rails works best when you work with it rather than against it. A core part of the philosophy of Rails is that there are a set of conventions that once learned make it easy to find your way around any Rails application.

Instead of trying to redefine how Rails works, I would recommend taking advantage of the features offered by your text editor or IDE for quickly navigating to the correct view template. For example, the Rails bundle within TextMate on the Mac lets you quickly open the view file associated with a particular model and there's a plugin for Vim that provides an equivalent feature.

0

精彩评论

暂无评论...
验证码 换一张
取 消