Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
module FieldEdgeApi
  class HttpUtils
    module Response
      def self.create(response_hash)
        data = response_hash.data.dup rescue response_hash
        data.extend(self)
        raise FieldEdgeApi::AuthorizationError.new(data.error) if data.respond_to?(:error)
        data
      end
    end
  end
end