Peter Philips
Peter Philips
The README states how you can refresh the client, but it does not state how often this should occur or by what means. I couldn't find much documentation on how...
We have noticed that Truncato does not truncate so the final string results in max length, but rather max length calculates on the original string. This means the final result...
Hi. Thanks for this gem! One thing I noticed is that this is centered around pull requests and doesn't work very well for generating releases that have commits that are...
First, Thank you for this gem! So, I definitely see an argument for putting the `attr_masker` calls inside the models as its currently implemented. But there is also an argument...
Instance variables in Rack middleware are bad. They are not thread safe and are insidious to track down issues relating to it. Ref: 1. https://github.com/puma/puma/issues/2001 2. https://bernardoamc.com/rails-middleware-leak/ 3. https://crypt.codemancers.com/posts/2018-06-07-frozen-middleware-with-rack-freeze/ Since...
We'd like to use the Tenor GIF API to provide gifs in Trumbowyg. Can a plugin for this API be developed? We are happy to sponsor the development of this...
Closes #1464
With respect to our ApplicationDelivery class: ```ruby class ApplicationDelivery < ActiveDelivery::Base self.abstract_class = true register_line :mailer, ActiveDelivery::Lines::Mailer, resolver: ->(klass) { klass.name&.gsub(/Delivery$/, 'Notifier')&.safe_constantize } register_line :sms, ApplicationLine, resolver: ->(klass) { "#{klass.name}::SmsNotifier".safe_constantize...
Given: I'm using `devise-passwordless` and I've logged in and I try to update my user profile (ie via devise's registrations controller), I get the following error: ```ruby undefined method `update_with_password'...
Fixes #18 Supports the latest instance variable used by the Money gem