Andy Kopp

Results 4 comments of Andy Kopp

> As far as I understand, there's no way to map characters correctly without having a font or a character map. That makes sense. I assume substitution (using Dejavu) doesn't...

@nertzy is there a chance of some variant of @stex 's [fix above](https://github.com/Casecommons/with_model/issues/35#issuecomment-1119630268) being incorporated into a future release? I'm not sure what he means by "... doesn't fix the...

This has come up recently because we were upgrading from Rails 6.1.7.6 to Rails 7.0. The former will return the values as JSON but the latter does not - it...

This can be avoided when using `store_accessor`: ```ruby class User < ApplicationRecord # works fine store_accessor :params, :form_data # double encodes store_accessor :params, form_data: :json end ``` However, we use...