read_multi

read_multi(*names) Instance Public methods Read multiple values at once from the cache. Options can be passed in the last argument. Some cache implementation may optimize this method. Returns a hash mapping the names provided to the values found.

edit

edit() Instance Public methods

inspect

obj.inspect â string Instance Public methods Returns a string containing a human-readable representation of obj. By default, show the class name and the list of the instance variables and their values (by calling inspect on each of them). User defined classes should override this method to make better representation of obj. When overriding this method, it should return a string whose encoding is compatible with the default external encoding. [ 1, 2, 3..4, 'five' ].inspect #=&

[]

[](*types) Class Public methods

find_above

find_above(target) Instance Public methods

get_shlib_path_head

get_shlib_path_head() Instance Public methods

auth_tag=

cipher.auth_tag = string â string Instance Public methods Sets the authentication tag to verify the contents of the ciphertext. The tag must be set after calling #decrypt, #key= and #iv=, but before assigning the associated authenticated data using #auth_data= and of course, before decrypting any of the ciphertext. After all decryption is performed, the tag is verified automatically in the call to #final.

has_name?

has_name?( name, namespace = '' ) Instance Public methods

next

next(index = nil) Instance Public methods

set_dictionary

set_dictionary(string) Instance Public methods Sets the preset dictionary and returns string. This method is available just only after ::new or Zlib::ZStream#reset method was called. See zlib.h for details. Can raise errors of Z_STREAM_ERROR if a parameter is invalid (such as NULL dictionary) or the stream state is inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the expected one (incorrect adler32 value)