Method: Acunetix::Scan#respond_to?

Defined in:
lib/acunetix/scan.rb

#respond_to?(method, include_private = false) ⇒ Boolean

This allows external callers (and specs) to check for implemented properties

Returns:

  • (Boolean)


33
34
35
36
# File 'lib/acunetix/scan.rb', line 33

def respond_to?(method, include_private=false)
  return true if SUPPORTED_TAGS.include?(method.to_sym)
  super
end