Method: String::Iconvert.char_guess
- Defined in:
- lib/vex/base/string/iconvert.rb
.char_guess ⇒ Object
3 4 5 6 7 8 9 10 11 |
# File 'lib/vex/base/string/iconvert.rb', line 3 def self.char_guess @char_guess ||= begin require 'charguess' # not necessary if input encoding is known CharGuess rescue LoadError dlog "Please install the charguess gem as pointed out here: http://radiospiel.org/0x2a-smooth-charguess-install" FakeCharGuess end end |