vote up 5 vote down star
1

Let's say I have a Dog and I want to store if it is trained in Rails. Conventionally, Ruby methods that return booleans have names that end with ?. Should I call the database column trained?, or should I call the database column trained and have a method

class Dog
  def trained?
    trained
  end
end

The latter option seems inefficient, particularly when I have lots of boolean fields.

Or is there some other alternative I'm missing?

flag

2 Answers

vote up 7 vote down check

You should call it trained. Define it in your schema with a type of :boolean. You can refer to it as trained? and everything will magically work. So says http://www.ruby-forum.com/topic/60847

link|flag
perfect answer. thanks. – Peter Oct 6 at 8:05
amusing that their example is about the 'training' of 'salespeople'... – Peter Oct 6 at 8:07
vote up 0 vote down

http://wiki.rubyonrails.org/rails/pages/ReservedWords

Tangential answer: These reserved words are the only page remaining from the old Rails wiki, I believe. But using conflicting names has cost people hours of debugging.

link|flag
I don't see the relevance of this - am I missing something? – Peter Oct 22 at 1:16

Your Answer

Get an OpenID
or

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