Augusts Bautra
Augusts Bautra
Hi, we're using v1.0.0 (via Virtus v1.0.5), and running memory_profiler gem's report on a loop-intensive part of our code reports that coercible is allocating 90% of strings: ```rb Allocated String...
Hi, Say there's a UniqueEvent model with a `belongs_to :cause` association. `unique_events` table already has a multi-column uniqueness index like `[:cause_id, :some_type, :uuid], unique: true, name: "very_unique_index"`. `lol_dba` will still...
Hi! I am using v2.1.8 and polymorphic indexes are still suggested despite them already being present in different order, see https://github.com/plentz/lol_dba/pull/107 Furthermore, I believe the suggestion should be in the...
Could be same as https://github.com/rubocop/rubocop/issues/9738 but I have an explicit case. No matter how I tweak the file (remove comments, remove multiline calls, etc.) the constant does not seem to...
I have two gripes with this cop: 1. Doesn't modern Ruby's squiggly heredoc `
I'm upgrading the version of Dentaku we're using and I noticed that `SQRT` function works since 2.0.6 till 3.4.(2) unchanged, but then at one point it no longer raises argument...
I'm disabling real requests before each example in RSpec suite, and mocking requests to Sentry like so ```rb stub_request(:any, /sentry\.io/).to_return(status: 200, body: "", headers: {}) ``` Unfortunately, I'm still getting...
Those "whatsoever"s didn't sit well with me. I think the modern use for the word has departed from being synonymous to "however".
Hello, John, Here I've started to make the gem compatible with Rails v5.0, the main idea is to bump Ruby version and refactor `alias_method_chain` to `Module#prepend` use. Unfortunately, I ran...
Hi, I'm getting this error when running `bundle exec rake db:find_indexes`: ``` NoMethodError: undefined method `sort' for "lower((manufacturing_context)::text)":String (NoMethodError) index.columns.size > 1 ? index.columns.sort : index.columns.first ^^^^^ ruby-3.2.3/gems/lol_dba-2.4.0/lib/lol_dba/index_finding/index_finder.rb:61:in `block in...