Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/fool_encryption.rb
Instance Method Summary collapse
Instance Method Details
#fool_encrypt ⇒ Object
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 |