Vadim Venediktov

Results 5 issues of Vadim Venediktov

Can I compare two objects in different currencies? I've searched throug the issues and found only [this](https://github.com/RubyMoney/money/issues/377) thread. Where only equality is discussed. I wonder if understanding which on is...

It would be awesome to avoid retyping bem-prefix every time while writing code in haml/rhtml template. I wonder one can add a preprocessor or something to convert ``` ``` into...

think

Tried both ``` setFixtures(sandbox({class:'First'}, {class:'Second'})); ``` and ``` setFixtures(sandbox([{class:'First'}, {class:'Second'}])); ``` None worked. Is there a way to create some complex stuff using sandbox?

Whatever text I pass as an argument I always get something like this: ![test_543a34ed72295e849bf8db8d9f2ee2827298caa7](https://user-images.githubusercontent.com/42387/34919445-2fcf13fe-f975-11e7-9b11-b369b0fd8849.png) ``` rb > require 'magick_title' => true > MagickTitle.options[:font] = 'Lato-Medium.ttf' => "Lato-Medium.ttf" > MagickTitle.say("Hello!") =>...

As the [MDN web docs](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/metaKey) says `metaKey` is the Windows key. ``` js // You can send a message with cmd/ctrl+enter input.addEventListener("keydown", event => { if (event.keyCode === 13 &&...