Broken master on Ruby 2.1
This is because of HTML attributes written { 'foo': 'bar' } but Ruby 2.1 doesn't like that!
It needs to be written either { foo: bar } (for single word) or { 'foo-foo' => 'bar' }(for multi-words).
/cc @kushalpandya
This is because of HTML attributes written { 'foo': 'bar' } but Ruby 2.1 doesn't like that!
It needs to be written either { foo: bar } (for single word) or { 'foo-foo' => 'bar' }(for multi-words).
/cc @kushalpandya