Lenon
Lenon
I had the same issue when I upgraded Sidekiq from 6.0.7 to 6.1.0.
I'm having a similar issue. When I pass `default: []` to a field exposed with `using:`, it doesn't work. ```ruby require 'grape' require 'grape-entity' class Address < Grape::Entity expose :address_line...
Hi @kishore-oracle. Unfortunately I can't join on a call, but I can share a few thoughts about the SDK. We are using the OCI SDK in Puppet to implement custom...
Hi @zackatoracle Thanks for the fast response! That's great news, we are happy that you folks are planning to continue developing the SDK. We'll for sure share any suggestions and...
I had this issue today. I thought that something like this would work, but it didn't: ```ruby class Base < Grape::API helpers do def helper_from_base = 'helper from base' end...
I started writing a failing spec here: https://github.com/lenon/grape/commit/ceb27670dccc59a3b4943095b9ba6b08b9d515fc The spec that I added fails as expected but it also causes another test to fail (`./spec/grape/api/inherited_helpers_spec.rb:61`): ``` $ bundle exec rspec...
I spent some time debugging this, here's my notes of what I found so far: `mount` calls `Grape::API::Instance#inherit_settings`, which then calls `Grape::Util::InheritableSetting#inherit_from`: https://github.com/ruby-grape/grape/blob/3f01d03b7a28b088a52313d8d264f29aeacd41fa/lib/grape/util/inheritable_setting.rb#L48-L59 `self` at this point is an instance...