Andrei Makarov

Results 59 comments of Andrei Makarov

> Does anyone have an effective work around? Avoid using `associated_against`, aggregate all required attributes for search in custom view (check out scenic gem), then create a model for it...

Also detected that pg_search does not respect chained scope (that also leads to performance issues), my workaround: ```ruby class Message < ApplicationRecord ... def self.search_with_highlight(value) search_query = unscoped.search(value).with_pg_search_highlight query_sql =...

@pinzonjulian I don't use `associated_against`, so that's not the final solution for the issue, but I think that hint is related to the problem. Also I suspect that associations search...

Hey! It was quite long path until I got here, also maybe this can bring some ideas on implementation: https://gist.github.com/ralexandr/8d991531360123dff9b9f72faaa0f0de - nvm supports patching and I was looking for something...

Still relevant, had to turn it off in test environment, but previously it was useful to track issues with decorators usage.

Waiting for this one :)

> This will allow us to have multiple tables of audit logs? So different models could log to different audit log tables? Same thing already available for quite long time...

Probably related to this one https://github.com/collectiveidea/audited/pull/641

Here are some upgrades to 2.8.0, but still failing in tests: https://github.com/amkisko/prettier-html-templates - all the issues are visible in tests now https://github.com/amkisko/prettier-plugin-erb - this one is more complex due to...

@tmaier @Juice10 you are welcome: - https://github.com/adamzapasnik/prettier-html-templates/pull/56 - https://github.com/adamzapasnik/prettier-plugin-erb/pull/135 It seems that there are some complex problems to solve. :)