Class: Burp::Issue
- Inherits:
-
Object
- Object
- Burp::Issue
- Defined in:
- lib/burp/issue.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#respond_to?(method, include_private = false) ⇒ Boolean
This allows external callers (and specs) to check for implemented properties.
Instance Method Details
#respond_to?(method, include_private = false) ⇒ Boolean
This allows external callers (and specs) to check for implemented properties
9 10 11 12 |
# File 'lib/burp/issue.rb', line 9 def respond_to?(method, include_private=false) return true if .include?(method.to_sym) super end |