inspect

WIN32OLE_TYPE#inspect â String Instance Public methods Returns the type name with class name. ie = WIN32OLE.new('InternetExplorer.Application') ie.ole_type.inspect => #<WIN32OLE_TYPE:IWebBrowser2>

store=

store=(store) Instance Public methods Sets the store for this class or module and its contained code objects.

to_datetime

t.to_datetime â datetime Instance Public methods Returns a DateTime object which denotes self.

toggle_recurse

toggle_recurse() Instance Public methods

rotate

ary.rotate(count=1) â new_ary Instance Public methods Returns a new array by rotating self so that the element at count is the first element of the new array. If count is negative then it rotates in the opposite direction, starting from the end of self where -1 is the last element. a = [ "a", "b", "c", "d" ] a.rotate #=> ["b", "c", "d", "a"] a #=> ["a", "b", "c", "d"] a.rotate(2) #=> ["c", "d", "a", "b"] a.rotate(-3) #=> ["b", "c", "d

first

rng.first â objrng.first(n) â an_array Instance Public methods Returns the first object in the range, or an array of the first n elements. (10..20).first #=> 10 (10..20).first(3) #=> [10, 11, 12]

use_registry

use_registry() Class Public methods Returns whether a registry of naming authorities are being used.

imconfiginfo

imconfiginfo(slot=nil) Instance Public methods

rfc2822 2

rfc2822() Instance Public methods Returns a string which represents the time as date-time defined by RFC 2822: day-of-week, DD month-name CCYY hh:mm:ss zone where zone is [+-]hhmm. If self is a UTC time, -0000 is used as zone. You must require 'time' to use this method. rfc822

unscope

unscope(*args) Instance Public methods Removes an unwanted relation that is already defined on a chain of relations. This is useful when passing around chains of relations and would like to modify the relations without reconstructing the entire chain. User.order('email DESC').unscope(:order) == User.all The method arguments are symbols which correspond to the names of the methods which should be unscoped. The valid arguments are given in VALID_UNSCOPING_VALUES. The method can also