Marc Köhlbrugge

Results 25 issues of Marc Köhlbrugge

Sometimes you may need an icon that's not included in Heroicons. It would be great if you could still use this gem for consistency throughout your codebase. Especially if you...

I love Blazer but I always struggled having to write complex SQL queries. I was too used to ActiveRecord’s simple interface. These days I have ChatGPT write my Blazer SQL...

Initial MVP for at throttling extension. I'm not sure I'm qualified to take it the whole way as my understanding of Good Job and some of its architecture is very...

`preserve_job_records` is enabled by default: https://github.com/bensheldon/good_job/blob/3933005203f8781d5937e8541256488eee47380f/README.md?plain=1#L300 but here it says "By default, GoodJob automatically destroys job records": https://github.com/bensheldon/good_job/blob/3933005203f8781d5937e8541256488eee47380f/README.md?plain=1#L221-L222 Am I misunderstanding, or are those two conflicting statements? It seems that...

I use the following to allow attaching of remote files: ```ruby module ActiveStorage module RemoteURLHelper # If the record is persisted and unchanged, the attachments are saved to # the...

bug
help wanted

```ruby # promotion.rb class Promotion belongs_to :product, optional: true has_one_attached :image validates :image, processable_image: true end ``` ```ruby # product.rb class Product has_many :attachments end ``` ```ruby # attachment.rb class...

I'm running into the following error when saving a `SalesEntry` and I'm wondering what the easiest way to debug these kind of problems is since the gem isn't returning helpful...

enhancement

Active Record collections might generate the same `cache_key` and `cache_version` despite containing different records. This can happen when you use `limit` (e.g. for pagination) and destroy one of the collection's...

activerecord
attached PR

I recently tried upgrading to Rails 7.1, but this gem seems to be causing an error: ``` ArgumentError: comparison of String with 0 failed ``` The issue does not occur...