Skip to content

Instantly share code, notes, and snippets.

/ruby.rb Secret

Created June 2, 2015 13:35
Show Gist options
  • Save anonymous/cd3975d29c494c4f2e42 to your computer and use it in GitHub Desktop.
Save anonymous/cd3975d29c494c4f2e42 to your computer and use it in GitHub Desktop.
class Array
def initialize(arg)
if arg.is_a? String
super(arg.split(''))
else
super
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment