generate_propget_methods

generate_propget_methods(klass, io = STDOUT) Instance Public methods

ownerDocument

ownerDocument() Instance Public methods IXMLDOMDocument ownerDocument document that contains the node

ole_typelib

WIN32OLE#ole_typelib â The WIN32OLE_TYPELIB object Instance Public methods Returns the WIN32OLE_TYPELIB object. The object represents the type library which contains the WIN32OLE object. excel = WIN32OLE.new('Excel.Application') tlib = excel.ole_typelib puts tlib.name # -> 'Microsoft Excel 9.0 Object Library'

push_workspace

push_workspace(*_main) Instance Public methods Creates a new workspace with the given object or binding, and appends it onto the current workspaces stack. See #change_workspace and IRB::WorkSpace.new for more information.

need_parent?

need_parent?() Class Public methods

reflections

reflections() Instance Public methods Returns a Hash of name of the reflection as the key and a AssociationReflection as the value. Account.reflections # => {balance: AggregateReflection} @api public

succ

succ() Instance Public methods Returns the successor to the ipaddr.

numeric_type=

numeric_type=(val) Instance Public methods Alias for: set_numeric_type

supports_migrations?

supports_migrations?() Instance Public methods Returns true, since this connection adapter supports migrations.

column_vector

column_vector(column) Class Public methods Creates a single-column matrix where the values of that column are as given in column. Matrix.column_vector([4,5,6]) => 4 5 6