class Findr::Encoder

Wrapper class for String#encode (Ruby >=1.9) and Iconv#iconv (Ruby 1.8).

Public Class Methods

new( other_codings ) click to toggle source
# File lib/findr/encoder.rb, line 15
def initialize( other_codings )
  @strategy = @@strategy.new(other_codings)
end