Checks if there are duplicate links with the same type and hreflang attributes that have an alternate (or empty) rel attribute
Raises a TooMuchTagError
if there are duplicates found
Returns true
if the named public method is defined by mod. If inherit is set, the lookup will also search mod’s ancestors. String
arguments are converted to symbols.
module A def method1() end end class B protected def method2() end end class C < B include A def method3() end end A.method_defined? :method1 #=> true C.public_method_defined? "method1" #=> true C.public_method_defined? "method1", true #=> true C.public_method_defined? "method1", false #=> true C.public_method_defined? "method2" #=> false C.method_defined? "method2" #=> true
Makes a list of existing class methods public.
String
arguments are converted to symbols.
Return true if there are possible conflicts against the currently loaded specs.
Stop this server.
Creates threads that pick up UDP packets and passes them to do_write
for decoding.
Creates a thread that notifies waiting clients from the TupleSpace
.
Build various indices
Compresses indices on disk
Install generated indices into the destination directory.
UNTESTED
Enumerates the trusted certificates via Gem::Security::TrustDir
.
Indicates whether this DH
instance has a public key associated with it or not. The public key may be retrieved with DH#pub_key.
Indicates whether this DSA
instance has a public key associated with it or not. The public key may be retrieved with DSA#public_key
.
Returns whether this EC
instance has a public key. The public key (EC::Point
) can be retrieved with EC#public_key
.
The return value is always true
since every private key is also a public key.
| MultiplicativeExpr
(‘*’ | S (‘div’ | ‘mod’) S) UnaryExpr
| UnaryExpr