module MercuryWebParser

Constants

VERSION

Public Class Methods

method_missing(method, *args, &block) click to toggle source

Delegate to MercuryWebParser::Client

Calls superclass method
# File lib/mercury_web_parser.rb, line 16
def method_missing(method, *args, &block)
  return super unless new.respond_to?(method)
  new.send(method, *args, &block)
end
new(options = {}) click to toggle source

Alias for MercuryWebParser::Client.new

@return [MercuryWebParser::Client]

# File lib/mercury_web_parser.rb, line 11
def new(options = {})
  MercuryWebParser::Client.new(options)
end
respond_to?(method, include_private = false) click to toggle source
Calls superclass method
# File lib/mercury_web_parser.rb, line 21
def respond_to?(method, include_private = false)
  new.respond_to?(method, include_private) || super(method, include_private)
end
respond_to_missing?(method_name, include_private = false) click to toggle source
Calls superclass method
# File lib/mercury_web_parser.rb, line 25
def respond_to_missing?(method_name, include_private = false)
  Configuration::VALID_CONFIG_KEYS.include?(method_name) || super
end