Emil Kampp
Emil Kampp
Hi there. I'm using Neo4J, which uses this gem for attribute declaration. I'm also building a Rails app that uses UUIDs as primary keys in my Postgres database. I would...
Hey there. I found that hash-key order matters. Is this intentional? I would expect these two JWT tokens to be the same: ```ruby jwt1 = JWT.encode({ a: 1, b: 2...
Here is the request log from Rails 7.0 and Postgres 14: ``` Started GET "/post/1?include=children" for 127.0.0.1 at 2022-03-18 22:50:53 +0100 Processing by PostsController#show as */* Parameters: {"id"=>"1"} 1m error:...
Hey 👋🏼 Is there an in-build option to restructure the hierarchy table(s) in a deferred manner? E.g. When destroying a node, I don't want the hierarchy rebuild to stall returning...
This implements a `counter_cache` option, which is passed to the `parent` relationship. This allows closure tree structures to use `tag.tags_count` rather than `tag.children.count`. This is much faster for large data...
Hey there. I'm using RAD to document a JSON:API formatted Rails application. This means my `Accept` and `Content-Type` headers are `application/vnd.api+json`, not `application/json`. The tests are passing just fine. The...
## Describe the bug Given these two dry schemas: ```ruby A = Dry::Schema.JSON do required(:attributes).maybe(:hash) do required(:name).filled(:string, min_size?: 1) end end B = Dry::Schema.JSON do required(:data).array(A) end ``` I would...
Hey, everyone. I recently found your library, and I'm enjoying using it. I could do with more control over how much padding is added to the chart around the tasks....
This uses the newer, "bundle add" rather than "gem install" in the installation instructions.
Hey 👋🏼 First off, this is a great gem! I have enjoyed working with it. I started caching my serializer using the `cached` macro. As I understand from the documentation,...