module AsciiIt

Constants

VERSION

Public Instance Methods

ascii_it() click to toggle source
# File lib/ascii_it.rb, line 4
def ascii_it
  self.encode('ASCII', invalid: :replace, undef: :replace, replace: ' ')
end
to_ascii() click to toggle source
# File lib/ascii_it.rb, line 8
def to_ascii
  ascii_it
end