Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any disadvantage to using singular names for controllers and helpers? Nothing seems to rely on this. It even seems helpers don't have to make the same choice about singular vs. plural as their corresponding controllers, at least according to my limited experimentation. Is that true?

share|improve this question
1  
I have had the same dilemma trying to decide on singular or plural controller names! – Andrew Nov 25 '09 at 21:11
5  
thanks :) Rails culture has a way of making you feel stupid if you question things like this. – allyourcode Aug 14 '10 at 5:10

6 Answers

Definitely plural.

With restful routing and a singular controller

Controller:

dog_controller.rb  

Routes:

map.resources :dogs  # => blows up  
map.resources :dog  # is ok, but...  
dogs_path # => blows up  
dog_path  # => ok  

Using a plural controller

Controller:

dogs_controller.rb

Routes:

map.resources :dogs  
dogs_path # => ok  
dog_path # => ok  

rails generate controller --help has singular examples though. Ugh.

share|improve this answer
+1 this is what i was looking for – Rekin Nov 9 '10 at 12:10
7  
agreed. It's confusing that Rails 3.1 generator help message for controllers uses "CreditCard" (singular) as an example. – bantic Oct 21 '11 at 21:56

Using plural names for controllers is just a convention.

Plural names usually sound more natural (especially for controllers that are tied directly to a specific model: User -> Users, etc.), but you can use whatever you want.

As for helpers, all helpers are available for all controllers by default, so technically, how you name your helpers doesn't matter at all. It's just another convention to keep a controller's helper functions in a helper with the same name as the controller.

share|improve this answer
5  
Wouldn't it be more natural for the controller corresponding to User be the UserController?? Also, if you rely on the default routes, you get url's that look like /users/edit, which looks like you're editing all users. To me, that's not very natural at all. – allyourcode Mar 15 '09 at 7:16
3  
@allyourcode: well, I guess it's all subjective. to me, having /users list all the users is more natural than /user. – Can Berk Güder Mar 15 '09 at 11:50
1  
oh, and it's the RESTful way. – Can Berk Güder Mar 15 '09 at 11:50
2  
@Can "the RESTful way" sounds like a cultish chant. That doesn't really surprise me though, as Rails is pretty religious overall. I like how Rails is all obsessed about REST, yet default routes are not restful. Even configuring RESTful routes is unnatural. Including :conditions => {:method => :post} in the second argument to connect makes no sense, as the hash is supposed to specify how to handle any request that matches the current rule, not whether any given request matches the current rule. – allyourcode Nov 28 '09 at 0:21
@allyourcode According to this the default route for edit is /users/:id/edit instead of /users/edit. Saying "out of all users, edit the user with id :id" sounds perfectly natural to me. – DavidG Apr 10 at 3:15

A Model is singular because it references a single object like User. A controller is plural because it is the controls (methods) for the collection of Users. How one names the routes is all up to that individual developer. I've never had a user complain that a URL for a web request is singular or plural. The end result to maintain a common convention for current and future contributors while serving quality page displays or the API requests for the end users.

share|improve this answer

You have a very complete explanation in the Rails guides: http://edgeguides.rubyonrails.org/routing.html#resource-routing-the-rails-default

share|improve this answer
2  
actually this is the right answer b/c if you read it, it explains that plural is the right answer for a collection of resources. For a singleton resource, singular is the right answer. Examples in the documentation. And actually, this is well answered in this other post: stackoverflow.com/questions/2614858/… – Rob Jun 12 '11 at 19:44

I feel better when I use singular for Controller name

share|improve this answer

Using plurals just sounds better, and then if you have a controller that handles a singular resourse, ie user, then you can still name the url /user.

With helpers there is often no need to have a helper for every controller, and often there will be helper methods you can use ascorss multiple controllers and rather litter them all through your application helper you could put them in custom helpers instead like eg layout_helper or any other well named file.

share|improve this answer
Same comments as for Can Berk Guder. In addition, I had some trouble following your last sentence/paragraph because there was so little punctuation! – allyourcode Mar 15 '09 at 7:18
1  
Sorry about that, all I meant was that it may be a better idea to create custom helpers rather than use the defaults as the name of the default ones don't always capture fully where they are going to be used. If you have a number of helper methods that will be used for layout, call it layout_helper. – nitecoder Mar 15 '09 at 10:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.