connection_ext.rb 250 B

1234567891011
  1. # frozen_string_literal: true
  2. require 'shopify_api/connection'
  3. module ActiveResource
  4. class Connection
  5. attr_reader :response
  6. prepend ShopifyAPI::Connection::ResponseCapture
  7. prepend ShopifyAPI::Connection::RequestNotification
  8. end
  9. end