class Rot13::Cli

Public Instance Methods

decode(str) click to toggle source
# File lib/rot13.rb, line 14
def decode(str)
  say Cipher.rot13 str
end
encode(str) click to toggle source
# File lib/rot13.rb, line 9
def encode(str)
  say Cipher.rot13 str
end