auth_tag

cipher.auth_tag([ tag_len ] â string Instance Public methods Gets the authentication tag generated by Authenticated Encryption Cipher modes (GCM for example). This tag may be stored along with the ciphertext, then set on the decryption cipher to authenticate the contents of the ciphertext against changes. If the optional integer parameter tag_len is given, the returned tag will be tag_len bytes long. If the parameter is omitted, the maximum length of 16 bytes will be returned. For

search_field

search_field(object_name, method, options = {}) Instance Public methods Returns an input of type âsearchâ for accessing a specified attribute (identified by method) on an object assigned to the template (identified by object_name). Inputs of type âsearchâ may be styled differently by some browsers. search_field(:user, :name) # => <input id="user_name" name="user[name]" type="search" /> search_field(:user, :name, autosave: false) # => <input autosave="false" id="user_

inspect

inspect() Class Public methods /

as_json

as_json(*) Instance Public methods Returns a hash, that will be turned into a JSON object and represent this object.

test_should_store_demodulized_class_name_with_store_full_sti_class_option_disabled

test_should_store_demodulized_class_name_with_store_full_sti_class_option_disabled() Instance Public methods

test_different_namespace_subclass_should_load_correctly_with_store_full_sti_class_option

test_different_namespace_subclass_should_load_correctly_with_store_full_sti_class_option() Instance Public methods

compose

compose(text, keys={}) Class Public methods

_invoke_without_enc 2

_invoke_without_enc(*args) Instance Public methods

kanji_metrics

kanji_metrics(option=nil) Instance Public methods

dump

Psych.dump(o) â string of yamlPsych.dump(o, options) â string of yamlPsych.dump(o, io) â io object passed inPsych.dump(o, io, options) â io object passed in Class Public methods Dump Ruby object o to a YAML string. Optional options may be passed in to control the output format. If an IO object is passed in, the YAML will be dumped to that IO object. Example: # Dump an array, get back a YAML string Psych.dump(['a', 'b']) # => "---\n- a\n- b\n" #