Michał Pietrus
Michał Pietrus
Using the gist provided below, ROM doesn't combine `buildings` correctly. The query result is empty even though the SQL query was correct. ``` [ # ] ``` However, if you...
Hello, when combining an aggregate, ie: ``` class UserRepo < ROM::Repository[:users] struct_namespace ::Entities def by_id(id) users.combine(employees_users: :employee).to_a end end ``` and having `employees` relation: ``` conf.relation(:employees) do schema(:employees, infer: true)...
Hi @fran-worley ! I wonder what was the reason of introducing `html_blocks` instead of using methods. Blocks are flexible for sure, but if you want to override a block, you...
Consider such example: ``` class CustomBuilder < Formular::Builders::Bootstrap3 end model = OpenStruct.new(ble: "blargh", coll: [OpenStruct.new(name: 1, id: 3), OpenStruct.new(name: 2, id: 5)]) f = CustomBuilder.new(model: model, path_prefix: "blah" ).form(method: :post,...
Hi @fran-worley , consider such use case: you know that form is a `validable form` and you'd like to add `required: required` for all elements ot this form and perhaps...
When Exclude param is used for a cop, ie: ``` Metrics/BlockLength: Exclude: - 'spec/**/*.rb' ``` Rubocop internally checks these strings using the [`match_pattern?`][1] method and since the pattern arg is...
Hi! I wanted to give more _coverage_ to the `struct_namespace` feature. What do you think?
Hi, when playing within local environment, ie. running tests, plenty of: ``` console.warn Sentry disabled in local environment. ``` usually appear making the test output effectively unreadable. Maybe we could...
Hi, Although not much is happening here, we encourage you to take a look into https://github.com/THCLab/keriox , where all the main development activities are being done now from our side....
Hi, we've recently wanted to try WASM-based KERIOX, but failed, basically due to SLED -- see [this issue](https://github.com/spacejam/sled/issues/1112) . @35359595 have you tried compiling SLED for WASM ?