Fix Cannot resolve link YARD warnings

[#46491831]
unstable
Luke Imhoff 2013-03-30 16:58:49 -05:00
parent bc4b87ebd9
commit 7ed2812ec3
3 changed files with 5 additions and 10 deletions

View File

@ -58,7 +58,8 @@ class Msf::Modules::Loader::Base
MODULE_EXTENSION = '.rb'
# String used to separate module names in a qualified module name.
MODULE_SEPARATOR = '::'
# The base namespace name under which {#namespace_module #namespace_modules} are created.
# The base namespace name under which {#create_namespace_module
# namespace modules are created}.
NAMESPACE_MODULE_NAMES = ['Msf', 'Modules']
# Regex that can distinguish regular ruby source from unit test source.
UNIT_TEST_REGEX = /rb\.(ut|ts)\.rb$/
@ -340,7 +341,7 @@ class Msf::Modules::Loader::Base
# module's classes. The wrapper module must be named so that active_support's autoloading code doesn't break when
# searching constants from inside the Metasploit(1|2|3) class.
#
# @param [String] namespace_module_names (see #{namespace_module_names})
# @param [Array<String>] {NAMESPACE_MODULE_NAMES} + <derived-constant-safe names>
# @return [Module] module that can wrap the module content from {#read_module_content} using
# module_eval_with_lexical_scope.
#
@ -375,7 +376,7 @@ class Msf::Modules::Loader::Base
namespace_module
end
# Returns the module with {#module_names} if it exists.
# Returns the module with `module_names` if it exists.
#
# @param [Array<String>] module_names a list of module names to resolve from Object downward.
# @return [Module] module that wraps the previously loaded content from {#read_module_content}.

View File

@ -100,12 +100,6 @@ class Section
def file_offset_to_rva(foffset)
return offset_to_rva(foffset - file_offset)
end
# if offset < 0 || offset < file_offset || offset >= file_offset+size
# raise BoundsError, "File offset #{offset} outside of section", caller
# end
#
# return (offset - file_offset) + base_rva
# end
def rva_to_offset(rva)
offset = rva - base_rva

View File

@ -1020,7 +1020,7 @@ module Text
rand_base(len, bad, *foo )
end
# Generate a random GUID, of the form {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}
# Generate a random GUID, of the form xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx.
def self.rand_guid
"{#{[8,4,4,4,12].map {|a| rand_text_hex(a) }.join("-")}}"
end