new

new(file) Class Public methods

content_type=

content_type=(type) Instance Public methods Basic implementations for #content_type=, location=, and headers are provided to reduce the dependency on the RackDelegation module in Renderer and Redirector.

xml

xml() Instance Public methods BSTR xml return the XML source for the node and each of its descendants

check_key

check_key(signer, key) Instance Public methods Ensures the public key of key matches the public key in signer

proxy_class?

proxy_class?() Class Public methods returns true if self is a class which was created by HTTP::Proxy.

includes

includes(*args) Instance Public methods Specify relationships to be included in the result set. For example: users = User.includes(:address) users.each do |user| user.address.city end allows you to access the address attribute of the User model without firing an additional query. This will often result in a performance improvement over a simple join. You can also specify multiple relationships, like this: users = User.includes(:address, :friends) Loading nested relationships is

new

OpenSSL::PKey::EC::Group.new("secp112r1")OpenSSL::PKey::EC::Group.new(ec_group)OpenSSL::PKey::EC::Group.new(pem_string)OpenSSL::PKey::EC::Group.new(der_string)OpenSSL::PKey::EC::Group.new(pem_file)OpenSSL::PKey::EC::Group.new(der_file)OpenSSL::PKey::EC::Group.new(:GFp_simple)OpenSSL::PKey::EC::Group.new(:GFp_mult)OpenSSL::PKey::EC::Group.new(:GFp_nist)OpenSSL::PKey::EC::Group.new(:GF2m_simple)OpenSSL::PKey::EC::Group.new(:GFp, bignum_p, bignum_a, bignum_b)OpenSSL::PKey::EC::Group.new(:GF2m,

selectSingleNode

selectSingleNode(arg0) Instance Public methods IXMLDOMNode selectSingleNode execute query on the subtree BSTR arg0 --- queryString [IN]

truncate

truncate(string, width) Instance Public methods

glob

Dir.glob( pattern, [flags] ) â arrayDir.glob( pattern, [flags] ) {| filename | block } â nil Class Public methods Returns the filenames found by expanding pattern which is an Array of the patterns or the pattern String, either as an array or as parameters to the block. Note that this pattern is not a regexp (it's closer to a shell glob). See File::fnmatch for the meaning of the flags parameter. Note that case sensitivity depends on your system (so File::FNM_CASEFOLD is ignored),