Hi,
irb(main):012:0> puts Slim::Template.new { '.test data={false: false, true: true}' }.render
<div class="test" data-false="false" data-true=""></div>
Wondering if it's somehow related to rendering certain value-less attributes (eg: readonly, checked). The obvious workaround is stringifying values before passing them to the data hash but I think this behaviour is a trap.