vestedpr-dev

Results 7 comments of vestedpr-dev

I have the same problem. I think it has to do with changes in this commit: https://github.com/y9v/carrierwave-base64/commit/5f7a500d0f11b41976c24e907e661645069cf0da#diff-0f064f8468be15dd0073c93783a23b45 When passing in nil, I think this line simply returns: ```return if data.to_s.empty?...

For me it was the following: ``` class Capybara::Rails::TestCase include CapybaraSelect2 end ```

In my case, I need to do custom bootstrap theming on the fly. I see exactly how the colors I need are derived, ultimately using the Sass "mix" function. Our...

EDIT: 3 hours later -- this works quite well. It's a funny workaround, but on the other hand I have to weight the tradeoff of incorporating the Chroma gem as...

Hello: I had a similar problem these past two days. I need to run some long running queries to generate some materialized views. I need to trigger the queries obviously...

Related: https://github.com/karafka/rdkafka-ruby/issues/270#issuecomment-1954966763

Regarding thresholds, if others are working on this, here is some relevant code I came up with: ``` def filter_by_within_distance(scope) return scope unless @params[:within_distance] && @params[:distance_type] distance_type = @params[:distance_type].to_sym #...