Janko Marohnić
Janko Marohnić
If we have an accessor defined before declaring a property in an included module, it will get overriden. The `:accessor` option allows us to specify whether we want Disposable::Twin to...
[Jekyll 4.0.0 is out](https://jekyllrb.com/news/2019/08/20/jekyll-4-0-0-released/), and brings lots of nice improvements. It would be really nice if `github-pages` gem would add support for Jekyll 4.
First of all, thank you for an awesome specification, I really enjoyed implementing it! I wanted to propose extending/altering the specification concerning the following part: > The Server SHOULD always...
Hello Piotr 👋 This is more of a feature request, as I haven't used `tty-command` yet and experienced an issue with it. However, I would like to suggest a reliability...
From following the JavaScript code, I believe that `node.trigger(:input)` currently ends up calling `this.dispatchEvent('input')`. However, that isn't the correct way to dispatch this event, it should be `this.dispatchEvent(new Event('input'))`. That's...
Hi, thank you for building this great gem, it's so nice not to have to go through selenium and chromedriver 🙏🏻 When switching to Cuprite, I noticed that calling `Node#set`...
It seems that a lot of carrierwave_direct's logic is generating query parameters for direct S3 upload. However, the aws-sdk gem already has this functionality. Also, carrierwave_direct's logic is Rails/HTML-specific, while...
First of all, the documentation for ROM is excellent! 👏 (both RDocs and guides) The [Projecting function results](http://rom-rb.org/4.0/learn/sql/queries/#projecting-function-results) section inside the "SQL - Queries" guide shows adding function calls to...
To me it happened that I accidentally injected my dependencies into a namespace module instead of into a class, like this: ```rb module Operations module Articles include Import["repositories.articles"] class Create...
dry-view currently seems to cache templates, as I don't see the changes being picked up before I restart the server. This is different to how e.g. Roda's rendering works, where...