ipv4_mapped?

ipv4_mapped?() Instance Public methods Returns true if the ipaddr is an IPv4-mapped IPv6 address.

list

list() Instance Public methods Also aliased as: to_a, to_ary

conditional_hello_with_expires_in_with_public_with_more_keys

conditional_hello_with_expires_in_with_public_with_more_keys() Instance Public methods

have_framework

have_framework(fw, &b) Instance Public methods Returns whether or not the given framework can be found on your system. If found, a macro is passed as a preprocessor constant to the compiler using the framework name, in uppercase, prepended with HAVE_FRAMEWORK_. For example, if have_framework('Ruby') returned true, then the HAVE_FRAMEWORK_RUBY preprocessor macro would be passed to the compiler. If fw is a pair of the framework name and its header file name that header file is ch

shellsplit

shellsplit(line) Class Public methods Splits a string into an array of tokens in the same way the UNIX Bourne shell does. argv = Shellwords.split('here are "two words"') argv #=> ["here", "are", "two words"] String#shellsplit is a shortcut for this function. argv = 'here are "two words"'.shellsplit argv #=> ["here", "are", "two words"] shellwords split

add_constant

add_constant(constant) Instance Public methods Adds constant if not already there. If it is, updates the comment, value and/or is_alias_for of the known constant if they were empty/nil.

new

new(connection, logger, connection_options, config) Class Public methods

new

new() Class Public methods

sql

sql(event) Instance Public methods

to_s

obj.to_s â string Instance Public methods Returns a string representing obj. The default to_s prints the object's class and an encoding of the object id. As a special case, the top-level object that is the initial execution context of Ruby programs returns âmain.''