Skip to content

Instantly share code, notes, and snippets.

@alebaffa
Created March 10, 2014 12:31
Show Gist options
  • Save alebaffa/9464201 to your computer and use it in GitHub Desktop.
Save alebaffa/9464201 to your computer and use it in GitHub Desktop.
module UnpredictableString
def scramble
self.split(//).shuffle.join
end
end
class String
include UnpredictableString
end
u = 'this is a test'
puts u.scramble
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment