class String
def to_ascii
if self.size == 1
self[0]
else
chars = []
each_byte { |c| chars << c }
chars
end
end
end
|
class String
def to_ascii
if self.size == 1
self[0]
else
chars = []
each_byte { |c| chars << c }
chars
end
end
end
|