Mikael Henriksson
Mikael Henriksson
Seems that it doesn't pick the ruby version from chruby. Any suggestions for how to make that work? I searched a bit but couldn't find anything relevant. ``` ✘ ruby...
I love postgres array type. I tend to reach for it for any tagging system that isn't too complex. Most of all, I find it super fun to write code...
On ruby 2.3.8, I get the following error when trying to annotate (latest version): > NoMethodError: undefined method `match?' for /^(true|t|yes|y|1)$/i:Regexp > Did you mean? match > /usr/local/bundle/gems/annotate-3.1.0/lib/annotate/helpers.rb:18:in `true?' ##...
``` NoMethodError: undefined method `formatter=' for # /Users/mhenrixon/Code/mhenrixon/template/config/environment.rb:7:in `' Tasks: TOP => zeitwerk:check => environment ``` Looks like rails 7.1 broke something that you are using because since upgrading ruby...
I'm sorry this ain't pretty, but I wanted to check in on something. ```ruby def search @search ||= begin base = products.widget_filter(booking_widget_request?).includes(:editables) with_search = if params["search"] base.published_text_search(params) else base end...
Adds alternative option syntax for tsvector_column. Adds migration for tsvector aggregation. Adds support for tsvector columns in associated models. Closes #499 in favor of this ```ruby pg_search_scope :full_text_search, (lambda do...
Thank you for a lovely gem! I have one issue so far: how the gem suggests I add presence validation to columns with default values. I use default values because...
### Usecase / What to achieve I have some calculations that run on blur (lost focus). I want a concise way to blur that element by filling it in. ###...
I have tried to use madmin without success due to adding javascript and css on the fly. This was my first attempt at getting CSP to work for localhost and...