Skip to content

Instantly share code, notes, and snippets.

@kyktommy
Created December 22, 2012 03:46
Show Gist options
  • Save kyktommy/4357403 to your computer and use it in GitHub Desktop.
Save kyktommy/4357403 to your computer and use it in GitHub Desktop.
Ruby Bits 2 Notes
# inline each block
games.each &block
# Symbol#to_proc
games.map &:name
# orginal:
# games.map {|g| g.name }
# Need to enroll for ch.2 ...wtf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment