Ruby Shortcuts

You often see the Array shortcut in code…

%w(foo bar sed)  # => ["foo", "bar", "sed"]

…but how many of the other Ruby Shortcuts are you aware of? Personally I knew about half of them.

Tags: , , ,

2 comments

  1. I’m partial to %w[foo bar sed] as the brackets are a bit more array-esque

Leave a comment