lib/skylight/util/http.rb in skylight-5.0.0.beta2 vs lib/skylight/util/http.rb in skylight-5.0.0.beta3
- old
+ new
@@ -190,10 +190,10 @@
def get(key)
body.dig(*key.split(".")) if body.is_a?(Hash)
end
- def respond_to_missing?(name, include_all = false) # rubocop:disable Style/OptionalBooleanParameter
+ def respond_to_missing?(name, include_all = false)
super || body.respond_to?(name, include_all)
end
def method_missing(name, *args, &blk)
if respond_to_missing?(name)