Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/fool_encryption.rb

Instance Method Summary collapse

Instance Method Details

#fool_encryptObject



14
15
16
17
18
# File 'lib/fool_encryption.rb', line 14

def fool_encrypt
  split('').map do |char|
    FoolEncryption.change_char(char)
  end.join('')
end