_config_keys

_config_keys() Class Public methods

package_name

package_name() Class Public methods

xml=

xml=(content) Instance Public methods Alias for: xml_content=

handle_special_CROSSREF

handle_special_CROSSREF(special) Instance Public methods We're invoked when any text matches the CROSSREF pattern. If we find the corresponding reference, generate a link. If the name we're looking for contains no punctuation, we look for it up the module/class chain. For example, ToHtml is found, even without the RDoc::Markup:: prefix, because we look for it in module Markup first.

shebang

shebang(bin_file_name) Instance Public methods Generates a #! line for bin_file_name's wrapper copying arguments if necessary. If the :custom_shebang config is set, then it is used as a template for how to create the shebang used for to run a gem's executables. The template supports 4 expansions: $env the path to the unix env utility $ruby the path to the currently running ruby interpreter $exec the path to the gem's executable $name the name of the gem the executable is f

create

create(slice, *args) Instance Public methods Alias for: set

changed_attribute_by_name

changed_attribute_by_name(current_set, new_set) Instance Public methods Used by the tests to change attributes by name from current_set to new_set

eql?

rxp.eql?(other_rxp) â true or false Instance Public methods EqualityâTwo regexps are equal if their patterns are identical, they have the same character set code, and their casefold? values are the same. /abc/ == /abc/x #=> false /abc/ == /abc/i #=> false /abc/ == /abc/u #=> false /abc/u == /abc/n #=> false

each

dir.each { |filename| block } â dirdir.each â an_enumerator Instance Public methods Calls the block once for each entry in this directory, passing the filename of each entry as a parameter to the block. If no block is given, an enumerator is returned instead. d = Dir.new("testdir") d.each {|x| puts "Got #{x}" } produces: Got . Got .. Got config.h Got main.rb

succ

d.next â date Instance Public methods Returns a date object denoting the following day.