module PG
def self::connect( *args )
def self::connect( *args ) return PG::Connection.new( *args ) end
def self::version_string( include_buildnum=false )
def self::version_string( include_buildnum=false ) vstring = "%s %s" % [ self.name, VERSION ] vstring << " (build %s)" % [ REVISION[/: ([[:xdigit:]]+)/, 1] || '0' ] if include_buildnum return vstring end