add_module

add_module(mod) Instance Public methods Records the parsing of a module mod

get_cells

get_cells(first, last=nil) Instance Public methods Also aliased as: getcells

values_at

values_at(*indices) Instance Public methods Returns an array of the values at the specified indices: hash = ActiveSupport::HashWithIndifferentAccess.new hash[:a] = 'x' hash[:b] = 'y' hash.values_at('a', 'b') # => ["x", "y"]

setColor_helper

setColor_helper(w, options, color) Instance Public methods

menu

menu() Instance Public methods

install_cmd 2

install_cmd(cmd) Instance Public methods private :install_cmd, :uninstall_cmd module_function :install_cmd, :uninstall_cmd

zone_offset

zone_offset(zone, year=self.now.year) Class Public methods Return the number of seconds the specified time zone differs from UTC. Numeric time zones that include minutes, such as -10:00 or +1330 will work, as will simpler hour-only time zones like -10 or +13. Textual time zones listed in ZoneOffset are also supported. If the time zone does not match any of the above, zone_offset will check if the local time zone (both with and without potential Daylight Saving Time changes being in

destroy

destroy() Class Public methods

each

each(system = true, site = true, home = true, gems = :latest, *extra_dirs) Class Public methods Iterates over each selected path yielding the directory and type. Yielded types: :system Where Ruby's ri data is stored. Yielded when system is true :site Where ri for installed libraries are stored. Yielded when site is true. Normally no ri data is stored here. :home ~/.rdoc. Yielded when home is true. :gem ri data for an installed gem. Yielded when gems is true. :extra

all_waits

all_waits(*threads) Class Public methods Waits until all specified threads have terminated. If a block is provided, it is executed for each thread as they terminate.