match

match(addr) Instance Public methods Matches addr against this entry.

new

new(*arg) Class Public methods Description Creates a new URI::MailTo object from generic URL components with no syntax checking. This method is usually called from URI.parse, which checks the validity of each component.

at_noon

at_noon() Instance Public methods Alias for: middle_of_day

post_install

post_install(&hook) Class Public methods Adds a post-install hook that will be passed an Gem::Installer instance when Gem::Installer#install is called

chunk

chunk(*args) Instance Public methods

pre_input_hook=

Readline.pre_input_hook = proc Class Public methods Specifies a Proc object proc to call after the first prompt has been printed and just before readline starts reading input characters. See GNU Readline's rl_pre_input_hook variable. Raises ArgumentError if proc does not respond to the call method. Raises SecurityError if $SAFE is 4.

tabbind

tabbind(tag, context, *args) Instance Public methods def tabbind(tag, context, cmd=Proc.new, *args) _bind([path, "bind", tagid(tag)], context, cmd, *args) self end

pre_install_checks

pre_install_checks() Instance Public methods Performs various checks before installing the gem such as the install repository is writable and its directories exist, required ruby and rubygems versions are met and that dependencies are installed. Version and dependency checks are skipped if this install is forced. The dependent check will be skipped this install is ignoring dependencies.

local

local(*args) Instance Public methods Method for creating new ActiveSupport::TimeWithZone instance in time zone of self from given values. Time.zone = 'Hawaii' # => "Hawaii" Time.zone.local(2007, 2, 1, 15, 30, 45) # => Thu, 01 Feb 2007 15:30:45 HST -10:00

available_action?

available_action?(action_name) Instance Public methods Returns true if a method for the action is available and can be dispatched, false otherwise. Notice that action_methods.include?("foo") may return false and available_action?("foo") returns true because this method considers actions that are also available through other means, for example, implicit render ones. Parameters action_name - The name of an action to be tested Returns TrueClass, FalseClass