connection_ext.rb 220 B

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