I have a Mail model with the following schema:
Mail
t.string \"mail\" t.integer \"country\" t.boolean \"validated\" t.datetime \"created_at\" t.d
Try:
Mail.count(:group => 'country', :conditions => ['validated = ?', 't'])
I'm not sure count accepts :limit though.
:limit
EDIT:
I think this is more readable:
Mail.count(:group => :country, :conditions => {:validated => true})