Skip to content

Instantly share code, notes, and snippets.

@cubicool
Created July 20, 2015 12:40
Show Gist options
  • Save cubicool/392373afbc9c77984389 to your computer and use it in GitHub Desktop.
Save cubicool/392373afbc9c77984389 to your computer and use it in GitHub Desktop.
vals = { foo: 1, bar: 2, baz: 3 }
# Good!
puts vals.map { |k, v| "#{k}=#{v}" }.join ' '
# Bad!
puts vals.map do |k, v|
"#{k}=#{v}"
end.join ' '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment