Skip to content

Instantly share code, notes, and snippets.

@ZakharDay
Created March 10, 2016 08:42
Show Gist options
  • Save ZakharDay/faf665c645ba0e03bc3b to your computer and use it in GitHub Desktop.
Save ZakharDay/faf665c645ba0e03bc3b to your computer and use it in GitHub Desktop.
RoR Hints
# Find products with longest names
Product.all.collect{ |p| p.name }.max_by(&:length)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment