Skip to content

Instantly share code, notes, and snippets.

@byrichardpowell
Created October 13, 2012 14:37
Show Gist options
  • Save byrichardpowell/3884846 to your computer and use it in GitHub Desktop.
Save byrichardpowell/3884846 to your computer and use it in GitHub Desktop.
Countries with tips
@countries = Country.find( :all, :order => 'name' )
@countries_with_tips = []
@countries.each do |country|
if country.tips.any?
@countries_with_tips.push( country )
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment