Ruby 1.9 hashes
Rubyists talk about being cutting edge but how many are using 1.9 in production? Time to convert those verbose 1.8 hashes in to symbolic, succinct 1.9 beauties!
Start file
{ :a => 1, :b => 2, :c => 3 }
End file
{ a: 1, b: 2, c: 3 }
View Diff
2,4c2,4 < :a => 1, < :b => 2, < :c => 3 --- > a: 1, > b: 2, > c: 3
Solutions by @me_coot:
Unlock 3 remaining solutions by signing in and submitting your own entry