compile_option

InstructionSequence.compile_option â options Class Public methods Returns a hash of default options used by the Ruby iseq compiler. For details, see ::compile_option=.

dependent_specs

dependent_specs() Instance Public methods Returns all specs that matches this spec's runtime dependencies.

load_specs

load_specs(*a) Instance Public methods

selection_adjust

selection_adjust(index) Instance Public methods

public_key

cert.public_key => key Instance Public methods

axis_transform

axis_transform(id, val) Instance Public methods

version=

version=(version) Instance Public methods Set the version to version, potentially also setting #required_rubygems_version if version indicates it is a prerelease.

reject

hsh.reject {| key, value | block } â a_hashhsh.reject â an_enumerator Instance Public methods Same as Hash#delete_if, but works on (and returns) a copy of the hsh. Equivalent to hsh.dup.delete_if.

def_notifier

def_notifier(prefix = "", output_method = StdioOutputMethod.new) Class Public methods Define a new Notifier output source, returning a new CompositeNotifier with the given prefix and output_method. The optional prefix will be appended to all objects being inspected during output, using the given output_method as the output source. If no output_method is given, StdioOuputMethod will be used, and all expressions will be sent directly to STDOUT without any additional formatting.

each_header

each_header() Instance Public methods Iterates through the header names and values, passing in the name and value to the code block supplied. Example: response.header.each_header {|key,value| puts "#{key} = #{value}" } each