Hi,
very much a newbie, so please excuse the basic question.
Here is what I have:
class Author < ActiveRecord::Base
has_many :books
end
class Books < ActiveRecord::Base
belongs_to :author
end
What I am trying to do is find all Authors and list them in the order
of how many books they have. It seems that this should be pretty
straight-forward, but it's hard to google for...