class HTTParty::Request
Public Instance Methods
perform(&block)
click to toggle source
# File lib/editmode/monkey_patches.rb, line 7 def perform(&block) payload = { method: http_method.const_get(:METHOD), url: uri } ActiveSupport::Notifications.instrument 'request.httparty', payload do _original_perform(&block) end end
Also aliased as: _original_perform