remove_destroy

remove_destroy(*wins) Instance Public methods

distance_of_time_in_words_to_now

distance_of_time_in_words_to_now(from_time, include_seconds_or_options = {}) Instance Public methods Alias for: time_ago_in_words

get

get() Instance Public methods

new

new(config) Class Public methods Create a new DRb::DRbSSLSocket::SSLConfig instance The DRb::DRbSSLSocket will take either a config Hash or an instance of SSLConfg, and will setup the certificate for its session for the configuration. If want it to generate a generic certificate, the bare minimum is to provide the :SSLCertName Config options From config Hash: :SSLCertificate An instance of OpenSSL::X509::Certificate. If this is not provided, then a generic X509 is generated, wi

default_i18n_subject

default_i18n_subject(interpolations = {}) Instance Protected methods Translates the subject using Rails I18n class under [mailer_scope, action_name] scope. If it does not find a translation for the subject under the specified scope it will default to a humanized version of the action_name. If the subject has interpolations, you can pass them through the interpolations parameter.

cram_md5_challenge

cram_md5_challenge() Instance Public methods Creates a CRAM-MD5 challenge. You can view more information on CRAM-MD5 on Wikipedia: en.wikipedia.org/wiki/CRAM-MD5

trace_vdelete

trace_vdelete(opts,cmd) Instance Public methods Alias for: trace_remove

number_to_phone

number_to_phone(number, options = {}) Instance Public methods Formats a number into a US phone number (e.g., (555) 123-9876). You can customize the format in the options hash. Options :area_code - Adds parentheses around the area code. :delimiter - Specifies the delimiter to use (defaults to â-â). :extension - Specifies an extension to add to the end of the generated number. :country_code - Sets the country code for the phone number. Examples number_to_phone(5551234)

sources

sources() Class Public methods Returns an Array of sources to fetch remote gems from. Uses ::default_sources if the sources list is empty.

pipe

IO.pipe â [read_io, write_io]IO.pipe(ext_enc) â [read_io, write_io]IO.pipe("ext_enc:int_enc" [, opt]) â [read_io, write_io]IO.pipe(ext_enc, int_enc [, opt]) â [read_io, write_io]IO.pipe(...) {|read_io, write_io| ... } Class Public methods Creates a pair of pipe endpoints (connected to each other) and returns them as a two-element array of IO objects: [ read_io, write_io ]. If a block is given, the block is called and returns th