Arseniy Latyshev

Results 2 comments of Arseniy Latyshev

@ericproulx Hi. I think it will reproduce only with `Grape::Extensions::Hash::ParamBuilder` because of `deep_dup` call. After you deprecate this one (https://github.com/ruby-grape/grape/pull/2540), this issue is no longer relevant for `master` branch

@dsager I think in your case the best option would be to define your own builder and use it regardless of the Grape version. ```ruby module ParamBuilder extend ::ActiveSupport::Concern included...