Sha256: fa823dc6e6748b1538257c63f4667edc0389c7d6fd15078e0f6dbe413a698033
Contents?: true
Size: 897 Bytes
Versions: 6759
Compression:
Stored size: 897 Bytes
Contents
# frozen_string_literal: true module Ethon class Easy class Mirror attr_reader :options alias_method :to_hash, :options INFORMATIONS_TO_MIRROR = Informations::AVAILABLE_INFORMATIONS.keys + [:return_code, :response_headers, :response_body, :debug_info] INFORMATIONS_TO_LOG = [:effective_url, :response_code, :return_code, :total_time] def self.from_easy(easy) options = {} INFORMATIONS_TO_MIRROR.each do |info| options[info] = easy.send(info) end new(options) end def initialize(options = {}) @options = options end def log_informations Hash[*INFORMATIONS_TO_LOG.map do |info| [info, options[info]] end.flatten] end INFORMATIONS_TO_MIRROR.each do |info| eval %Q|def #{info}; options[#{info}]; end| end end end end
Version data entries
6,759 entries across 6,757 versions & 23 rubygems