aref_prefix

aref_prefix() Instance Public methods Prefix for aref, defined by subclasses.

allowed_index_name_length

allowed_index_name_length() Instance Public methods Returns 62. SQLite supports index names up to 64 characters. The rest is used by rails internally to perform temporary rename operations

old_enc=

old_enc=( enc ) Instance Public methods Alias for: encoding=

ip_address

addrinfo.ip_address => string Instance Public methods Returns the IP address as a string. Addrinfo.tcp("127.0.0.1", 80).ip_address #=> "127.0.0.1" Addrinfo.tcp("::1", 80).ip_address #=> "::1"

spec

spec() Instance Public methods The specification for this gem

lineno=

lineno=(num) Instance Public methods

tag_cget_strict

tag_cget_strict(tagOrId, option) Instance Public methods Alias for: tagcget_strict

_unset_variable2 2

_unset_variable2(var, idx, flag) Instance Public methods

method

obj.method(sym) â method Instance Public methods Looks up the named method as a receiver in obj, returning a Method object (or raising NameError). The Method object acts as a closure in obj's object instance, so instance variables and the value of self remain available. class Demo def initialize(n) @iv = n end def hello() "Hello, @iv = #{@iv}" end end k = Demo.new(99) m = k.method(:hello) m.call #=> "Hello, @iv = 99" l = Demo.new('Fred') m = l.method("hel

dnd_bindsource

dnd_bindsource(type, *args) Instance Public methods def #dnd_bindsource(type, cmd=Proc.new, prior=None) tk_call('dnd', 'bindsource', @path, type, cmd, prior) self end