class MercuryWebParser::Client

Public Class Methods

new(options = {}) click to toggle source
# File lib/mercury_web_parser/client.rb, line 10
def initialize(options = {})
  options = MercuryWebParser.options.merge(options)
  Configuration::VALID_OPTIONS_KEYS.each do |key|
    send("#{key}=", options[key])
  end
end