class String

Public Instance Methods

rot13() click to toggle source

Apply the ROT13 cipher to this string.

# File lib/rot13/extensions.rb, line 5
def rot13
  Rot13::Cipher.rot13(self)
end