lib/buby.rb in emonti-buby-1.1.1 vs lib/buby.rb in emonti-buby-1.1.2

- old
+ new

@@ -70,11 +70,11 @@ # Buby-namer. # class Buby # :stopdoc: - VERSION = '1.1.1' + VERSION = '1.1.2' LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR # :startdoc: def initialize(other=nil) @@ -242,9 +242,17 @@ def getSiteMap(urlprefix) _check_and_callback(:getSiteMap, urlprefix) end alias site_map getSiteMap alias get_site_map getSiteMap + + # This method returns all of the current scan issues for URLs matching the + # specified literal prefix. The prefix can be null to match all issues. + def getScanIssues(urlprefix) + _check_and_callback(:getScanIssues, urlprefix) + end + alias scan_issues getScanIssues + alias get_scan_issues getScanIssues # Restores Burp session state from a previously saved state file. # See also: saveState # # IMPORTANT: This method is only available with Burp 1.2.09 and higher.