I really miss the times where hash rockets, e.g. `{:x => x, :y => y}`, was the only option. I find `{x: x, y: y}` less readable and `{x, y}` is totally unreadable IMO. Vt P.S. And yes, Redmine is broken :/ Dne 29.4.2015 v 02:32 shugo / ruby-lang.org napsal(a): > Issue #11105 has been reported by Shugo Maeda. > > ---------------------------------------- > Feature #11105: ES6-like hash literals > https://bugs.ruby-lang.org/issues/11105 > > * Author: Shugo Maeda > * Status: Open > * Priority: Normal > * Assignee: > ---------------------------------------- > Why not support ECMAScript6-like hash literals? > > For example, > > {x, y} > > is equivalent to: > > {x: x, y: y} > > For convenience, the prefix of global, instance, and class variables should be removed from the key name as follows: > > a = 1 > B = 2 > $c = 3 > @d = 4 > @@e = 5 > p({a, B, $c, @d, @@e, f: 6}) > #=> {:a=>1, :B=>2, :c=>3, :d=>4, :e=>5, :f=>6} > > > ---Files-------------------------------- > 0001-support-ES6-like-hash-literals.patch (3.88 KB) > >